Note
Go to the end to download the full example code.
Kelvin-Helmholtz instability in RAMSES solver#
8 import os
9
10 import matplotlib
11 import matplotlib.pyplot as plt
12 import numpy as np
13 from matplotlib import animation
14
15 import shamrock
16
17 # If we use the shamrock executable to run this script instead of the python interpreter,
18 # we should not initialize the system as the shamrock executable needs to handle specific MPI logic
19 if not shamrock.sys.is_initialized():
20 shamrock.change_loglevel(1)
21 shamrock.sys.init("0:0")
-> modified loglevel to 0 enabled log types :
log status :
- Loglevel: 1, enabled log types :
[xxx] Info: xxx ( logger::info )
[xxx] : xxx ( logger::normal )
[xxx] Warning: xxx ( logger::warn )
[xxx] Error: xxx ( logger::err )
Use shamrock documentation style for matplotlib
26 shamrock.matplotlib.set_shamrock_mpl_style()
Setup parameters
31 # plot
32 nx, ny = 512, 512
33
34 # Physical parameters
35 vslip = 1 # slip speed between the two layers
36
37 rho_1 = 1
38 fact = 2 / 3
39 rho_2 = rho_1 / (fact**3)
40
41 y_interface = 0.5
42 xs = 1
43
44 P_1 = 3.5
45 P_2 = 3.5
46
47 gamma = 5.0 / 3.0
48
49 # resolution
50 multx = 1
51 multy = 1
52 multz = 1
53
54 sz = 1 << 1
55 base = 32
56
57 sim_folder = "_to_trash/ramses_kh/"
Deduced quantities
Mach number 1 : 0.4140393356054125
Mach number 2 : 0.760638829255665
Create the dump directory if it does not exist
74 if shamrock.sys.world_rank() == 0:
75 os.makedirs(sim_folder, exist_ok=True)
Simulation related function#
Utility for plotting, animations, and the simulation itself
84 def make_cartesian_coords(nx, ny, z_val, min_x, max_x, min_y, max_y):
85 # Create the cylindrical coordinate grid
86 x_vals = np.linspace(min_x, max_x, nx)
87 y_vals = np.linspace(min_y, max_y, ny)
88
89 # Create meshgrid
90 x_grid, y_grid = np.meshgrid(x_vals, y_vals)
91
92 # Convert to Cartesian coordinates (z = 0 for a disc in the xy-plane)
93 z_grid = z_val * np.ones_like(x_grid)
94
95 # Flatten and stack to create list of positions
96 positions = np.column_stack([x_grid.ravel(), y_grid.ravel(), z_grid.ravel()])
97
98 return [tuple(pos) for pos in positions]
99
100
101 positions = make_cartesian_coords(nx, ny, 0.5, 0, 1 - 1e-6, 0, 1 - 1e-6)
102
103
104 def plot_rho_slice_cartesian(metadata, arr_rho_pos, iplot, case_name, dpi=200):
105 ext = metadata["extent"]
106
107 my_cmap = matplotlib.colormaps["gist_heat"].copy() # copy the default cmap
108 my_cmap.set_bad(color="black")
109
110 arr_rho_pos = np.array(arr_rho_pos).reshape(nx, ny)
111
112 ampl = 1e-5
113
114 plt.figure(dpi=dpi)
115 res = plt.imshow(
116 arr_rho_pos,
117 cmap=my_cmap,
118 origin="lower",
119 extent=ext,
120 aspect="auto",
121 )
122 plt.xlabel("x")
123 plt.ylabel("y")
124 plt.title(f"t = {metadata['time']:0.3f} [seconds]")
125 cbar = plt.colorbar(res, extend="both")
126 cbar.set_label(r"$\rho$ [code unit]")
127 plt.savefig(os.path.join(sim_folder, f"rho_{case_name}_{iplot:04d}.png"))
128 plt.close()
129
130
131 from shamrock.utils.plot import show_image_sequence
132
133
134 def run_case(set_bc_func, case_name):
135 ctx = shamrock.Context()
136 ctx.pdata_layout_new()
137
138 model = shamrock.get_Model_Ramses(context=ctx, vector_type="f64_3", grid_repr="i64_3")
139
140 cfg = model.gen_default_config()
141 cfg.set_scale_factor(scale_fact)
142 set_bc_func(cfg)
143
144 # cfg.set_riemann_solver_rusanov()
145 # cfg.set_riemann_solver_hll()
146 cfg.set_riemann_solver_hllc()
147
148 # cfg.set_slope_lim_none()
149 # cfg.set_slope_lim_vanleer_f()
150 # cfg.set_slope_lim_vanleer_std()
151 # cfg.set_slope_lim_vanleer_sym()
152
153 # mass_crit = 0.00010299682617187501 / 2
154 # cfg.set_amr_mode_density_based(crit_mass=mass_crit)
155 cfg.set_slope_lim_minmod()
156 cfg.set_face_time_interpolation(True)
157 cfg.set_eos_gamma(gamma)
158 model.set_solver_config(cfg)
159
160 name = f"test_{case_name}"
161
162 model.init_scheduler(int(1e7), 1)
163 model.make_base_grid((0, 0, 0), (sz, sz, sz), (base * multx, base * multy, base * multz))
164
165 u_cs1 = rho_1 / (gamma * (gamma - 1))
166 u_cs2 = rho_2 / (gamma * (gamma - 1))
167
168 def rho_map(rmin, rmax):
169 x, y, z = rmin
170
171 if y > y_interface:
172 return rho_2
173 else:
174 return rho_1
175
176 def rhovel_map(rmin, rmax):
177 rho = rho_map(rmin, rmax)
178
179 x, y, z = rmin
180
181 ampl = 0.01
182 n = 2
183 pert = np.sin(2 * np.pi * n * x / (xs))
184
185 sigma = 0.05 / (2**0.5)
186 gauss1 = np.exp(-((y - y_interface) ** 2) / (2 * sigma * sigma))
187 gauss2 = np.exp(-((y + y_interface) ** 2) / (2 * sigma * sigma))
188 pert *= gauss1 + gauss2
189
190 # Alternative formula (See T. Tricco paper)
191 # interf_sz = ys/32
192 # vx = np.arctan(y/interf_sz)/np.pi
193
194 vx = 0
195 if np.abs(y) > y_interface:
196 vx = vslip / 2
197 else:
198 vx = -vslip / 2
199
200 return (vx * rho, ampl * pert * rho, 0)
201
202 def rhoetot_map(rmin, rmax):
203 rho = rho_map(rmin, rmax)
204 rhovel = rhovel_map(rmin, rmax)
205
206 rhovel2 = rhovel[0] * rhovel[0] + rhovel[1] * rhovel[1] + rhovel[2] * rhovel[2]
207 rhoekin = 0.5 * rhovel2 / rho
208
209 x, y, z = rmin
210
211 if y > y_interface:
212 P = P_2
213 else:
214 P = P_1
215
216 return rhoekin + P / (gamma - 1)
217
218 model.set_field_value_lambda_f64("rho", rho_map)
219 model.set_field_value_lambda_f64("rhoetot", rhoetot_map)
220 model.set_field_value_lambda_f64_3("rhovel", rhovel_map)
221
222 # model.evolve_once(0,0.1)
223 fact = 25
224 tmax = 0.127 * fact
225 all_t = np.linspace(0, tmax, fact)
226
227 def plot(t, iplot):
228 metadata = {"extent": [0, 1, 0, 1], "time": t}
229 arr_rho_pos = model.render_slice("rho", "f64", positions)
230 plot_rho_slice_cartesian(metadata, arr_rho_pos, iplot, case_name)
231
232 current_time = 0.0
233 for i, t in enumerate(all_t):
234 model.dump_vtk(os.path.join(sim_folder, f"{case_name}_{i:04d}.vtk"))
235 model.evolve_until(t)
236 current_time = t
237 plot(current_time, i)
238
239 plot(current_time, len(all_t))
240
241 # If the animation is not returned only a static image will be shown in the doc
242 ani = show_image_sequence(os.path.join(sim_folder, f"rho_{case_name}_*.png"), render_gif=True)
243
244 if shamrock.sys.world_rank() == 0:
245 # To save the animation using Pillow as a gif
246 writer = animation.PillowWriter(fps=15, metadata=dict(artist="Me"), bitrate=1800)
247 ani.save(os.path.join(sim_folder, f"rho_{case_name}.gif"), writer=writer)
248
249 return ani
250 else:
251 return None
Run the actual simulation with periodic boundary conditions
258 def run_case_periodic():
259 def set_bc_func(cfg):
260 cfg.set_boundary_condition("x", "periodic")
261 cfg.set_boundary_condition("y", "periodic")
262 cfg.set_boundary_condition("z", "periodic")
263
264 return run_case(set_bc_func, "periodic")
265
266
267 ani_periodic = run_case_periodic()
268 plt.show()
Info: pushing data in scheduler, N = 32768 [DataInserterUtility][rank=0]
Info: reattributing data ... [DataInserterUtility][rank=0]
Info: reattributing data done in 7.42 ms [DataInserterUtility][rank=0]
Info: --------------------------------------------- [DataInserterUtility][rank=0]
Info: Compute load ... [DataInserterUtility][rank=0]
Info: run scheduler step ... [DataInserterUtility][rank=0]
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.01 us (57.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 : 1.55 us (0.2%)
patch tree reduce : 1.36 us (0.2%)
gen split merge : 898.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 1.07 us (0.1%)
LB compute : 718.07 us (97.3%)
LB move op cnt : 0
LB apply : 10.46 us (1.4%)
Info: patch count stable after 1 runs npatch = 1 [DataInserterUtility][rank=0]
Info: --------------------------------------------- [DataInserterUtility][rank=0]
Info: dump to _to_trash/ramses_kh/periodic_0000.vtk [VTK Dump][rank=0]
- took 44.14 ms, bandwidth = 926.39 MB/s
Info: time since start : 11.579233281 (s) [Godunov][rank=0]
Info: dump to _to_trash/ramses_kh/periodic_0001.vtk [VTK Dump][rank=0]
- took 39.47 ms, bandwidth = 1.04 GB/s
amr::Godunov: t = 0, dt = 0
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.52 us (2.0%)
patch tree reduce : 2.00 us (0.5%)
gen split merge : 654.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.22 us (0.3%)
LB compute : 348.49 us (93.9%)
LB move op cnt : 0
LB apply : 4.55 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.88 us (71.2%)
Info: cfl dt = 0.001607880030058949 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.8414e+05 | 262144 | 1 | 3.343e-01 | 0.0% | 0.4% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0, dt = 0.001607880030058949
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.44 us (2.1%)
patch tree reduce : 1.83 us (0.6%)
gen split merge : 880.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.51 us (0.5%)
LB compute : 280.77 us (92.8%)
LB move op cnt : 0
LB apply : 4.11 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.62 us (68.2%)
Info: cfl dt = 0.0016077839676889658 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3179e+05 | 262144 | 1 | 3.582e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.158571307029145 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.001607880030058949, dt = 0.0016077839676889658
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.62 us (2.8%)
patch tree reduce : 1.84 us (0.7%)
gen split merge : 961.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.51 us (0.6%)
LB compute : 246.03 us (91.5%)
LB move op cnt : 0
LB apply : 4.26 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.41 us (66.8%)
Info: cfl dt = 0.001607668096192173 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.4356e+05 | 262144 | 1 | 3.108e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.625392992284898 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.003215663997747915, dt = 0.001607668096192173
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.30 us (2.4%)
patch tree reduce : 1.89 us (0.6%)
gen split merge : 875.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.37 us (0.5%)
LB compute : 275.72 us (92.4%)
LB move op cnt : 0
LB apply : 4.29 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.01 us (64.6%)
Info: cfl dt = 0.001607558666139011 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2326e+05 | 262144 | 1 | 3.184e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.1758895760726 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.004823332093940088, dt = 0.001607558666139011
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.64 us (2.0%)
patch tree reduce : 1.90 us (0.6%)
gen split merge : 1.13 us (0.3%)
split / merge op : 0/0
apply split merge : 1.59 us (0.5%)
LB compute : 317.64 us (93.6%)
LB move op cnt : 0
LB apply : 4.03 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.65 us (66.8%)
Info: cfl dt = 0.0016074532609576142 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2133e+05 | 262144 | 1 | 3.192e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.13195340668608 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0064308907600790985, dt = 0.0016074532609576142
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 8.01 us (3.1%)
patch tree reduce : 1.84 us (0.7%)
gen split merge : 905.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.49 us (0.6%)
LB compute : 237.91 us (91.0%)
LB move op cnt : 0
LB apply : 4.37 us (1.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.50 us (66.7%)
Info: cfl dt = 0.0016073499018780452 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.3244e+05 | 262144 | 1 | 3.149e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.376180275447584 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.008038344021036713, dt = 0.0016073499018780452
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.24 us (2.3%)
patch tree reduce : 2.06 us (0.6%)
gen split merge : 965.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.60 us (0.5%)
LB compute : 298.30 us (92.9%)
LB move op cnt : 0
LB apply : 4.02 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.57 us (67.8%)
Info: cfl dt = 0.0016072545799563419 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.9163e+05 | 262144 | 1 | 3.311e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.47421416360499 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.009645693922914759, dt = 0.0016072545799563419
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.21 us (2.3%)
patch tree reduce : 1.74 us (0.6%)
gen split merge : 1.13 us (0.4%)
split / merge op : 0/0
apply split merge : 1.41 us (0.5%)
LB compute : 285.48 us (92.7%)
LB move op cnt : 0
LB apply : 4.15 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.60 us (66.5%)
Info: cfl dt = 0.0016071590789263407 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.3059e+05 | 262144 | 1 | 3.156e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.332914222210864 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.011252948502871101, dt = 0.0016071590789263407
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 8.04 us (2.7%)
patch tree reduce : 1.88 us (0.6%)
gen split merge : 968.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.42 us (0.5%)
LB compute : 271.31 us (92.2%)
LB move op cnt : 0
LB apply : 4.27 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.78 us (64.6%)
Info: cfl dt = 0.0016070720238733167 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.3138e+05 | 262144 | 1 | 3.153e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.349297555948247 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.012860107581797443, dt = 0.0016070720238733167
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.40 us (2.4%)
patch tree reduce : 1.90 us (0.6%)
gen split merge : 881.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.60 us (0.5%)
LB compute : 286.28 us (92.7%)
LB move op cnt : 0
LB apply : 4.19 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.59 us (65.7%)
Info: cfl dt = 0.0016069786216085856 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.3311e+05 | 262144 | 1 | 3.147e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.38656207452532 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.01446717960567076, dt = 0.0016069786216085856
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 8.01 us (2.7%)
patch tree reduce : 1.77 us (0.6%)
gen split merge : 1.04 us (0.4%)
split / merge op : 0/0
apply split merge : 1.45 us (0.5%)
LB compute : 274.56 us (92.4%)
LB move op cnt : 0
LB apply : 4.08 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.45 us (64.6%)
Info: cfl dt = 0.00160688048413795 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2795e+05 | 262144 | 1 | 3.166e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.271585046792527 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.016074158227279346, dt = 0.00160688048413795
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.18 us (2.3%)
patch tree reduce : 1.85 us (0.6%)
gen split merge : 927.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.55 us (0.5%)
LB compute : 286.25 us (92.7%)
LB move op cnt : 0
LB apply : 4.47 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.46 us (66.0%)
Info: cfl dt = 0.0016067926349468886 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.1922e+05 | 262144 | 1 | 3.200e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.077882194201425 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.017681038711417296, dt = 0.0016067926349468886
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.92 us (2.2%)
patch tree reduce : 1.93 us (0.6%)
gen split merge : 871.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.35 us (0.4%)
LB compute : 285.59 us (92.8%)
LB move op cnt : 0
LB apply : 4.33 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.53 us (65.3%)
Info: cfl dt = 0.0016067071094612423 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.1510e+05 | 262144 | 1 | 3.216e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.985996032883904 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.019287831346364186, dt = 0.0016067071094612423
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.36 us (2.8%)
patch tree reduce : 1.71 us (0.7%)
gen split merge : 984.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.49 us (0.6%)
LB compute : 237.34 us (91.4%)
LB move op cnt : 0
LB apply : 3.95 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.41 us (62.9%)
Info: cfl dt = 0.0016066216576594364 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2110e+05 | 262144 | 1 | 3.193e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.117319180418775 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.020894538455825427, dt = 0.0016066216576594364
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.60 us (2.8%)
patch tree reduce : 2.04 us (0.7%)
gen split merge : 1.04 us (0.4%)
split / merge op : 0/0
apply split merge : 1.16 us (0.4%)
LB compute : 251.46 us (91.6%)
LB move op cnt : 0
LB apply : 4.75 us (1.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.64 us (68.4%)
Info: cfl dt = 0.0016065437952155752 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2317e+05 | 262144 | 1 | 3.185e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.162050852598313 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.022501160113484863, dt = 0.0016065437952155752
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.46 us (2.8%)
patch tree reduce : 1.90 us (0.7%)
gen split merge : 1.01 us (0.4%)
split / merge op : 0/0
apply split merge : 1.46 us (0.6%)
LB compute : 240.14 us (91.3%)
LB move op cnt : 0
LB apply : 4.03 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.46 us (64.9%)
Info: cfl dt = 0.0016064727992406017 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.1939e+05 | 262144 | 1 | 3.199e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.077760553964172 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.02410770390870044, dt = 0.0016064727992406017
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.44 us (2.4%)
patch tree reduce : 2.02 us (0.7%)
gen split merge : 817.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.42 us (0.5%)
LB compute : 283.71 us (92.2%)
LB move op cnt : 0
LB apply : 4.92 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.92 us (71.5%)
Info: cfl dt = 0.0016064097560978229 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2892e+05 | 262144 | 1 | 3.162e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.2872249313761 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.02571417670794104, dt = 0.0016064097560978229
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.63 us (2.9%)
patch tree reduce : 1.72 us (0.7%)
gen split merge : 1.20 us (0.5%)
split / merge op : 0/0
apply split merge : 1.51 us (0.6%)
LB compute : 237.11 us (91.0%)
LB move op cnt : 0
LB apply : 4.51 us (1.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.40 us (64.5%)
Info: cfl dt = 0.001606353350469151 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.0148e+05 | 262144 | 1 | 3.271e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.68118602654288 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.027320586464038864, dt = 0.001606353350469151
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.72 us (3.0%)
patch tree reduce : 2.09 us (0.8%)
gen split merge : 1.27 us (0.5%)
split / merge op : 0/0
apply split merge : 1.51 us (0.6%)
LB compute : 236.82 us (91.1%)
LB move op cnt : 0
LB apply : 4.06 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.21 us (68.6%)
Info: cfl dt = 0.0016063054663404595 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2271e+05 | 262144 | 1 | 3.186e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.14895728838845 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.028926939814508015, dt = 0.0016063054663404595
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.62 us (2.5%)
patch tree reduce : 2.25 us (0.7%)
gen split merge : 1.01 us (0.3%)
split / merge op : 0/0
apply split merge : 1.31 us (0.4%)
LB compute : 281.64 us (92.5%)
LB move op cnt : 0
LB apply : 3.99 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.02 us (64.8%)
Info: cfl dt = 0.0016062623488034228 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 6.9594e+05 | 262144 | 1 | 3.767e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.351964259009115 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.030533245280848473, dt = 0.0016062623488034228
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.31 us (2.3%)
patch tree reduce : 1.88 us (0.6%)
gen split merge : 1.04 us (0.3%)
split / merge op : 0/0
apply split merge : 1.49 us (0.5%)
LB compute : 289.75 us (92.7%)
LB move op cnt : 0
LB apply : 4.46 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.58 us (64.8%)
Info: cfl dt = 0.0016062242891968924 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2216e+05 | 262144 | 1 | 3.188e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.135782178878756 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0321395076296519, dt = 0.0016062242891968924
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 8.00 us (2.5%)
patch tree reduce : 1.92 us (0.6%)
gen split merge : 863.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.40 us (0.4%)
LB compute : 300.41 us (92.9%)
LB move op cnt : 0
LB apply : 4.05 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.84 us (63.7%)
Info: cfl dt = 0.0016061899886699415 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.9297e+05 | 262144 | 1 | 3.306e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.491477229727494 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.03374573191884879, dt = 0.0016061899886699415
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.46 us (2.6%)
patch tree reduce : 1.80 us (0.6%)
gen split merge : 868.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.29 us (0.4%)
LB compute : 266.08 us (92.1%)
LB move op cnt : 0
LB apply : 4.72 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.46 us (65.8%)
Info: cfl dt = 0.0016061480777358936 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.4899e+05 | 262144 | 1 | 3.500e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.520935832687186 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.03535192190751873, dt = 0.0016061480777358936
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.18 us (2.6%)
patch tree reduce : 1.85 us (0.7%)
gen split merge : 903.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.33 us (0.5%)
LB compute : 250.73 us (91.9%)
LB move op cnt : 0
LB apply : 3.95 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.50 us (65.0%)
Info: cfl dt = 0.0016060793948625264 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.3623e+05 | 262144 | 1 | 3.135e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.444743976478957 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.036958069985254624, dt = 0.0016060793948625264
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.65 us (2.1%)
patch tree reduce : 1.69 us (0.5%)
gen split merge : 1.13 us (0.4%)
split / merge op : 0/0
apply split merge : 1.33 us (0.4%)
LB compute : 289.32 us (93.1%)
LB move op cnt : 0
LB apply : 4.04 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.42 us (66.1%)
Info: cfl dt = 0.0016060094388298245 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.9741e+05 | 262144 | 1 | 3.287e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.58779429180026 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.03856414938011715, dt = 0.0016060094388298245
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.68 us (2.4%)
patch tree reduce : 1.71 us (0.6%)
gen split merge : 1.17 us (0.4%)
split / merge op : 0/0
apply split merge : 1.43 us (0.5%)
LB compute : 258.88 us (92.1%)
LB move op cnt : 0
LB apply : 4.19 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.43 us (65.2%)
Info: cfl dt = 0.0016059388541102475 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2990e+05 | 262144 | 1 | 3.159e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.30357177302842 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.04017015881894698, dt = 0.0016059388541102475
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.15 us (2.4%)
patch tree reduce : 1.77 us (0.6%)
gen split merge : 1.03 us (0.3%)
split / merge op : 0/0
apply split merge : 1.35 us (0.5%)
LB compute : 276.61 us (92.7%)
LB move op cnt : 0
LB apply : 4.08 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.98 us (67.4%)
Info: cfl dt = 0.0016058683559207114 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2610e+05 | 262144 | 1 | 3.173e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.218967761062522 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.041776097673057226, dt = 0.0016058683559207114
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.14 us (2.4%)
patch tree reduce : 1.91 us (0.6%)
gen split merge : 976.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.51 us (0.5%)
LB compute : 277.04 us (92.5%)
LB move op cnt : 0
LB apply : 4.28 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.67 us (67.8%)
Info: cfl dt = 0.001605798334094885 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.0295e+05 | 262144 | 1 | 3.265e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.707737303842453 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.04338196602897794, dt = 0.001605798334094885
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.08 us (2.4%)
patch tree reduce : 2.01 us (0.7%)
gen split merge : 1.07 us (0.4%)
split / merge op : 0/0
apply split merge : 1.66 us (0.6%)
LB compute : 269.65 us (92.3%)
LB move op cnt : 0
LB apply : 4.05 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.45 us (65.2%)
Info: cfl dt = 0.0016057289552316094 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.1962e+05 | 262144 | 1 | 3.198e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.07441882455133 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.04498776436307282, dt = 0.0016057289552316094
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.33 us (2.7%)
patch tree reduce : 1.75 us (0.7%)
gen split merge : 1.11 us (0.4%)
split / merge op : 0/0
apply split merge : 1.30 us (0.5%)
LB compute : 244.62 us (91.5%)
LB move op cnt : 0
LB apply : 4.19 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.40 us (65.1%)
Info: cfl dt = 0.0016056607261553354 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 6.6936e+05 | 262144 | 1 | 3.916e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.760330964202291 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.04659349331830443, dt = 0.0016056607261553354
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.96 us (2.5%)
patch tree reduce : 1.81 us (0.6%)
gen split merge : 963.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.34 us (0.5%)
LB compute : 258.46 us (92.2%)
LB move op cnt : 0
LB apply : 4.25 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.46 us (63.8%)
Info: cfl dt = 0.0016055939830167726 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2231e+05 | 262144 | 1 | 3.188e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.13225755409134 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.04819915404445976, dt = 0.0016055939830167726
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.54 us (2.5%)
patch tree reduce : 1.92 us (0.6%)
gen split merge : 944.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.52 us (0.5%)
LB compute : 282.32 us (92.6%)
LB move op cnt : 0
LB apply : 3.88 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.43 us (64.8%)
Info: cfl dt = 0.0016055288446673935 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2294e+05 | 262144 | 1 | 3.185e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.14545836391881 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.04980474802747654, dt = 0.0016055288446673935
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.20 us (2.1%)
patch tree reduce : 1.93 us (0.6%)
gen split merge : 1.01 us (0.3%)
split / merge op : 0/0
apply split merge : 1.40 us (0.4%)
LB compute : 316.10 us (93.3%)
LB move op cnt : 0
LB apply : 4.33 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.61 us (68.2%)
Info: cfl dt = 0.0016054652241193222 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.1705e+05 | 262144 | 1 | 3.208e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.01469520162886 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.05141027687214393, dt = 0.0016054652241193222
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.11 us (2.2%)
patch tree reduce : 1.78 us (0.5%)
gen split merge : 969.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.54 us (0.5%)
LB compute : 302.74 us (93.1%)
LB move op cnt : 0
LB apply : 4.04 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.63 us (68.1%)
Info: cfl dt = 0.0016054032126726185 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.1925e+05 | 262144 | 1 | 3.200e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.06258434718488 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.05301574209626325, dt = 0.0016054032126726185
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.39 us (2.9%)
patch tree reduce : 1.89 us (0.7%)
gen split merge : 993.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.60 us (0.6%)
LB compute : 235.00 us (91.2%)
LB move op cnt : 0
LB apply : 4.09 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.54 us (67.2%)
Info: cfl dt = 0.0016053431436928492 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.3312e+05 | 262144 | 1 | 3.147e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.367672526349484 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.05462114530893587, dt = 0.0016053431436928492
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.16 us (2.1%)
patch tree reduce : 1.68 us (0.5%)
gen split merge : 958.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.41 us (0.4%)
LB compute : 316.49 us (93.6%)
LB move op cnt : 0
LB apply : 3.95 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.75 us (70.3%)
Info: cfl dt = 0.0016052850430259738 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.5229e+05 | 262144 | 1 | 3.076e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.789678590434757 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.056226488452628724, dt = 0.0016052850430259738
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.37 us (2.5%)
patch tree reduce : 1.81 us (0.6%)
gen split merge : 930.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.48 us (0.5%)
LB compute : 271.54 us (92.0%)
LB move op cnt : 0
LB apply : 4.75 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.90 us (72.4%)
Info: cfl dt = 0.001605229212286434 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.1822e+05 | 262144 | 1 | 3.204e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.037928522718868 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0578317734956547, dt = 0.001605229212286434
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.58 us (2.8%)
patch tree reduce : 1.71 us (0.6%)
gen split merge : 837.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.42 us (0.5%)
LB compute : 243.88 us (91.6%)
LB move op cnt : 0
LB apply : 4.33 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.59 us (66.3%)
Info: cfl dt = 0.0016051766898849194 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.3036e+05 | 262144 | 1 | 3.157e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.304743369810158 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.05943700270794113, dt = 0.0016051766898849194
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.13 us (2.3%)
patch tree reduce : 1.76 us (0.6%)
gen split merge : 1.00 us (0.3%)
split / merge op : 0/0
apply split merge : 1.64 us (0.5%)
LB compute : 284.50 us (92.7%)
LB move op cnt : 0
LB apply : 4.41 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.48 us (65.7%)
Info: cfl dt = 0.0016051276352367868 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2950e+05 | 262144 | 1 | 3.160e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.28518565723787 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.06104217939782605, dt = 0.0016051276352367868
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.87 us (2.8%)
patch tree reduce : 1.70 us (0.6%)
gen split merge : 967.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.37 us (0.5%)
LB compute : 255.41 us (91.8%)
LB move op cnt : 0
LB apply : 4.62 us (1.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.44 us (65.0%)
Info: cfl dt = 0.001605081747758837 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2676e+05 | 262144 | 1 | 3.171e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.224401640547732 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.06264730703306284, dt = 0.001605081747758837
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.32 us (2.8%)
patch tree reduce : 2.02 us (0.8%)
gen split merge : 962.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.74 us (0.7%)
LB compute : 237.63 us (91.2%)
LB move op cnt : 0
LB apply : 4.08 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 10.18 us (89.5%)
Info: cfl dt = 0.0016050390296753507 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 6.9594e+05 | 262144 | 1 | 3.767e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.340186980325035 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.06425238878082168, dt = 0.0016050390296753507
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.19 us (2.8%)
patch tree reduce : 1.92 us (0.7%)
gen split merge : 1.08 us (0.4%)
split / merge op : 0/0
apply split merge : 1.66 us (0.6%)
LB compute : 236.29 us (91.2%)
LB move op cnt : 0
LB apply : 4.53 us (1.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.45 us (63.3%)
Info: cfl dt = 0.0016049996529623194 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.1996e+05 | 262144 | 1 | 3.197e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.073396413889512 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.06585742781049703, dt = 0.0016049996529623194
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.66 us (2.2%)
patch tree reduce : 1.80 us (0.6%)
gen split merge : 867.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.37 us (0.5%)
LB compute : 275.46 us (92.7%)
LB move op cnt : 0
LB apply : 4.63 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.51 us (66.5%)
Info: cfl dt = 0.0016049639235464856 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2025e+05 | 262144 | 1 | 3.196e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.079488973854072 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.06746242746345935, dt = 0.0016049639235464856
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.47 us (2.6%)
patch tree reduce : 1.97 us (0.7%)
gen split merge : 860.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.39 us (0.5%)
LB compute : 269.61 us (92.3%)
LB move op cnt : 0
LB apply : 4.16 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.41 us (64.3%)
Info: cfl dt = 0.001604932305650867 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2335e+05 | 262144 | 1 | 3.184e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.147310953801824 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.06906739138700584, dt = 0.001604932305650867
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.91 us (3.0%)
patch tree reduce : 1.97 us (0.8%)
gen split merge : 942.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.48 us (0.6%)
LB compute : 236.92 us (91.0%)
LB move op cnt : 0
LB apply : 4.27 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.93 us (66.8%)
Info: cfl dt = 0.0016048904935863433 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.0857e+05 | 262144 | 1 | 3.242e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.82129567340134 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0706723236926567, dt = 0.0016048904935863433
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.65 us (2.7%)
patch tree reduce : 1.76 us (0.6%)
gen split merge : 817.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.47 us (0.5%)
LB compute : 261.49 us (91.9%)
LB move op cnt : 0
LB apply : 4.57 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.53 us (66.8%)
Info: cfl dt = 0.001604850179693498 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.1851e+05 | 262144 | 1 | 3.203e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.039898644668213 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.07227721418624306, dt = 0.001604850179693498
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 8.21 us (2.7%)
patch tree reduce : 1.97 us (0.7%)
gen split merge : 988.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.47 us (0.5%)
LB compute : 278.12 us (92.3%)
LB move op cnt : 0
LB apply : 4.16 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.40 us (65.1%)
Info: cfl dt = 0.0016048157080246687 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2103e+05 | 262144 | 1 | 3.193e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.09497025084129 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.07388206436593656, dt = 0.0016048157080246687
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.74 us (3.0%)
patch tree reduce : 1.94 us (0.7%)
gen split merge : 883.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.35 us (0.5%)
LB compute : 235.79 us (91.2%)
LB move op cnt : 0
LB apply : 4.11 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.75 us (62.8%)
Info: cfl dt = 0.001604787809589588 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.3181e+05 | 262144 | 1 | 3.152e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.331975984818538 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.07548688007396122, dt = 0.001604787809589588
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 8.38 us (2.5%)
patch tree reduce : 2.20 us (0.7%)
gen split merge : 993.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.47 us (0.4%)
LB compute : 305.71 us (92.7%)
LB move op cnt : 0
LB apply : 4.31 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.74 us (64.1%)
Info: cfl dt = 0.0016047666462792266 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2912e+05 | 262144 | 1 | 3.162e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.272487286812733 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0770916678835508, dt = 0.0016047666462792266
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.33 us (2.4%)
patch tree reduce : 1.88 us (0.6%)
gen split merge : 933.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.26 us (0.4%)
LB compute : 279.94 us (92.6%)
LB move op cnt : 0
LB apply : 4.29 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.56 us (65.3%)
Info: cfl dt = 0.0016047519934793816 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.1561e+05 | 262144 | 1 | 3.214e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.974452195524204 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.07869643452983004, dt = 0.0016047519934793816
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.39 us (2.9%)
patch tree reduce : 1.68 us (0.7%)
gen split merge : 1.01 us (0.4%)
split / merge op : 0/0
apply split merge : 1.36 us (0.5%)
LB compute : 232.08 us (91.4%)
LB move op cnt : 0
LB apply : 4.15 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.47 us (66.9%)
Info: cfl dt = 0.0016047428039782483 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2437e+05 | 262144 | 1 | 3.180e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.16730820213362 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.08030118652330942, dt = 0.0016047428039782483
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.24 us (2.8%)
patch tree reduce : 1.83 us (0.7%)
gen split merge : 1.01 us (0.4%)
split / merge op : 0/0
apply split merge : 1.97 us (0.8%)
LB compute : 236.87 us (91.4%)
LB move op cnt : 0
LB apply : 4.17 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.60 us (67.9%)
Info: cfl dt = 0.0016047384904907657 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2508e+05 | 262144 | 1 | 3.177e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.182880074930548 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.08190592932728767, dt = 0.0016047384904907657
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.94 us (2.7%)
patch tree reduce : 1.72 us (0.7%)
gen split merge : 956.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.68 us (0.7%)
LB compute : 235.42 us (91.3%)
LB move op cnt : 0
LB apply : 4.07 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.55 us (66.9%)
Info: cfl dt = 0.0016047386646706207 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.9963e+05 | 262144 | 1 | 3.278e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.622137487928352 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.08351066781777844, dt = 0.0016047386646706207
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.02 us (2.7%)
patch tree reduce : 1.90 us (0.7%)
gen split merge : 986.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.74 us (0.7%)
LB compute : 235.93 us (91.2%)
LB move op cnt : 0
LB apply : 4.42 us (1.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.50 us (67.9%)
Info: cfl dt = 0.0016047428480074081 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.4201e+05 | 262144 | 1 | 3.113e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.555938868769076 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.08511540648244906, dt = 0.0016047428480074081
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.22 us (2.8%)
patch tree reduce : 1.87 us (0.7%)
gen split merge : 932.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.40 us (0.5%)
LB compute : 234.74 us (91.1%)
LB move op cnt : 0
LB apply : 4.55 us (1.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.44 us (65.0%)
Info: cfl dt = 0.001604750552609718 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.1179e+05 | 262144 | 1 | 3.229e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.889961536261605 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.08672014933045646, dt = 0.001604750552609718
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.80 us (2.6%)
patch tree reduce : 1.72 us (0.7%)
gen split merge : 976.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.43 us (0.5%)
LB compute : 240.57 us (91.8%)
LB move op cnt : 0
LB apply : 4.12 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.53 us (66.7%)
Info: cfl dt = 0.0016047606140922994 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.1046e+05 | 262144 | 1 | 3.235e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.860828523376814 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.08832489988306619, dt = 0.0016047606140922994
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.40 us (2.8%)
patch tree reduce : 2.00 us (0.8%)
gen split merge : 986.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.63 us (0.6%)
LB compute : 237.97 us (91.0%)
LB move op cnt : 0
LB apply : 4.30 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.31 us (64.4%)
Info: cfl dt = 0.0016047723597612607 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.4738e+05 | 262144 | 1 | 3.094e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.674646169199974 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.08992966049715849, dt = 0.0016047723597612607
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.12 us (2.3%)
patch tree reduce : 1.72 us (0.6%)
gen split merge : 992.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.47 us (0.5%)
LB compute : 282.45 us (92.6%)
LB move op cnt : 0
LB apply : 4.23 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.46 us (66.1%)
Info: cfl dt = 0.0016047851881981024 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2467e+05 | 262144 | 1 | 3.179e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.17418777427251 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.09153443285691976, dt = 0.0016047851881981024
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.86 us (2.5%)
patch tree reduce : 2.19 us (0.8%)
gen split merge : 912.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.45 us (0.5%)
LB compute : 254.25 us (91.8%)
LB move op cnt : 0
LB apply : 4.39 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.45 us (65.4%)
Info: cfl dt = 0.0016047984245914015 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2231e+05 | 262144 | 1 | 3.188e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.122451367597012 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.09313921804511786, dt = 0.0016047984245914015
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.80 us (2.6%)
patch tree reduce : 1.98 us (0.7%)
gen split merge : 851.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.79 us (0.6%)
LB compute : 275.12 us (92.1%)
LB move op cnt : 0
LB apply : 4.21 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.46 us (63.2%)
Info: cfl dt = 0.0016048077590991498 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.1434e+05 | 262144 | 1 | 3.219e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.946811824252787 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.09474401646970927, dt = 0.0016048077590991498
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.54 us (2.8%)
patch tree reduce : 1.82 us (0.7%)
gen split merge : 981.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.75 us (0.7%)
LB compute : 242.77 us (91.5%)
LB move op cnt : 0
LB apply : 4.05 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.83 us (65.2%)
Info: cfl dt = 0.0016048176104962422 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2254e+05 | 262144 | 1 | 3.187e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.1275958807855 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.09634882422880842, dt = 0.0016048176104962422
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.90 us (3.1%)
patch tree reduce : 1.70 us (0.7%)
gen split merge : 985.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.58 us (0.6%)
LB compute : 235.61 us (91.1%)
LB move op cnt : 0
LB apply : 4.25 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.41 us (64.6%)
Info: cfl dt = 0.0016048282125583713 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.1697e+05 | 262144 | 1 | 3.209e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.005041316936765 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.09795364183930466, dt = 0.0016048282125583713
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 8.46 us (3.3%)
patch tree reduce : 1.78 us (0.7%)
gen split merge : 925.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.49 us (0.6%)
LB compute : 236.39 us (91.0%)
LB move op cnt : 0
LB apply : 4.30 us (1.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.77 us (65.3%)
Info: cfl dt = 0.0016048383443499584 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2209e+05 | 262144 | 1 | 3.189e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.11803557822953 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.09955847005186304, dt = 0.0016048383443499584
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.07 us (2.4%)
patch tree reduce : 1.98 us (0.7%)
gen split merge : 1.02 us (0.3%)
split / merge op : 0/0
apply split merge : 1.30 us (0.4%)
LB compute : 276.65 us (92.5%)
LB move op cnt : 0
LB apply : 4.17 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.49 us (65.3%)
Info: cfl dt = 0.0016048410695601461 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.1879e+05 | 262144 | 1 | 3.202e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.0454012859579 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.101163308396213, dt = 0.0016048410695601461
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.62 us (2.3%)
patch tree reduce : 1.85 us (0.6%)
gen split merge : 760.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.18 us (0.4%)
LB compute : 268.10 us (92.9%)
LB move op cnt : 0
LB apply : 4.20 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.50 us (65.4%)
Info: cfl dt = 0.0016048397348863534 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2444e+05 | 262144 | 1 | 3.180e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.170034067333543 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.10276814946577315, dt = 0.0016048397348863534
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.37 us (2.7%)
patch tree reduce : 1.84 us (0.7%)
gen split merge : 967.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 10.11 us (3.7%)
LB compute : 244.31 us (88.6%)
LB move op cnt : 0
LB apply : 4.13 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.52 us (65.4%)
Info: cfl dt = 0.0016048346020587697 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2361e+05 | 262144 | 1 | 3.183e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.15174616277303 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1043729892006595, dt = 0.0016048346020587697
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.18 us (2.7%)
patch tree reduce : 1.85 us (0.7%)
gen split merge : 979.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.59 us (0.6%)
LB compute : 242.92 us (91.6%)
LB move op cnt : 0
LB apply : 3.90 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.47 us (66.6%)
Info: cfl dt = 0.0016048255953400694 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.1597e+05 | 262144 | 1 | 3.213e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.983307552563517 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.10597782380271827, dt = 0.0016048255953400694
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.35 us (2.6%)
patch tree reduce : 1.68 us (0.6%)
gen split merge : 851.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.34 us (0.5%)
LB compute : 258.41 us (92.0%)
LB move op cnt : 0
LB apply : 4.20 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.41 us (66.7%)
Info: cfl dt = 0.0016048128615617787 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.1535e+05 | 262144 | 1 | 3.215e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.96935863784056 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.10758264939805834, dt = 0.0016048128615617787
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.18 us (2.5%)
patch tree reduce : 1.89 us (0.7%)
gen split merge : 824.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.55 us (0.5%)
LB compute : 260.65 us (92.1%)
LB move op cnt : 0
LB apply : 4.14 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.77 us (71.0%)
Info: cfl dt = 0.0016047965475004561 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.4691e+05 | 262144 | 1 | 3.095e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.664768122810802 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.10918746225962012, dt = 0.0016047965475004561
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.74 us (2.3%)
patch tree reduce : 1.84 us (0.6%)
gen split merge : 677.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.06 us (0.4%)
LB compute : 275.58 us (92.8%)
LB move op cnt : 0
LB apply : 4.59 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.19 us (67.6%)
Info: cfl dt = 0.0016047768032500286 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.4675e+05 | 262144 | 1 | 3.096e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.66104730721928 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.11079225880712057, dt = 0.0016047768032500286
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.66 us (2.7%)
patch tree reduce : 1.97 us (0.7%)
gen split merge : 871.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.48 us (0.5%)
LB compute : 260.73 us (92.1%)
LB move op cnt : 0
LB apply : 4.02 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.43 us (64.6%)
Info: cfl dt = 0.0016047539720394288 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.2426e+05 | 262144 | 1 | 3.619e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.961535173660618 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1123970356103706, dt = 0.0016047539720394288
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.93 us (2.3%)
patch tree reduce : 1.78 us (0.6%)
gen split merge : 965.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.51 us (0.5%)
LB compute : 268.57 us (88.8%)
LB move op cnt : 0
LB apply : 16.01 us (5.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.53 us (67.3%)
Info: cfl dt = 0.0016047281785058118 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2348e+05 | 262144 | 1 | 3.183e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.147887382181384 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.11400178958241003, dt = 0.0016047281785058118
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.97 us (2.4%)
patch tree reduce : 1.96 us (0.7%)
gen split merge : 981.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.44 us (0.5%)
LB compute : 271.52 us (92.4%)
LB move op cnt : 0
LB apply : 4.17 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.56 us (67.5%)
Info: cfl dt = 0.0016046995361914003 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2803e+05 | 262144 | 1 | 3.166e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.24768945411133 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.11560651776091584, dt = 0.0016046995361914003
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.63 us (2.6%)
patch tree reduce : 1.95 us (0.7%)
gen split merge : 1.01 us (0.3%)
split / merge op : 0/0
apply split merge : 1.35 us (0.5%)
LB compute : 274.26 us (92.2%)
LB move op cnt : 0
LB apply : 4.20 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.37 us (64.4%)
Info: cfl dt = 0.0016046678872136397 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2879e+05 | 262144 | 1 | 3.163e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.264114817142676 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.11721121729710723, dt = 0.0016046678872136397
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.24 us (2.6%)
patch tree reduce : 1.71 us (0.6%)
gen split merge : 967.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.74 us (0.6%)
LB compute : 251.51 us (91.9%)
LB move op cnt : 0
LB apply : 4.15 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.64 us (68.4%)
Info: cfl dt = 0.001604626128044338 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.3640e+05 | 262144 | 1 | 3.134e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.43151668894143 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.11881588518432087, dt = 0.001604626128044338
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.85 us (3.0%)
patch tree reduce : 1.63 us (0.6%)
gen split merge : 1.06 us (0.4%)
split / merge op : 0/0
apply split merge : 1.56 us (0.6%)
LB compute : 238.65 us (91.3%)
LB move op cnt : 0
LB apply : 4.21 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.47 us (67.1%)
Info: cfl dt = 0.001604583222301995 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.6010e+05 | 262144 | 1 | 3.048e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.953280669148082 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.12042051131236521, dt = 0.001604583222301995
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.69 us (2.6%)
patch tree reduce : 1.92 us (0.6%)
gen split merge : 954.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.35 us (0.5%)
LB compute : 273.68 us (92.2%)
LB move op cnt : 0
LB apply : 4.57 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.45 us (64.0%)
Info: cfl dt = 0.0016045391891071133 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2404e+05 | 262144 | 1 | 3.181e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.15832219834651 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1220250945346672, dt = 0.0016045391891071133
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.84 us (2.5%)
patch tree reduce : 1.97 us (0.7%)
gen split merge : 1.02 us (0.4%)
split / merge op : 0/0
apply split merge : 1.34 us (0.5%)
LB compute : 249.41 us (91.9%)
LB move op cnt : 0
LB apply : 4.22 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.55 us (68.5%)
Info: cfl dt = 0.0016044939391883695 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.3150e+05 | 262144 | 1 | 3.153e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.322111108045437 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.12362963372377431, dt = 0.0016044939391883695
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.76 us (2.6%)
patch tree reduce : 1.92 us (0.7%)
gen split merge : 982.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.66 us (0.6%)
LB compute : 236.59 us (91.4%)
LB move op cnt : 0
LB apply : 4.25 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.53 us (67.4%)
Info: cfl dt = 0.0016044473920102014 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2904e+05 | 262144 | 1 | 3.162e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.26727329561748 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.12523412766296269, dt = 0.0016044473920102014
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.91 us (2.6%)
patch tree reduce : 1.88 us (0.7%)
gen split merge : 898.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.38 us (0.5%)
LB compute : 248.23 us (91.8%)
LB move op cnt : 0
LB apply : 4.37 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.67 us (68.1%)
Info: cfl dt = 0.0016043995122379676 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2013e+05 | 262144 | 1 | 3.196e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.07050009086925 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1268385750549729, dt = 0.0016043995122379676
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.89 us (2.2%)
patch tree reduce : 1.78 us (0.6%)
gen split merge : 958.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.65 us (0.5%)
LB compute : 293.78 us (92.9%)
LB move op cnt : 0
LB apply : 4.32 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.46 us (64.3%)
Info: cfl dt = 0.0016043503107421135 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2643e+05 | 262144 | 1 | 3.172e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.20871424131029 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.12844297456721088, dt = 0.0016043503107421135
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.39 us (2.5%)
patch tree reduce : 2.12 us (0.7%)
gen split merge : 864.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.52 us (0.5%)
LB compute : 267.16 us (92.0%)
LB move op cnt : 0
LB apply : 4.25 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.56 us (67.4%)
Info: cfl dt = 0.001604299806280021 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.1657e+05 | 262144 | 1 | 3.210e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.991080051960044 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.13004732487795298, dt = 0.001604299806280021
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.60 us (2.5%)
patch tree reduce : 1.92 us (0.6%)
gen split merge : 1.27 us (0.4%)
split / merge op : 0/0
apply split merge : 1.32 us (0.4%)
LB compute : 277.78 us (92.4%)
LB move op cnt : 0
LB apply : 4.28 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.93 us (66.0%)
Info: cfl dt = 0.0016042480911381486 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2125e+05 | 262144 | 1 | 3.192e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.09347935580515 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.131651624684233, dt = 0.00064004198243367
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.29 us (2.5%)
patch tree reduce : 2.11 us (0.7%)
gen split merge : 961.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.47 us (0.5%)
LB compute : 266.47 us (92.1%)
LB move op cnt : 0
LB apply : 4.46 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.42 us (65.6%)
Info: cfl dt = 0.0016042273494663824 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.1450e+05 | 262144 | 1 | 3.218e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7.159184391097281 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 39.264515925000005 (s) [Godunov][rank=0]
Info: dump to _to_trash/ramses_kh/periodic_0002.vtk [VTK Dump][rank=0]
- took 37.67 ms, bandwidth = 1.09 GB/s
amr::Godunov: t = 0.13229166666666667, dt = 0.0016042273494663824
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.45 us (2.6%)
patch tree reduce : 1.87 us (0.7%)
gen split merge : 984.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.31 us (0.5%)
LB compute : 259.35 us (91.9%)
LB move op cnt : 0
LB apply : 4.69 us (1.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.64 us (69.5%)
Info: cfl dt = 0.0016041738397843035 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.3209e+05 | 262144 | 1 | 3.150e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.331570187857352 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.13389589401613305, dt = 0.0016041738397843035
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.50 us (2.4%)
patch tree reduce : 1.72 us (0.6%)
gen split merge : 818.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.44 us (0.5%)
LB compute : 286.56 us (92.9%)
LB move op cnt : 0
LB apply : 3.98 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.52 us (64.9%)
Info: cfl dt = 0.001604119875606735 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.0963e+05 | 262144 | 1 | 3.238e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.836056149987016 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.13550006785591737, dt = 0.001604119875606735
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.26 us (2.3%)
patch tree reduce : 1.81 us (0.6%)
gen split merge : 884.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.40 us (0.4%)
LB compute : 300.71 us (93.2%)
LB move op cnt : 0
LB apply : 3.98 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.53 us (65.7%)
Info: cfl dt = 0.0016040656532824691 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 6.6993e+05 | 262144 | 1 | 3.913e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.758103682217078 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1371041877315241, dt = 0.0016040656532824691
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.24 us (2.5%)
patch tree reduce : 1.89 us (0.6%)
gen split merge : 1.30 us (0.4%)
split / merge op : 0/0
apply split merge : 1.29 us (0.4%)
LB compute : 269.84 us (92.4%)
LB move op cnt : 0
LB apply : 4.15 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.38 us (64.5%)
Info: cfl dt = 0.0016040113863370203 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2310e+05 | 262144 | 1 | 3.185e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.131622656464653 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.13870825338480658, dt = 0.0016040113863370203
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.56 us (2.5%)
patch tree reduce : 2.08 us (0.7%)
gen split merge : 1.00 us (0.3%)
split / merge op : 0/0
apply split merge : 1.36 us (0.5%)
LB compute : 273.93 us (92.2%)
LB move op cnt : 0
LB apply : 4.25 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.47 us (65.9%)
Info: cfl dt = 0.0016039569826780623 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 6.7886e+05 | 262144 | 1 | 3.862e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.953781455736749 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1403122647711436, dt = 0.0016039569826780623
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.00 us (2.4%)
patch tree reduce : 1.83 us (0.6%)
gen split merge : 1.17 us (0.4%)
split / merge op : 0/0
apply split merge : 1.54 us (0.5%)
LB compute : 274.32 us (92.6%)
LB move op cnt : 0
LB apply : 4.09 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.71 us (69.2%)
Info: cfl dt = 0.0016039028659567307 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2172e+05 | 262144 | 1 | 3.190e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.100039793762168 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.14191622175382168, dt = 0.0016039028659567307
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.53 us (2.7%)
patch tree reduce : 1.95 us (0.7%)
gen split merge : 990.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.68 us (0.6%)
LB compute : 249.91 us (91.2%)
LB move op cnt : 0
LB apply : 4.88 us (1.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.46 us (63.9%)
Info: cfl dt = 0.001603849476449893 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 6.7578e+05 | 262144 | 1 | 3.879e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.88485179370447 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.14352012461977842, dt = 0.001603849476449893
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.30 us (2.5%)
patch tree reduce : 1.83 us (0.6%)
gen split merge : 1.04 us (0.4%)
split / merge op : 0/0
apply split merge : 1.48 us (0.5%)
LB compute : 265.23 us (92.1%)
LB move op cnt : 0
LB apply : 4.27 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.59 us (68.5%)
Info: cfl dt = 0.0016037972381005763 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.9319e+05 | 262144 | 1 | 3.305e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.470473108980386 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.14512397409622832, dt = 0.0016037972381005763
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.18 us (2.5%)
patch tree reduce : 2.02 us (0.7%)
gen split merge : 891.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.78 us (0.6%)
LB compute : 249.72 us (87.1%)
LB move op cnt : 0
LB apply : 4.65 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.77 us (69.5%)
Info: cfl dt = 0.0016037465435442735 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.1590e+05 | 262144 | 1 | 3.213e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.97008614285933 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1467277713343289, dt = 0.0016037465435442735
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.51 us (2.7%)
patch tree reduce : 1.98 us (0.7%)
gen split merge : 1.03 us (0.4%)
split / merge op : 0/0
apply split merge : 1.66 us (0.6%)
LB compute : 254.07 us (91.8%)
LB move op cnt : 0
LB apply : 4.10 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.51 us (65.8%)
Info: cfl dt = 0.001603697734763891 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.2021e+05 | 262144 | 1 | 3.640e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.862070023362431 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1483315178778732, dt = 0.001603697734763891
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.24 us (1.8%)
patch tree reduce : 1.90 us (0.5%)
gen split merge : 960.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.57 us (0.4%)
LB compute : 371.44 us (94.3%)
LB move op cnt : 0
LB apply : 3.86 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.78 us (62.9%)
Info: cfl dt = 0.0016036510660739464 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2192e+05 | 262144 | 1 | 3.189e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.101559915099795 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1499352156126371, dt = 0.0016036510660739464
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.27 us (2.3%)
patch tree reduce : 1.83 us (0.6%)
gen split merge : 1.05 us (0.3%)
split / merge op : 0/0
apply split merge : 1.51 us (0.5%)
LB compute : 289.80 us (92.8%)
LB move op cnt : 0
LB apply : 3.94 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.56 us (65.6%)
Info: cfl dt = 0.0016036067585051012 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.7127e+05 | 262144 | 1 | 3.399e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.985508276762253 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.15153886667871103, dt = 0.0016036067585051012
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.89 us (2.5%)
patch tree reduce : 1.69 us (0.6%)
gen split merge : 990.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.57 us (0.6%)
LB compute : 257.03 us (92.2%)
LB move op cnt : 0
LB apply : 4.12 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.54 us (66.9%)
Info: cfl dt = 0.0016035650333493705 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.0546e+05 | 262144 | 1 | 3.255e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.73789841920872 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.15314247343721613, dt = 0.0016035650333493705
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.66 us (2.0%)
patch tree reduce : 2.03 us (0.6%)
gen split merge : 870.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.51 us (0.5%)
LB compute : 308.75 us (93.3%)
LB move op cnt : 0
LB apply : 4.48 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.87 us (64.3%)
Info: cfl dt = 0.0016035260637780465 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2621e+05 | 262144 | 1 | 3.173e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.194493039259935 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1547460384705655, dt = 0.0016035260637780465
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.32 us (2.5%)
patch tree reduce : 1.93 us (0.7%)
gen split merge : 914.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.63 us (0.6%)
LB compute : 264.38 us (92.1%)
LB move op cnt : 0
LB apply : 3.97 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.38 us (66.1%)
Info: cfl dt = 0.0016034900240051418 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.0765e+05 | 262144 | 1 | 3.246e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.78537081795582 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.15634956453434357, dt = 0.0016034900240051418
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.48 us (2.8%)
patch tree reduce : 1.72 us (0.6%)
gen split merge : 970.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.54 us (0.6%)
LB compute : 247.61 us (91.4%)
LB move op cnt : 0
LB apply : 4.62 us (1.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.43 us (64.1%)
Info: cfl dt = 0.0016034570761961648 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.1610e+05 | 262144 | 1 | 3.212e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.970899446835894 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1579530545583487, dt = 0.0016034570761961648
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.02 us (2.0%)
patch tree reduce : 2.01 us (0.6%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.35 us (0.4%)
LB compute : 325.20 us (93.5%)
LB move op cnt : 0
LB apply : 4.52 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.38 us (70.3%)
Info: cfl dt = 0.0016034272928400282 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.1939e+05 | 262144 | 1 | 3.199e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.04307522504395 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.15955651163454487, dt = 0.0016034272928400282
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.58 us (2.2%)
patch tree reduce : 1.90 us (0.6%)
gen split merge : 972.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.40 us (0.5%)
LB compute : 278.76 us (92.7%)
LB move op cnt : 0
LB apply : 4.07 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.75 us (64.1%)
Info: cfl dt = 0.0016034006731800014 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2046e+05 | 262144 | 1 | 3.195e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.06635868634428 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1611599389273849, dt = 0.0016034006731800014
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.66 us (1.9%)
patch tree reduce : 2.02 us (0.6%)
gen split merge : 908.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.37 us (0.4%)
LB compute : 331.21 us (93.7%)
LB move op cnt : 0
LB apply : 4.58 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.77 us (70.7%)
Info: cfl dt = 0.001603377166597233 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.1813e+05 | 262144 | 1 | 3.204e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.01468462659455 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.16276333960056488, dt = 0.001603377166597233
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.34 us (2.8%)
patch tree reduce : 1.91 us (0.7%)
gen split merge : 989.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.33 us (0.5%)
LB compute : 243.60 us (91.5%)
LB move op cnt : 0
LB apply : 4.13 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.36 us (64.5%)
Info: cfl dt = 0.0016033566697151566 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.1345e+05 | 262144 | 1 | 3.223e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.91128416623313 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1643667167671621, dt = 0.0016033566697151566
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.09 us (2.4%)
patch tree reduce : 1.81 us (0.6%)
gen split merge : 925.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.49 us (0.5%)
LB compute : 278.22 us (92.8%)
LB move op cnt : 0
LB apply : 3.87 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.74 us (61.8%)
Info: cfl dt = 0.0016033355791337746 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.4436e+05 | 262144 | 1 | 3.105e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.591788057727047 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.16597007343687725, dt = 0.0016033355791337746
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.57 us (2.5%)
patch tree reduce : 1.79 us (0.7%)
gen split merge : 879.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.49 us (0.6%)
LB compute : 242.30 us (91.8%)
LB move op cnt : 0
LB apply : 4.31 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.41 us (65.3%)
Info: cfl dt = 0.0016033112125957516 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.5849e+05 | 262144 | 1 | 3.054e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.902544820898896 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.16757340901601103, dt = 0.0016033112125957516
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.18 us (2.4%)
patch tree reduce : 1.74 us (0.6%)
gen split merge : 978.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.61 us (0.5%)
LB compute : 275.39 us (92.6%)
LB move op cnt : 0
LB apply : 4.14 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.58 us (67.5%)
Info: cfl dt = 0.0016032895564966271 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.1456e+05 | 262144 | 1 | 3.218e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.935019234143248 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.16917672022860678, dt = 0.0016032895564966271
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.79 us (2.8%)
patch tree reduce : 1.87 us (0.7%)
gen split merge : 1.04 us (0.4%)
split / merge op : 0/0
apply split merge : 1.44 us (0.5%)
LB compute : 251.27 us (91.7%)
LB move op cnt : 0
LB apply : 4.14 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.43 us (65.3%)
Info: cfl dt = 0.00160327050798848 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.1890e+05 | 262144 | 1 | 3.201e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.030378303934018 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1707800097851034, dt = 0.00160327050798848
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.18 us (2.5%)
patch tree reduce : 2.15 us (0.7%)
gen split merge : 937.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.42 us (0.5%)
LB compute : 269.93 us (92.5%)
LB move op cnt : 0
LB apply : 4.10 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.45 us (64.4%)
Info: cfl dt = 0.001603253932121782 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.1382e+05 | 262144 | 1 | 3.672e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.716475534614133 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.17238328029309188, dt = 0.001603253932121782
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.68 us (2.6%)
patch tree reduce : 1.77 us (0.6%)
gen split merge : 974.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.49 us (0.5%)
LB compute : 267.56 us (92.0%)
LB move op cnt : 0
LB apply : 4.69 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.56 us (67.3%)
Info: cfl dt = 0.001603239659879979 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2423e+05 | 262144 | 1 | 3.180e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.14746221060813 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.17398653422521368, dt = 0.001603239659879979
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.74 us (2.2%)
patch tree reduce : 1.87 us (0.6%)
gen split merge : 818.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.54 us (0.5%)
LB compute : 281.16 us (92.7%)
LB move op cnt : 0
LB apply : 4.33 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.35 us (63.6%)
Info: cfl dt = 0.001603227523333457 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2365e+05 | 262144 | 1 | 3.183e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.134342209947206 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.17558977388509367, dt = 0.001603227523333457
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.29 us (2.6%)
patch tree reduce : 1.76 us (0.6%)
gen split merge : 1.10 us (0.4%)
split / merge op : 0/0
apply split merge : 1.50 us (0.5%)
LB compute : 254.75 us (91.8%)
LB move op cnt : 0
LB apply : 4.15 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.42 us (66.6%)
Info: cfl dt = 0.0016032173460213816 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2370e+05 | 262144 | 1 | 3.183e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.13528961127016 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.17719300140842711, dt = 0.0016032173460213816
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.01 us (2.7%)
patch tree reduce : 1.78 us (0.7%)
gen split merge : 970.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.53 us (0.6%)
LB compute : 234.70 us (91.5%)
LB move op cnt : 0
LB apply : 4.14 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.33 us (64.5%)
Info: cfl dt = 0.0016032088203184103 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.1280e+05 | 262144 | 1 | 3.225e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.89534335579678 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.17879621875444848, dt = 0.0016032088203184103
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.10 us (2.7%)
patch tree reduce : 1.84 us (0.7%)
gen split merge : 1.01 us (0.4%)
split / merge op : 0/0
apply split merge : 1.68 us (0.6%)
LB compute : 238.65 us (91.3%)
LB move op cnt : 0
LB apply : 4.03 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.32 us (63.5%)
Info: cfl dt = 0.0016032016203699061 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.3175e+05 | 262144 | 1 | 3.152e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.312420956574787 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1803994275747669, dt = 0.0016032016203699061
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.13 us (2.2%)
patch tree reduce : 2.01 us (0.7%)
gen split merge : 747.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.18 us (0.4%)
LB compute : 259.74 us (92.7%)
LB move op cnt : 0
LB apply : 4.51 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.51 us (67.5%)
Info: cfl dt = 0.0016031954242465896 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.7510e+05 | 262144 | 1 | 3.382e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.065116756311607 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1820026291951368, dt = 0.0016031954242465896
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.83 us (3.0%)
patch tree reduce : 2.04 us (0.8%)
gen split merge : 986.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.51 us (0.6%)
LB compute : 239.33 us (91.0%)
LB move op cnt : 0
LB apply : 4.50 us (1.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.45 us (66.1%)
Info: cfl dt = 0.0016031899674078494 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.3640e+05 | 262144 | 1 | 3.134e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.414731375633874 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.18360582461938338, dt = 0.0016031899674078494
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.66 us (2.4%)
patch tree reduce : 1.58 us (0.6%)
gen split merge : 665.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.22 us (0.4%)
LB compute : 261.05 us (92.7%)
LB move op cnt : 0
LB apply : 3.99 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.78 us (63.8%)
Info: cfl dt = 0.001603185027863387 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.8627e+05 | 262144 | 1 | 3.334e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.310928700904853 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.18520901458679123, dt = 0.001603185027863387
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.53 us (2.9%)
patch tree reduce : 1.86 us (0.7%)
gen split merge : 996.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.54 us (0.6%)
LB compute : 238.16 us (91.1%)
LB move op cnt : 0
LB apply : 4.09 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.46 us (65.0%)
Info: cfl dt = 0.001603180411270176 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2016e+05 | 262144 | 1 | 3.196e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.057016506654122 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.18681219961465462, dt = 0.001603180411270176
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.32 us (2.5%)
patch tree reduce : 2.18 us (0.8%)
gen split merge : 951.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.60 us (0.6%)
LB compute : 266.88 us (92.3%)
LB move op cnt : 0
LB apply : 3.79 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.47 us (65.2%)
Info: cfl dt = 0.0016031759342262609 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.4079e+05 | 262144 | 1 | 3.118e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.511132077981284 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.18841538002592478, dt = 0.0016031759342262609
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.30 us (2.8%)
patch tree reduce : 1.97 us (0.7%)
gen split merge : 1.02 us (0.4%)
split / merge op : 0/0
apply split merge : 1.65 us (0.6%)
LB compute : 240.65 us (91.1%)
LB move op cnt : 0
LB apply : 4.35 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.42 us (63.3%)
Info: cfl dt = 0.0016031714144517824 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.3079e+05 | 262144 | 1 | 3.155e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.290802155375548 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.19001855596015105, dt = 0.0016031714144517824
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.96 us (2.6%)
patch tree reduce : 2.13 us (0.8%)
gen split merge : 954.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.60 us (0.6%)
LB compute : 249.74 us (91.7%)
LB move op cnt : 0
LB apply : 4.18 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.44 us (65.5%)
Info: cfl dt = 0.0016031666717149574 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.1899e+05 | 262144 | 1 | 3.201e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.031147917626235 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.19162172737460284, dt = 0.0016031666717149574
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.60 us (2.9%)
patch tree reduce : 2.11 us (0.8%)
gen split merge : 943.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.57 us (0.6%)
LB compute : 238.55 us (91.1%)
LB move op cnt : 0
LB apply : 4.19 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.49 us (68.3%)
Info: cfl dt = 0.0016031615358672391 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.1795e+05 | 262144 | 1 | 3.205e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.008010391882674 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1932248940463178, dt = 0.0016031615358672391
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.61 us (2.8%)
patch tree reduce : 1.71 us (0.6%)
gen split merge : 1.09 us (0.4%)
split / merge op : 0/0
apply split merge : 1.61 us (0.6%)
LB compute : 246.89 us (91.6%)
LB move op cnt : 0
LB apply : 4.16 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.48 us (66.5%)
Info: cfl dt = 0.001603155854894901 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2193e+05 | 262144 | 1 | 3.189e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.095751032076468 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.19482805558218502, dt = 0.001603155854894901
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.32 us (2.8%)
patch tree reduce : 1.76 us (0.7%)
gen split merge : 1.11 us (0.4%)
split / merge op : 0/0
apply split merge : 1.47 us (0.6%)
LB compute : 234.96 us (91.2%)
LB move op cnt : 0
LB apply : 4.02 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.38 us (65.2%)
Info: cfl dt = 0.0016031494968065413 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.8887e+05 | 262144 | 1 | 3.323e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.367682488810086 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.19643121143707992, dt = 0.0016031494968065413
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 8.28 us (2.8%)
patch tree reduce : 1.77 us (0.6%)
gen split merge : 1.07 us (0.4%)
split / merge op : 0/0
apply split merge : 1.55 us (0.5%)
LB compute : 269.97 us (92.0%)
LB move op cnt : 0
LB apply : 3.96 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.52 us (64.9%)
Info: cfl dt = 0.0016031423463691162 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.1980e+05 | 262144 | 1 | 3.198e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.048629391698565 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.19803436093388646, dt = 0.0016031423463691162
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.15 us (2.8%)
patch tree reduce : 1.95 us (0.8%)
gen split merge : 1.21 us (0.5%)
split / merge op : 0/0
apply split merge : 1.51 us (0.6%)
LB compute : 234.83 us (91.4%)
LB move op cnt : 0
LB apply : 3.95 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.39 us (65.5%)
Info: cfl dt = 0.0016031343118768078 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.1267e+05 | 262144 | 1 | 3.226e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.89164736237986 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1996375032802556, dt = 0.0016031343118768078
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.29 us (2.7%)
patch tree reduce : 2.01 us (0.7%)
gen split merge : 993.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.33 us (0.5%)
LB compute : 249.70 us (91.7%)
LB move op cnt : 0
LB apply : 4.59 us (1.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.48 us (65.3%)
Info: cfl dt = 0.0016031253494415165 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2489e+05 | 262144 | 1 | 3.178e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.160604593488113 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.2012406375921324, dt = 0.0016031253494415165
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.99 us (2.6%)
patch tree reduce : 2.04 us (0.8%)
gen split merge : 1.09 us (0.4%)
split / merge op : 0/0
apply split merge : 1.35 us (0.5%)
LB compute : 243.75 us (91.7%)
LB move op cnt : 0
LB apply : 4.16 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.41 us (65.2%)
Info: cfl dt = 0.0016031154461330702 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2212e+05 | 262144 | 1 | 3.189e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.099372683137982 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.2028437629415739, dt = 0.0016031154461330702
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.35 us (2.5%)
patch tree reduce : 2.04 us (0.7%)
gen split merge : 934.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.60 us (0.5%)
LB compute : 275.64 us (92.2%)
LB move op cnt : 0
LB apply : 4.08 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.50 us (66.7%)
Info: cfl dt = 0.0016031046165928629 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.1923e+05 | 262144 | 1 | 3.200e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.0356520051952 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.20444687838770698, dt = 0.0016031046165928629
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.77 us (2.6%)
patch tree reduce : 1.83 us (0.7%)
gen split merge : 827.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.38 us (0.5%)
LB compute : 242.09 us (91.8%)
LB move op cnt : 0
LB apply : 4.12 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.40 us (63.6%)
Info: cfl dt = 0.001603092890752776 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2091e+05 | 262144 | 1 | 3.193e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.072549296738043 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.20604998300429983, dt = 0.001603092890752776
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.29 us (2.4%)
patch tree reduce : 2.23 us (0.7%)
gen split merge : 887.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.43 us (0.5%)
LB compute : 279.25 us (92.3%)
LB move op cnt : 0
LB apply : 4.24 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.48 us (65.7%)
Info: cfl dt = 0.0016030803039774695 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.9669e+05 | 262144 | 1 | 3.290e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.539320560872078 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.2076530758950526, dt = 0.0016030803039774695
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.16 us (2.4%)
patch tree reduce : 1.81 us (0.6%)
gen split merge : 1.04 us (0.3%)
split / merge op : 0/0
apply split merge : 1.75 us (0.6%)
LB compute : 279.97 us (92.3%)
LB move op cnt : 0
LB apply : 4.43 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.50 us (67.0%)
Info: cfl dt = 0.0016030668947340887 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2070e+05 | 262144 | 1 | 3.194e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.067750885668165 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.20925615619903007, dt = 0.0016030668947340887
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.04 us (2.5%)
patch tree reduce : 1.97 us (0.7%)
gen split merge : 1.07 us (0.4%)
split / merge op : 0/0
apply split merge : 1.64 us (0.6%)
LB compute : 256.12 us (91.8%)
LB move op cnt : 0
LB apply : 4.31 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.58 us (68.7%)
Info: cfl dt = 0.001603052701015181 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2271e+05 | 262144 | 1 | 3.186e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.111713877400867 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.21085922309376415, dt = 0.001603052701015181
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.45 us (2.7%)
patch tree reduce : 1.94 us (0.7%)
gen split merge : 918.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.30 us (0.5%)
LB compute : 252.04 us (91.8%)
LB move op cnt : 0
LB apply : 4.14 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.57 us (66.7%)
Info: cfl dt = 0.0016030377618725046 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2469e+05 | 262144 | 1 | 3.179e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.155293622741365 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.21246227579477933, dt = 0.0016030377618725046
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.38 us (2.7%)
patch tree reduce : 1.94 us (0.7%)
gen split merge : 771.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.64 us (0.6%)
LB compute : 251.04 us (91.6%)
LB move op cnt : 0
LB apply : 4.40 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.43 us (65.9%)
Info: cfl dt = 0.0016030221425414918 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.1060e+05 | 262144 | 1 | 3.234e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.8448410022665 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.21406531355665184, dt = 0.0016030221425414918
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.93 us (2.3%)
patch tree reduce : 1.78 us (0.6%)
gen split merge : 903.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.48 us (0.5%)
LB compute : 280.09 us (92.7%)
LB move op cnt : 0
LB apply : 4.32 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.86 us (63.0%)
Info: cfl dt = 0.0016030058706055072 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.1899e+05 | 262144 | 1 | 3.201e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.029322072079758 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.21566833569919333, dt = 0.0016030058706055072
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.37 us (2.6%)
patch tree reduce : 2.30 us (0.8%)
gen split merge : 931.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.44 us (0.5%)
LB compute : 260.17 us (91.8%)
LB move op cnt : 0
LB apply : 4.19 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.45 us (65.2%)
Info: cfl dt = 0.0016029889410030013 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.1919e+05 | 262144 | 1 | 3.200e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.03367865022274 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.21727134156979883, dt = 0.0016029889410030013
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.64 us (2.6%)
patch tree reduce : 1.85 us (0.6%)
gen split merge : 1.03 us (0.3%)
split / merge op : 0/0
apply split merge : 1.59 us (0.5%)
LB compute : 275.65 us (92.3%)
LB move op cnt : 0
LB apply : 4.30 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.42 us (63.0%)
Info: cfl dt = 0.0016029713555471977 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.1886e+05 | 262144 | 1 | 3.201e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.02617503015302 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.21887433051080182, dt = 0.0016029713555471977
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.89 us (2.6%)
patch tree reduce : 1.89 us (0.7%)
gen split merge : 833.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.53 us (0.6%)
LB compute : 246.99 us (91.8%)
LB move op cnt : 0
LB apply : 4.16 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.89 us (63.4%)
Info: cfl dt = 0.0016029531334277559 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2767e+05 | 262144 | 1 | 3.167e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.219858638642982 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.22047730186634903, dt = 0.0016029531334277559
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.50 us (1.3%)
patch tree reduce : 1.99 us (0.4%)
gen split merge : 785.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 1.51 us (0.3%)
LB compute : 535.38 us (96.0%)
LB move op cnt : 0
LB apply : 4.11 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.44 us (65.3%)
Info: cfl dt = 0.0016029343135597117 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2163e+05 | 262144 | 1 | 3.191e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.08661273623969 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.2220802549997768, dt = 0.0016029343135597117
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.01 us (2.0%)
patch tree reduce : 2.00 us (0.6%)
gen split merge : 854.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.37 us (0.4%)
LB compute : 333.06 us (93.6%)
LB move op cnt : 0
LB apply : 4.75 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.00 us (66.0%)
Info: cfl dt = 0.0016029149535093704 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.1940e+05 | 262144 | 1 | 3.199e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.03750800376094 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.2236831893133365, dt = 0.0016029149535093704
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.71 us (2.2%)
patch tree reduce : 2.01 us (0.6%)
gen split merge : 1.00 us (0.3%)
split / merge op : 0/0
apply split merge : 1.51 us (0.4%)
LB compute : 324.85 us (93.2%)
LB move op cnt : 0
LB apply : 4.69 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.95 us (64.0%)
Info: cfl dt = 0.0016028951279274898 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.1768e+05 | 262144 | 1 | 3.206e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.999371656200964 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.22528610426684587, dt = 0.0016028951279274898
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 16.60 us (4.7%)
patch tree reduce : 1.77 us (0.5%)
gen split merge : 992.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.47 us (0.4%)
LB compute : 320.76 us (90.7%)
LB move op cnt : 0
LB apply : 4.41 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.66 us (67.5%)
Info: cfl dt = 0.0016028749261150829 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.7341e+05 | 262144 | 1 | 3.389e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.024727395472443 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.22688899939477336, dt = 0.0016028749261150829
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 8.55 us (2.8%)
patch tree reduce : 1.81 us (0.6%)
gen split merge : 958.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.38 us (0.5%)
LB compute : 275.72 us (91.9%)
LB move op cnt : 0
LB apply : 4.79 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.75 us (65.0%)
Info: cfl dt = 0.0016028544498623905 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2686e+05 | 262144 | 1 | 3.170e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.200931377674724 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.22849187432088844, dt = 0.0016028544498623905
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.95 us (2.6%)
patch tree reduce : 2.07 us (0.8%)
gen split merge : 874.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.68 us (0.6%)
LB compute : 248.15 us (91.8%)
LB move op cnt : 0
LB apply : 3.95 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.34 us (63.0%)
Info: cfl dt = 0.0016028338101722966 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2151e+05 | 262144 | 1 | 3.191e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.08299228076683 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.23009472877075082, dt = 0.0016028338101722966
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.15 us (2.3%)
patch tree reduce : 1.98 us (0.6%)
gen split merge : 1.26 us (0.4%)
split / merge op : 0/0
apply split merge : 1.40 us (0.5%)
LB compute : 282.28 us (92.6%)
LB move op cnt : 0
LB apply : 4.34 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.49 us (66.9%)
Info: cfl dt = 0.001602813130842037 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2434e+05 | 262144 | 1 | 3.180e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.145045855441307 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.2316975625809231, dt = 0.001602813130842037
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.63 us (3.0%)
patch tree reduce : 2.09 us (0.8%)
gen split merge : 1.32 us (0.5%)
split / merge op : 0/0
apply split merge : 1.23 us (0.5%)
LB compute : 234.28 us (90.9%)
LB move op cnt : 0
LB apply : 4.56 us (1.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.37 us (63.9%)
Info: cfl dt = 0.0016027925450056509 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2049e+05 | 262144 | 1 | 3.195e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.06005076380916 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.23330037571176515, dt = 0.0016027925450056509
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.51 us (2.7%)
patch tree reduce : 1.89 us (0.7%)
gen split merge : 1.17 us (0.4%)
split / merge op : 0/0
apply split merge : 1.65 us (0.6%)
LB compute : 251.60 us (91.5%)
LB move op cnt : 0
LB apply : 4.19 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.50 us (66.9%)
Info: cfl dt = 0.0016027721876416 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.8165e+05 | 262144 | 1 | 3.354e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.204804677486912 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.2349031682567708, dt = 0.0016027721876416
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.93 us (2.1%)
patch tree reduce : 2.06 us (0.6%)
gen split merge : 951.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.63 us (0.5%)
LB compute : 314.79 us (93.4%)
LB move op cnt : 0
LB apply : 4.13 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.79 us (64.2%)
Info: cfl dt = 0.0016027521920402156 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.6079e+05 | 262144 | 1 | 3.446e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.745541077860317 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.2365059404444124, dt = 0.0016027521920402156
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.41 us (2.2%)
patch tree reduce : 2.09 us (0.6%)
gen split merge : 973.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.34 us (0.4%)
LB compute : 310.80 us (93.1%)
LB move op cnt : 0
LB apply : 4.31 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.74 us (68.7%)
Info: cfl dt = 0.0016027326822497404 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.0515e+05 | 262144 | 1 | 3.718e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.520624155710705 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.2381086926364526, dt = 0.0016027326822497404
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.64 us (2.5%)
patch tree reduce : 2.04 us (0.7%)
gen split merge : 1.05 us (0.3%)
split / merge op : 0/0
apply split merge : 1.47 us (0.5%)
LB compute : 277.27 us (92.3%)
LB move op cnt : 0
LB apply : 4.23 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.44 us (66.1%)
Info: cfl dt = 0.001602713772512792 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.4101e+05 | 262144 | 1 | 3.117e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.510888632733323 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.23971142531870235, dt = 0.001602713772512792
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.58 us (2.2%)
patch tree reduce : 1.93 us (0.6%)
gen split merge : 1.00 us (0.3%)
split / merge op : 0/0
apply split merge : 1.50 us (0.5%)
LB compute : 277.60 us (92.6%)
LB move op cnt : 0
LB apply : 4.38 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.03 us (72.6%)
Info: cfl dt = 0.0016026955670155078 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.1607e+05 | 262144 | 1 | 3.212e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.961585685105604 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.24131413909121513, dt = 0.0016026955670155078
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.79 us (1.9%)
patch tree reduce : 1.84 us (0.5%)
gen split merge : 975.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.89 us (0.5%)
LB compute : 332.52 us (93.5%)
LB move op cnt : 0
LB apply : 4.77 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.01 us (71.3%)
Info: cfl dt = 0.001602678216336136 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.9751e+05 | 262144 | 1 | 3.287e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.55294166891394 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.24291683465823063, dt = 0.001602678216336136
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.82 us (2.5%)
patch tree reduce : 1.79 us (0.7%)
gen split merge : 943.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.67 us (0.6%)
LB compute : 249.95 us (92.0%)
LB move op cnt : 0
LB apply : 4.12 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.38 us (65.2%)
Info: cfl dt = 0.0016026618150879264 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2802e+05 | 262144 | 1 | 3.166e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.22427253963777 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.24451951287456677, dt = 0.0016026618150879264
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.03 us (2.2%)
patch tree reduce : 1.77 us (0.5%)
gen split merge : 911.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.44 us (0.4%)
LB compute : 304.47 us (93.2%)
LB move op cnt : 0
LB apply : 4.19 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.56 us (66.3%)
Info: cfl dt = 0.0016026464008763969 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.4582e+05 | 262144 | 1 | 3.099e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.615804088294542 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.2461221746896547, dt = 0.0016026464008763969
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.70 us (2.3%)
patch tree reduce : 1.98 us (0.7%)
gen split merge : 960.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.45 us (0.5%)
LB compute : 274.75 us (92.5%)
LB move op cnt : 0
LB apply : 4.26 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.55 us (65.1%)
Info: cfl dt = 0.0016026320015174523 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.4523e+05 | 262144 | 1 | 3.101e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.602632401064376 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.2477248210905311, dt = 0.0016026320015174523
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.07 us (2.5%)
patch tree reduce : 1.81 us (0.7%)
gen split merge : 906.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.57 us (0.6%)
LB compute : 255.82 us (92.0%)
LB move op cnt : 0
LB apply : 4.14 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.39 us (65.1%)
Info: cfl dt = 0.001602618642036081 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.3159e+05 | 262144 | 1 | 3.152e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.302246341188788 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.24932745309204854, dt = 0.001602618642036081
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.67 us (2.8%)
patch tree reduce : 2.14 us (0.8%)
gen split merge : 985.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.60 us (0.6%)
LB compute : 246.81 us (91.4%)
LB move op cnt : 0
LB apply : 4.10 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.50 us (65.7%)
Info: cfl dt = 0.0016026063479063826 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.8429e+05 | 262144 | 1 | 3.342e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.261243031307433 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.2509300717340846, dt = 0.0016026063479063826
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.27 us (2.8%)
patch tree reduce : 1.87 us (0.7%)
gen split merge : 889.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.46 us (0.6%)
LB compute : 240.14 us (91.5%)
LB move op cnt : 0
LB apply : 4.12 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.41 us (64.8%)
Info: cfl dt = 0.001602595141448852 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.7047e+05 | 262144 | 1 | 3.402e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.956741489428293 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.252532678081991, dt = 0.001602595141448852
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.21 us (2.3%)
patch tree reduce : 1.89 us (0.6%)
gen split merge : 1.02 us (0.3%)
split / merge op : 0/0
apply split merge : 1.50 us (0.5%)
LB compute : 293.15 us (93.0%)
LB move op cnt : 0
LB apply : 3.94 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.46 us (66.3%)
Info: cfl dt = 0.0016025850315267217 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2424e+05 | 262144 | 1 | 3.180e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.14008157847042 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.2541352732234398, dt = 0.0016025850315267217
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.48 us (2.3%)
patch tree reduce : 1.78 us (0.6%)
gen split merge : 811.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.21 us (0.4%)
LB compute : 299.93 us (93.1%)
LB move op cnt : 0
LB apply : 4.31 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.57 us (66.1%)
Info: cfl dt = 0.0016025760059287988 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.5653e+05 | 262144 | 1 | 3.061e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.85071025225927 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.25573785825496653, dt = 0.0016025760059287988
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.15 us (2.8%)
patch tree reduce : 1.85 us (0.7%)
gen split merge : 1.02 us (0.4%)
split / merge op : 0/0
apply split merge : 1.41 us (0.5%)
LB compute : 237.10 us (91.3%)
LB move op cnt : 0
LB apply : 4.45 us (1.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.47 us (65.9%)
Info: cfl dt = 0.0016025680269904812 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.1265e+05 | 262144 | 1 | 3.226e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.884934247366502 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.2573404342608953, dt = 0.0016025680269904812
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.73 us (2.6%)
patch tree reduce : 2.28 us (0.8%)
gen split merge : 909.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.55 us (0.5%)
LB compute : 272.25 us (92.1%)
LB move op cnt : 0
LB apply : 4.24 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.48 us (65.6%)
Info: cfl dt = 0.001602560993914686 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.1327e+05 | 262144 | 1 | 3.223e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.89840655710502 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.2589430022878858, dt = 0.001602560993914686
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.72 us (2.4%)
patch tree reduce : 1.75 us (0.6%)
gen split merge : 958.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.35 us (0.5%)
LB compute : 259.95 us (92.1%)
LB move op cnt : 0
LB apply : 4.67 us (1.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.44 us (66.0%)
Info: cfl dt = 0.0016025547701569295 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2879e+05 | 262144 | 1 | 3.163e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.239886338226277 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.2605455632818005, dt = 0.0016025547701569295
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.33 us (2.4%)
patch tree reduce : 2.00 us (0.6%)
gen split merge : 969.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.56 us (0.5%)
LB compute : 285.37 us (92.7%)
LB move op cnt : 0
LB apply : 3.95 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.44 us (65.5%)
Info: cfl dt = 0.0016025491912915204 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.1975e+05 | 262144 | 1 | 3.198e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.04091472249733 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.2621481180519574, dt = 0.0016025491912915204
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.67 us (2.3%)
patch tree reduce : 1.92 us (0.6%)
gen split merge : 942.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.47 us (0.4%)
LB compute : 310.39 us (93.0%)
LB move op cnt : 0
LB apply : 4.47 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.63 us (68.2%)
Info: cfl dt = 0.0016025440674095938 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.3718e+05 | 262144 | 1 | 3.131e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.424469987477153 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.26375066724324897, dt = 0.0008326660900843663
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.11 us (2.3%)
patch tree reduce : 1.84 us (0.6%)
gen split merge : 894.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.42 us (0.5%)
LB compute : 282.80 us (92.7%)
LB move op cnt : 0
LB apply : 4.17 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.52 us (64.6%)
Info: cfl dt = 0.0016025417771585284 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2430e+05 | 262144 | 1 | 3.180e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9.425868031994614 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 66.76548493 (s) [Godunov][rank=0]
Info: dump to _to_trash/ramses_kh/periodic_0003.vtk [VTK Dump][rank=0]
- took 38.28 ms, bandwidth = 1.07 GB/s
amr::Godunov: t = 0.26458333333333334, dt = 0.0016025417771585284
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 8.67 us (2.9%)
patch tree reduce : 1.84 us (0.6%)
gen split merge : 1.01 us (0.3%)
split / merge op : 0/0
apply split merge : 1.33 us (0.4%)
LB compute : 275.39 us (92.2%)
LB move op cnt : 0
LB apply : 4.13 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.59 us (69.0%)
Info: cfl dt = 0.0016025360945466586 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2627e+05 | 262144 | 1 | 3.173e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.184105520268105 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.26618587511049185, dt = 0.0016025360945466586
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.27 us (2.4%)
patch tree reduce : 1.89 us (0.6%)
gen split merge : 876.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.44 us (0.5%)
LB compute : 283.49 us (92.9%)
LB move op cnt : 0
LB apply : 4.12 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.58 us (68.4%)
Info: cfl dt = 0.001602530514104948 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.7690e+05 | 262144 | 1 | 3.374e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.097651561585813 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.2677884112050385, dt = 0.001602530514104948
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.95 us (2.4%)
patch tree reduce : 1.91 us (0.6%)
gen split merge : 836.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.43 us (0.5%)
LB compute : 273.35 us (92.6%)
LB move op cnt : 0
LB apply : 3.99 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.84 us (64.9%)
Info: cfl dt = 0.0016025249846407937 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2292e+05 | 262144 | 1 | 3.186e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.110409624356485 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.26939094171914346, dt = 0.0016025249846407937
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.22 us (2.4%)
patch tree reduce : 1.98 us (0.7%)
gen split merge : 993.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.71 us (0.6%)
LB compute : 272.44 us (92.2%)
LB move op cnt : 0
LB apply : 4.38 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.83 us (70.3%)
Info: cfl dt = 0.0016025193121023827 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.1167e+05 | 262144 | 1 | 3.230e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.86276504766987 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.27099346670378427, dt = 0.0016025193121023827
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.19 us (2.5%)
patch tree reduce : 1.81 us (0.6%)
gen split merge : 1.04 us (0.4%)
split / merge op : 0/0
apply split merge : 1.56 us (0.5%)
LB compute : 266.62 us (92.3%)
LB move op cnt : 0
LB apply : 4.01 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.69 us (61.8%)
Info: cfl dt = 0.0016025132517936145 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.3442e+05 | 262144 | 1 | 3.142e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.363366912855717 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.27259598601588664, dt = 0.0016025132517936145
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 8.28 us (2.8%)
patch tree reduce : 1.97 us (0.7%)
gen split merge : 975.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.34 us (0.4%)
LB compute : 275.08 us (92.1%)
LB move op cnt : 0
LB apply : 4.12 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.74 us (68.6%)
Info: cfl dt = 0.001602506539923966 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2318e+05 | 262144 | 1 | 3.185e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.115953258404097 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.27419849926768025, dt = 0.001602506539923966
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.35 us (2.5%)
patch tree reduce : 1.66 us (0.6%)
gen split merge : 957.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.58 us (0.5%)
LB compute : 274.74 us (92.2%)
LB move op cnt : 0
LB apply : 4.60 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.50 us (67.7%)
Info: cfl dt = 0.0016024989225039805 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2231e+05 | 262144 | 1 | 3.188e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.096579724085338 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.2758010058076042, dt = 0.0016024989225039805
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.29 us (2.3%)
patch tree reduce : 1.79 us (0.6%)
gen split merge : 962.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.43 us (0.5%)
LB compute : 292.15 us (92.9%)
LB move op cnt : 0
LB apply : 4.10 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.68 us (67.8%)
Info: cfl dt = 0.0016024901786145726 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.5396e+05 | 262144 | 1 | 3.070e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.793047892188962 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.27740350473010816, dt = 0.0016024901786145726
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.97 us (2.4%)
patch tree reduce : 2.02 us (0.7%)
gen split merge : 1.31 us (0.5%)
split / merge op : 0/0
apply split merge : 1.47 us (0.5%)
LB compute : 262.76 us (92.0%)
LB move op cnt : 0
LB apply : 4.33 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.49 us (65.6%)
Info: cfl dt = 0.001602480130460897 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2960e+05 | 262144 | 1 | 3.160e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.256816637611003 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.27900599490872274, dt = 0.001602480130460897
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.31 us (2.5%)
patch tree reduce : 1.86 us (0.6%)
gen split merge : 931.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.39 us (0.5%)
LB compute : 270.06 us (92.3%)
LB move op cnt : 0
LB apply : 4.34 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.44 us (65.0%)
Info: cfl dt = 0.0016024686556206256 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.1696e+05 | 262144 | 1 | 3.209e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.978586373810973 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.2806084750391836, dt = 0.0016024686556206256
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.57 us (2.6%)
patch tree reduce : 1.84 us (0.6%)
gen split merge : 1.00 us (0.3%)
split / merge op : 0/0
apply split merge : 1.74 us (0.6%)
LB compute : 270.29 us (92.4%)
LB move op cnt : 0
LB apply : 4.06 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.31 us (62.9%)
Info: cfl dt = 0.0016024556909253584 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.1576e+05 | 262144 | 1 | 3.214e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.951970572688218 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.28221094369480426, dt = 0.0016024556909253584
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.43 us (2.5%)
patch tree reduce : 1.84 us (0.6%)
gen split merge : 924.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.38 us (0.5%)
LB compute : 270.98 us (92.3%)
LB move op cnt : 0
LB apply : 4.72 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.48 us (65.3%)
Info: cfl dt = 0.0016024412242367945 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2164e+05 | 262144 | 1 | 3.190e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.081324326887998 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.28381339938572964, dt = 0.0016024412242367945
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.63 us (2.8%)
patch tree reduce : 1.93 us (0.7%)
gen split merge : 1.02 us (0.4%)
split / merge op : 0/0
apply split merge : 1.57 us (0.6%)
LB compute : 248.38 us (91.1%)
LB move op cnt : 0
LB apply : 4.02 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.48 us (67.9%)
Info: cfl dt = 0.0016024252800086625 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2582e+05 | 262144 | 1 | 3.174e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.173198513347153 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.28541584060996644, dt = 0.0016024252800086625
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.94 us (2.6%)
patch tree reduce : 1.88 us (0.6%)
gen split merge : 957.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.59 us (0.5%)
LB compute : 277.90 us (92.2%)
LB move op cnt : 0
LB apply : 4.63 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.36 us (63.7%)
Info: cfl dt = 0.0016024079031118626 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.0284e+05 | 262144 | 1 | 3.265e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.667367116051192 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.2870182658899751, dt = 0.0016024079031118626
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 17.77 us (6.6%)
patch tree reduce : 1.96 us (0.7%)
gen split merge : 888.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.42 us (0.5%)
LB compute : 235.84 us (87.6%)
LB move op cnt : 0
LB apply : 4.42 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.42 us (64.1%)
Info: cfl dt = 0.0016023891438644651 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.7197e+05 | 262144 | 1 | 3.396e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.987731155940853 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.2886206737930869, dt = 0.0016023891438644651
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.90 us (2.2%)
patch tree reduce : 2.00 us (0.6%)
gen split merge : 973.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.76 us (0.6%)
LB compute : 288.37 us (92.9%)
LB move op cnt : 0
LB apply : 4.01 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.56 us (68.4%)
Info: cfl dt = 0.001602369051508574 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 6.8543e+05 | 262144 | 1 | 3.825e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.083249512083194 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.2902230629369514, dt = 0.001602369051508574
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.13 us (2.8%)
patch tree reduce : 2.06 us (0.8%)
gen split merge : 946.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.48 us (0.6%)
LB compute : 233.81 us (91.2%)
LB move op cnt : 0
LB apply : 4.15 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.40 us (64.4%)
Info: cfl dt = 0.0016023476665227067 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2999e+05 | 262144 | 1 | 3.158e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.26410910533331 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.29182543198845995, dt = 0.0016023476665227067
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.98 us (2.4%)
patch tree reduce : 1.91 us (0.6%)
gen split merge : 954.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.28 us (0.4%)
LB compute : 274.62 us (92.5%)
LB move op cnt : 0
LB apply : 3.96 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.80 us (65.5%)
Info: cfl dt = 0.0016023250145430188 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.7642e+05 | 262144 | 1 | 3.376e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.084955759683364 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.2934277796549827, dt = 0.0016023250145430188
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.23 us (2.5%)
patch tree reduce : 1.96 us (0.7%)
gen split merge : 1.02 us (0.4%)
split / merge op : 0/0
apply split merge : 1.72 us (0.6%)
LB compute : 262.30 us (92.0%)
LB move op cnt : 0
LB apply : 4.11 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.59 us (68.4%)
Info: cfl dt = 0.0016023011227223423 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.1793e+05 | 262144 | 1 | 3.205e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.998292357296013 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.2950301046695257, dt = 0.0016023011227223423
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.93 us (2.6%)
patch tree reduce : 1.96 us (0.7%)
gen split merge : 963.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.47 us (0.5%)
LB compute : 246.72 us (91.5%)
LB move op cnt : 0
LB apply : 4.50 us (1.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.51 us (67.7%)
Info: cfl dt = 0.0016022760230872191 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2667e+05 | 262144 | 1 | 3.171e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.190175669689385 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.29663240579224803, dt = 0.0016022760230872191
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.75 us (2.3%)
patch tree reduce : 1.75 us (0.6%)
gen split merge : 894.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.40 us (0.5%)
LB compute : 277.05 us (92.7%)
LB move op cnt : 0
LB apply : 4.27 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.87 us (65.1%)
Info: cfl dt = 0.0016022497563128008 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.1794e+05 | 262144 | 1 | 3.205e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.997808600481353 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.29823468181533525, dt = 0.0016022497563128008
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.96 us (2.3%)
patch tree reduce : 1.77 us (0.6%)
gen split merge : 1.10 us (0.4%)
split / merge op : 0/0
apply split merge : 1.55 us (0.5%)
LB compute : 282.92 us (92.8%)
LB move op cnt : 0
LB apply : 4.09 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.44 us (66.4%)
Info: cfl dt = 0.001602222383191543 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2144e+05 | 262144 | 1 | 3.191e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.074700742250723 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.29983693157164804, dt = 0.001602222383191543
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.67 us (2.1%)
patch tree reduce : 1.76 us (0.5%)
gen split merge : 1.12 us (0.3%)
split / merge op : 0/0
apply split merge : 1.49 us (0.5%)
LB compute : 302.53 us (93.1%)
LB move op cnt : 0
LB apply : 4.50 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.60 us (66.5%)
Info: cfl dt = 0.001602193997241775 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2344e+05 | 262144 | 1 | 3.184e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.1183846448036 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.30143915395483956, dt = 0.001602193997241775
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.83 us (2.3%)
patch tree reduce : 1.81 us (0.6%)
gen split merge : 1.05 us (0.3%)
split / merge op : 0/0
apply split merge : 1.57 us (0.5%)
LB compute : 280.19 us (92.7%)
LB move op cnt : 0
LB apply : 4.36 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.38 us (64.7%)
Info: cfl dt = 0.0016021647133325414 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2059e+05 | 262144 | 1 | 3.195e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.0551655127066 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.3030413479520813, dt = 0.0016021647133325414
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.18 us (2.4%)
patch tree reduce : 1.83 us (0.6%)
gen split merge : 1.01 us (0.3%)
split / merge op : 0/0
apply split merge : 1.60 us (0.5%)
LB compute : 270.85 us (92.3%)
LB move op cnt : 0
LB apply : 4.37 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.43 us (65.7%)
Info: cfl dt = 0.001602134649340823 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2723e+05 | 262144 | 1 | 3.169e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.201040765790044 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.30464351266541384, dt = 0.001602134649340823
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.05 us (2.3%)
patch tree reduce : 1.86 us (0.6%)
gen split merge : 981.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.36 us (0.5%)
LB compute : 279.24 us (92.6%)
LB move op cnt : 0
LB apply : 4.24 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.49 us (67.4%)
Info: cfl dt = 0.0016021039177207764 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2072e+05 | 262144 | 1 | 3.194e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.05753138909556 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.3062456473147547, dt = 0.0016021039177207764
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.61 us (2.5%)
patch tree reduce : 1.68 us (0.5%)
gen split merge : 1.08 us (0.3%)
split / merge op : 0/0
apply split merge : 1.44 us (0.5%)
LB compute : 285.08 us (92.4%)
LB move op cnt : 0
LB apply : 4.73 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.61 us (69.0%)
Info: cfl dt = 0.0016020726252469596 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2236e+05 | 262144 | 1 | 3.188e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.093084323182392 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.30784775123247543, dt = 0.0016020726252469596
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.39 us (2.9%)
patch tree reduce : 2.00 us (0.8%)
gen split merge : 1.06 us (0.4%)
split / merge op : 0/0
apply split merge : 1.62 us (0.6%)
LB compute : 235.28 us (91.2%)
LB move op cnt : 0
LB apply : 4.29 us (1.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.40 us (65.0%)
Info: cfl dt = 0.0016020408737602437 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.1750e+05 | 262144 | 1 | 3.207e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.985955987982816 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.3094498238577224, dt = 0.0016020408737602437
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.05 us (2.7%)
patch tree reduce : 2.25 us (0.9%)
gen split merge : 1.01 us (0.4%)
split / merge op : 0/0
apply split merge : 1.52 us (0.6%)
LB compute : 233.32 us (91.0%)
LB move op cnt : 0
LB apply : 4.57 us (1.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.45 us (66.0%)
Info: cfl dt = 0.001602008766153024 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.2996e+05 | 262144 | 1 | 3.591e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.059703844019424 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.31105186473148266, dt = 0.001602008766153024
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.83 us (2.4%)
patch tree reduce : 2.08 us (0.7%)
gen split merge : 884.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.72 us (0.6%)
LB compute : 267.52 us (92.2%)
LB move op cnt : 0
LB apply : 4.12 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.38 us (63.8%)
Info: cfl dt = 0.0016019764022026243 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2374e+05 | 262144 | 1 | 3.182e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.122587333076755 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.3126538734976357, dt = 0.0016019764022026243
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.96 us (2.1%)
patch tree reduce : 1.96 us (0.6%)
gen split merge : 1.20 us (0.4%)
split / merge op : 0/0
apply split merge : 1.51 us (0.5%)
LB compute : 302.19 us (93.0%)
LB move op cnt : 0
LB apply : 4.28 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.39 us (64.5%)
Info: cfl dt = 0.001601943887973894 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.4750e+05 | 262144 | 1 | 3.507e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.444927898939852 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.3142558498998383, dt = 0.001601943887973894
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.81 us (2.2%)
patch tree reduce : 2.01 us (0.7%)
gen split merge : 793.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.39 us (0.5%)
LB compute : 285.05 us (92.8%)
LB move op cnt : 0
LB apply : 4.17 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.60 us (67.9%)
Info: cfl dt = 0.001601911178735256 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.5801e+05 | 262144 | 1 | 3.458e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.675649400112516 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.3158577937878122, dt = 0.001601911178735256
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.50 us (2.4%)
patch tree reduce : 1.91 us (0.6%)
gen split merge : 1.13 us (0.4%)
split / merge op : 0/0
apply split merge : 1.52 us (0.5%)
LB compute : 285.96 us (92.6%)
LB move op cnt : 0
LB apply : 4.32 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.44 us (66.7%)
Info: cfl dt = 0.0016018756770598823 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.6007e+05 | 262144 | 1 | 3.449e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.720604304660437 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.31745970496654746, dt = 0.0016018756770598823
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 11.14 us (3.3%)
patch tree reduce : 3.53 us (1.0%)
gen split merge : 1.70 us (0.5%)
split / merge op : 0/0
apply split merge : 2.88 us (0.8%)
LB compute : 301.53 us (88.8%)
LB move op cnt : 0
LB apply : 8.04 us (2.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.51 us (67.3%)
Info: cfl dt = 0.0016018409803932876 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.8743e+05 | 262144 | 1 | 3.329e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.32217020399819 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.31906158064360735, dt = 0.0016018409803932876
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.45 us (2.5%)
patch tree reduce : 1.68 us (0.6%)
gen split merge : 918.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.51 us (0.5%)
LB compute : 270.29 us (92.2%)
LB move op cnt : 0
LB apply : 4.24 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.51 us (66.7%)
Info: cfl dt = 0.0016018071617333479 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2213e+05 | 262144 | 1 | 3.189e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.085068100640722 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.32066342162400063, dt = 0.0016018071617333479
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.29 us (2.7%)
patch tree reduce : 1.98 us (0.7%)
gen split merge : 827.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.38 us (0.5%)
LB compute : 245.13 us (91.7%)
LB move op cnt : 0
LB apply : 4.53 us (1.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.48 us (66.2%)
Info: cfl dt = 0.0016017742784902361 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.2549e+05 | 262144 | 1 | 3.613e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.95900777287185 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.322265228785734, dt = 0.0016017742784902361
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.11 us (2.5%)
patch tree reduce : 1.76 us (0.6%)
gen split merge : 982.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.46 us (0.5%)
LB compute : 263.01 us (92.2%)
LB move op cnt : 0
LB apply : 4.69 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.38 us (64.8%)
Info: cfl dt = 0.0016017423768266406 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.1415e+05 | 262144 | 1 | 3.220e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.908813499582944 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.3238670030642242, dt = 0.0016017423768266406
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.48 us (2.5%)
patch tree reduce : 1.86 us (0.6%)
gen split merge : 1.20 us (0.4%)
split / merge op : 0/0
apply split merge : 1.43 us (0.5%)
LB compute : 275.15 us (92.2%)
LB move op cnt : 0
LB apply : 4.35 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.41 us (64.4%)
Info: cfl dt = 0.001601711496285393 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.1156e+05 | 262144 | 1 | 3.230e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.851471338365275 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.32546874544105087, dt = 0.001601711496285393
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.94 us (2.4%)
patch tree reduce : 1.83 us (0.6%)
gen split merge : 984.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.63 us (0.6%)
LB compute : 267.40 us (92.3%)
LB move op cnt : 0
LB apply : 4.61 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.81 us (65.0%)
Info: cfl dt = 0.001601681681915918 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2914e+05 | 262144 | 1 | 3.162e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.23783974396148 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.3270704569373363, dt = 0.001601681681915918
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.75 us (2.7%)
patch tree reduce : 1.90 us (0.7%)
gen split merge : 1.06 us (0.4%)
split / merge op : 0/0
apply split merge : 1.49 us (0.5%)
LB compute : 268.49 us (92.2%)
LB move op cnt : 0
LB apply : 3.85 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.44 us (66.3%)
Info: cfl dt = 0.0016016529714352628 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2506e+05 | 262144 | 1 | 3.177e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.147923663767013 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.3286721386192522, dt = 0.0016016529714352628
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.63 us (2.3%)
patch tree reduce : 1.87 us (0.6%)
gen split merge : 923.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.46 us (0.4%)
LB compute : 313.87 us (93.2%)
LB move op cnt : 0
LB apply : 4.32 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.53 us (67.6%)
Info: cfl dt = 0.0016016253985030235 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2845e+05 | 262144 | 1 | 3.164e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.222086639560377 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.3302737915906875, dt = 0.0016016253985030235
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.37 us (2.5%)
patch tree reduce : 1.94 us (0.7%)
gen split merge : 938.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.53 us (0.5%)
LB compute : 272.40 us (92.4%)
LB move op cnt : 0
LB apply : 4.13 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.56 us (66.8%)
Info: cfl dt = 0.0016015989941759593 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.1016e+05 | 262144 | 1 | 3.236e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.819452991221322 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.3318754169891905, dt = 0.0016015989941759593
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.87 us (2.5%)
patch tree reduce : 1.84 us (0.7%)
gen split merge : 954.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.51 us (0.5%)
LB compute : 257.27 us (92.1%)
LB move op cnt : 0
LB apply : 4.16 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.95 us (64.0%)
Info: cfl dt = 0.001601573775884245 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.1549e+05 | 262144 | 1 | 3.215e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.93637794064488 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.33347701598336643, dt = 0.001601573775884245
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.18 us (2.3%)
patch tree reduce : 1.99 us (0.6%)
gen split merge : 958.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.75 us (0.6%)
LB compute : 283.62 us (92.6%)
LB move op cnt : 0
LB apply : 4.16 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.52 us (67.9%)
Info: cfl dt = 0.0016015497392883426 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.0218e+05 | 262144 | 1 | 3.268e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.64331855572256 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.3350785897592507, dt = 0.0016015497392883426
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.89 us (2.3%)
patch tree reduce : 2.12 us (0.7%)
gen split merge : 870.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.40 us (0.5%)
LB compute : 277.71 us (92.6%)
LB move op cnt : 0
LB apply : 4.10 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.44 us (65.5%)
Info: cfl dt = 0.0016015268443224833 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.1827e+05 | 262144 | 1 | 3.204e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.99694010152973 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.33668013949853903, dt = 0.0016015268443224833
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.07 us (2.7%)
patch tree reduce : 1.94 us (0.7%)
gen split merge : 954.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.34 us (0.5%)
LB compute : 244.04 us (91.6%)
LB move op cnt : 0
LB apply : 4.24 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.37 us (65.2%)
Info: cfl dt = 0.001601503915120408 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.4320e+05 | 262144 | 1 | 3.109e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.544983872162078 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.3382816663428615, dt = 0.001601503915120408
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 8.43 us (2.7%)
patch tree reduce : 1.82 us (0.6%)
gen split merge : 850.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.42 us (0.5%)
LB compute : 284.26 us (92.5%)
LB move op cnt : 0
LB apply : 4.07 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.43 us (64.3%)
Info: cfl dt = 0.0016014808660209762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2841e+05 | 262144 | 1 | 3.164e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.219584997376327 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.3398831702579819, dt = 0.0016014808660209762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 8.90 us (3.0%)
patch tree reduce : 2.44 us (0.8%)
gen split merge : 1.02 us (0.4%)
split / merge op : 0/0
apply split merge : 1.37 us (0.5%)
LB compute : 266.95 us (91.5%)
LB move op cnt : 0
LB apply : 4.23 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.48 us (64.2%)
Info: cfl dt = 0.0016014589133295047 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.1913e+05 | 262144 | 1 | 3.200e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.015217849737336 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.3414846511240029, dt = 0.0016014589133295047
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.54 us (2.6%)
patch tree reduce : 1.95 us (0.7%)
gen split merge : 870.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.61 us (0.5%)
LB compute : 269.30 us (92.1%)
LB move op cnt : 0
LB apply : 4.27 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.42 us (65.2%)
Info: cfl dt = 0.0016014380930513008 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.6311e+05 | 262144 | 1 | 3.435e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.78294938540912 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.3430861100373324, dt = 0.0016014380930513008
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 12.71 us (4.3%)
patch tree reduce : 2.02 us (0.7%)
gen split merge : 1.26 us (0.4%)
split / merge op : 0/0
apply split merge : 1.46 us (0.5%)
LB compute : 266.49 us (90.4%)
LB move op cnt : 0
LB apply : 4.17 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.50 us (66.2%)
Info: cfl dt = 0.001601418415676683 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2077e+05 | 262144 | 1 | 3.194e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.05063467004174 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.3446875481303837, dt = 0.001601418415676683
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.52 us (3.0%)
patch tree reduce : 1.86 us (0.7%)
gen split merge : 1.01 us (0.4%)
split / merge op : 0/0
apply split merge : 1.31 us (0.5%)
LB compute : 230.33 us (91.1%)
LB move op cnt : 0
LB apply : 4.35 us (1.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.05 us (68.0%)
Info: cfl dt = 0.0016013998537284632 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.1414e+05 | 262144 | 1 | 3.220e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.904619204207116 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.3462889665460604, dt = 0.0016013998537284632
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.91 us (2.0%)
patch tree reduce : 1.83 us (0.5%)
gen split merge : 967.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.67 us (0.5%)
LB compute : 319.91 us (93.5%)
LB move op cnt : 0
LB apply : 4.14 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.59 us (68.1%)
Info: cfl dt = 0.0016013824120977886 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2968e+05 | 262144 | 1 | 3.160e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.246211230793268 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.3478903663997889, dt = 0.0016013824120977886
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.19 us (2.7%)
patch tree reduce : 2.15 us (0.8%)
gen split merge : 1.08 us (0.4%)
split / merge op : 0/0
apply split merge : 1.65 us (0.6%)
LB compute : 240.23 us (91.3%)
LB move op cnt : 0
LB apply : 4.39 us (1.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.52 us (66.4%)
Info: cfl dt = 0.0016013660677198886 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.3238e+05 | 262144 | 1 | 3.149e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.305305675556905 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.34949174881188666, dt = 0.0016013660677198886
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.15 us (2.4%)
patch tree reduce : 1.95 us (0.6%)
gen split merge : 938.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.41 us (0.5%)
LB compute : 278.65 us (92.5%)
LB move op cnt : 0
LB apply : 4.11 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.46 us (65.7%)
Info: cfl dt = 0.0016013507942590534 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.1573e+05 | 262144 | 1 | 3.214e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.939111509390436 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.35109311487960654, dt = 0.0016013507942590534
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 8.64 us (2.8%)
patch tree reduce : 1.81 us (0.6%)
gen split merge : 979.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.36 us (0.4%)
LB compute : 288.36 us (92.4%)
LB move op cnt : 0
LB apply : 4.38 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.59 us (68.9%)
Info: cfl dt = 0.0016013365488530833 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2725e+05 | 262144 | 1 | 3.169e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.192329921565783 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.3526944656738656, dt = 0.0016013365488530833
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.24 us (2.7%)
patch tree reduce : 1.84 us (0.7%)
gen split merge : 989.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.64 us (0.6%)
LB compute : 243.23 us (91.5%)
LB move op cnt : 0
LB apply : 3.89 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.59 us (67.0%)
Info: cfl dt = 0.0016013232719616754 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.1871e+05 | 262144 | 1 | 3.202e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.004229360976126 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.35429580222271867, dt = 0.0016013232719616754
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.56 us (2.9%)
patch tree reduce : 1.70 us (0.6%)
gen split merge : 944.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.41 us (0.5%)
LB compute : 242.09 us (91.4%)
LB move op cnt : 0
LB apply : 3.99 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.85 us (66.0%)
Info: cfl dt = 0.001601310890567654 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.3960e+05 | 262144 | 1 | 3.122e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.463606629819157 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.35589712549468033, dt = 0.001601310890567654
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.37 us (2.6%)
patch tree reduce : 1.90 us (0.7%)
gen split merge : 900.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.31 us (0.5%)
LB compute : 256.58 us (92.0%)
LB move op cnt : 0
LB apply : 4.07 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.46 us (66.9%)
Info: cfl dt = 0.0016012993219697512 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.0752e+05 | 262144 | 1 | 3.246e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.757810371052084 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.357498436385248, dt = 0.0016012993219697512
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.70 us (2.9%)
patch tree reduce : 1.79 us (0.7%)
gen split merge : 984.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.39 us (0.5%)
LB compute : 246.54 us (91.3%)
LB move op cnt : 0
LB apply : 4.72 us (1.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.60 us (66.7%)
Info: cfl dt = 0.001601288478049059 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.5532e+05 | 262144 | 1 | 3.065e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.808982109736053 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.3590997357072177, dt = 0.001601288478049059
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.97 us (2.4%)
patch tree reduce : 1.99 us (0.7%)
gen split merge : 1.26 us (0.4%)
split / merge op : 0/0
apply split merge : 1.51 us (0.5%)
LB compute : 269.98 us (92.2%)
LB move op cnt : 0
LB apply : 4.26 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.49 us (63.9%)
Info: cfl dt = 0.0016012782690770656 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.8740e+05 | 262144 | 1 | 3.329e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.315194569154958 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.3607010241852668, dt = 0.0016012782690770656
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.41 us (2.3%)
patch tree reduce : 1.73 us (0.5%)
gen split merge : 997.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.65 us (0.5%)
LB compute : 295.26 us (92.9%)
LB move op cnt : 0
LB apply : 4.31 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.80 us (64.6%)
Info: cfl dt = 0.0016012686053856653 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2404e+05 | 262144 | 1 | 3.181e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.12076595849227 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.36230230245434386, dt = 0.0016012686053856653
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.85 us (2.3%)
patch tree reduce : 1.88 us (0.6%)
gen split merge : 962.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.62 us (0.5%)
LB compute : 273.85 us (92.5%)
LB move op cnt : 0
LB apply : 4.24 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.51 us (66.8%)
Info: cfl dt = 0.0016012593988566166 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2473e+05 | 262144 | 1 | 3.179e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.135775841295462 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.36390357105972954, dt = 0.0016012593988566166
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.88 us (2.6%)
patch tree reduce : 1.97 us (0.8%)
gen split merge : 776.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.38 us (0.5%)
LB compute : 241.04 us (91.7%)
LB move op cnt : 0
LB apply : 4.22 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.48 us (66.4%)
Info: cfl dt = 0.0016012505632472084 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2243e+05 | 262144 | 1 | 3.187e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.085293514304574 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.36550483045858617, dt = 0.0016012505632472084
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.85 us (2.3%)
patch tree reduce : 1.93 us (0.7%)
gen split merge : 981.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.35 us (0.5%)
LB compute : 273.52 us (92.6%)
LB move op cnt : 0
LB apply : 4.51 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.42 us (64.8%)
Info: cfl dt = 0.0016012420141178355 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2302e+05 | 262144 | 1 | 3.185e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.098109955154566 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.3671060810218334, dt = 0.0016012420141178355
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.46 us (2.8%)
patch tree reduce : 1.87 us (0.7%)
gen split merge : 926.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.34 us (0.5%)
LB compute : 243.41 us (91.6%)
LB move op cnt : 0
LB apply : 4.16 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.38 us (65.9%)
Info: cfl dt = 0.0016012336688118719 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2068e+05 | 262144 | 1 | 3.194e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.046547975016185 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.3687073230359512, dt = 0.0016012336688118719
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.28 us (2.7%)
patch tree reduce : 2.12 us (0.8%)
gen split merge : 1.24 us (0.5%)
split / merge op : 0/0
apply split merge : 1.52 us (0.6%)
LB compute : 249.66 us (91.7%)
LB move op cnt : 0
LB apply : 3.98 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.66 us (69.7%)
Info: cfl dt = 0.0016012254464421265 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3061e+05 | 262144 | 1 | 3.588e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.0657337425804 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.3703085567047631, dt = 0.0016012254464421265
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.56 us (2.8%)
patch tree reduce : 1.84 us (0.7%)
gen split merge : 910.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.62 us (0.6%)
LB compute : 248.48 us (91.3%)
LB move op cnt : 0
LB apply : 4.79 us (1.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.49 us (65.6%)
Info: cfl dt = 0.0016012172688763468 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2326e+05 | 262144 | 1 | 3.184e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.102989716020943 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.37190978215120524, dt = 0.0016012172688763468
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.79 us (2.7%)
patch tree reduce : 1.79 us (0.6%)
gen split merge : 964.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.36 us (0.5%)
LB compute : 271.15 us (92.3%)
LB move op cnt : 0
LB apply : 4.29 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.80 us (72.0%)
Info: cfl dt = 0.001601209062158391 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.1145e+05 | 262144 | 1 | 3.231e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.843224236746625 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.3735109994200816, dt = 0.001601209062158391
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.57 us (2.9%)
patch tree reduce : 1.94 us (0.7%)
gen split merge : 1.00 us (0.4%)
split / merge op : 0/0
apply split merge : 1.63 us (0.6%)
LB compute : 237.91 us (91.0%)
LB move op cnt : 0
LB apply : 4.19 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.45 us (65.6%)
Info: cfl dt = 0.0016012007580546194 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2877e+05 | 262144 | 1 | 3.163e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.224057522919697 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.37511220848224, dt = 0.0016012007580546194
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.46 us (2.2%)
patch tree reduce : 1.68 us (0.6%)
gen split merge : 806.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.12 us (0.4%)
LB compute : 269.85 us (93.0%)
LB move op cnt : 0
LB apply : 4.11 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.93 us (66.6%)
Info: cfl dt = 0.0016011922960076812 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.7623e+05 | 262144 | 1 | 3.377e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.068702706947736 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.3767134092402946, dt = 0.0016011922960076812
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.89 us (2.4%)
patch tree reduce : 1.82 us (0.6%)
gen split merge : 990.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.43 us (0.5%)
LB compute : 260.65 us (92.3%)
LB move op cnt : 0
LB apply : 4.05 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.83 us (65.7%)
Info: cfl dt = 0.0016011836239350305 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.4601e+05 | 262144 | 1 | 3.099e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.60287489506651 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.3783146015363023, dt = 0.0016011836239350305
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.77 us (2.8%)
patch tree reduce : 2.08 us (0.7%)
gen split merge : 996.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.53 us (0.5%)
LB compute : 257.04 us (91.8%)
LB move op cnt : 0
LB apply : 3.89 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.46 us (65.5%)
Info: cfl dt = 0.001601174697989259 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.1962e+05 | 262144 | 1 | 3.198e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.022542635252993 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.37991578516023733, dt = 0.001601174697989259
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.66 us (2.7%)
patch tree reduce : 2.03 us (0.7%)
gen split merge : 997.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.79 us (0.6%)
LB compute : 257.84 us (91.6%)
LB move op cnt : 0
LB apply : 4.39 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.47 us (65.8%)
Info: cfl dt = 0.0016011654823490308 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.1762e+05 | 262144 | 1 | 3.206e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.978471899251137 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.3815169598582266, dt = 0.0016011654823490308
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.90 us (2.9%)
patch tree reduce : 1.82 us (0.7%)
gen split merge : 887.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.39 us (0.5%)
LB compute : 251.59 us (91.6%)
LB move op cnt : 0
LB apply : 4.28 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.85 us (66.8%)
Info: cfl dt = 0.001601155949595148 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.4359e+05 | 262144 | 1 | 3.107e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.5494779466506 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.3831181253405756, dt = 0.001601155949595148
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.36 us (2.7%)
patch tree reduce : 1.75 us (0.6%)
gen split merge : 1.08 us (0.4%)
split / merge op : 0/0
apply split merge : 1.41 us (0.5%)
LB compute : 254.88 us (91.8%)
LB move op cnt : 0
LB apply : 4.23 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.44 us (65.2%)
Info: cfl dt = 0.0016011460818979996 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2616e+05 | 262144 | 1 | 3.173e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.16611829902732 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.38471928129017074, dt = 0.0016011460818979996
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.38 us (2.8%)
patch tree reduce : 1.72 us (0.6%)
gen split merge : 862.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.19 us (0.4%)
LB compute : 241.71 us (91.4%)
LB move op cnt : 0
LB apply : 4.76 us (1.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.45 us (65.6%)
Info: cfl dt = 0.0016011358727820578 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.4607e+05 | 262144 | 1 | 3.098e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.603658647905803 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.38632042737206873, dt = 0.0016011358727820578
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.32 us (2.7%)
patch tree reduce : 2.01 us (0.7%)
gen split merge : 1.05 us (0.4%)
split / merge op : 0/0
apply split merge : 1.75 us (0.6%)
LB compute : 248.56 us (91.7%)
LB move op cnt : 0
LB apply : 4.03 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.40 us (65.0%)
Info: cfl dt = 0.0016011253287173991 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2231e+05 | 262144 | 1 | 3.188e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.08119084499789 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.3879215632448508, dt = 0.0016011253287173991
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.05 us (2.7%)
patch tree reduce : 2.16 us (0.8%)
gen split merge : 999.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.46 us (0.6%)
LB compute : 236.19 us (91.4%)
LB move op cnt : 0
LB apply : 4.20 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.43 us (64.4%)
Info: cfl dt = 0.001601114470122607 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.6170e+05 | 262144 | 1 | 3.442e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.74830866795624 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.3895226885735682, dt = 0.001601114470122607
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.84 us (2.5%)
patch tree reduce : 2.04 us (0.7%)
gen split merge : 826.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.45 us (0.5%)
LB compute : 252.45 us (91.8%)
LB move op cnt : 0
LB apply : 4.40 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.52 us (68.6%)
Info: cfl dt = 0.0016011033342757898 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2276e+05 | 262144 | 1 | 3.186e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.0907758150518 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.3911238030436908, dt = 0.0016011033342757898
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.99 us (2.5%)
patch tree reduce : 1.66 us (0.6%)
gen split merge : 877.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.70 us (0.6%)
LB compute : 253.86 us (92.0%)
LB move op cnt : 0
LB apply : 4.27 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.63 us (68.5%)
Info: cfl dt = 0.001601091978273763 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.0423e+05 | 262144 | 1 | 3.260e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.683352454321632 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.3927249063779666, dt = 0.001601091978273763
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.66 us (2.3%)
patch tree reduce : 1.40 us (0.5%)
gen split merge : 647.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.07 us (0.4%)
LB compute : 272.43 us (93.1%)
LB move op cnt : 0
LB apply : 4.33 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.81 us (71.1%)
Info: cfl dt = 0.0016010804775843327 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.1687e+05 | 262144 | 1 | 3.209e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.9611615646466 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.3943259983562403, dt = 0.0016010804775843327
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.68 us (2.4%)
patch tree reduce : 1.85 us (0.6%)
gen split merge : 1.01 us (0.3%)
split / merge op : 0/0
apply split merge : 1.49 us (0.5%)
LB compute : 303.52 us (92.9%)
LB move op cnt : 0
LB apply : 4.25 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.46 us (65.9%)
Info: cfl dt = 0.001601068923909221 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.5978e+05 | 262144 | 1 | 3.450e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.70570773859996 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.39592707883382466, dt = 0.000947921166175314
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.14 us (2.3%)
patch tree reduce : 1.97 us (0.6%)
gen split merge : 862.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.55 us (0.5%)
LB compute : 294.20 us (92.9%)
LB move op cnt : 0
LB apply : 4.06 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.49 us (66.4%)
Info: cfl dt = 0.001601066636316225 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.1017e+05 | 262144 | 1 | 3.236e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10.546547296175977 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 94.181563431 (s) [Godunov][rank=0]
Info: dump to _to_trash/ramses_kh/periodic_0004.vtk [VTK Dump][rank=0]
- took 35.73 ms, bandwidth = 1.14 GB/s
amr::Godunov: t = 0.396875, dt = 0.001601066636316225
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 8.19 us (2.8%)
patch tree reduce : 2.09 us (0.7%)
gen split merge : 1.33 us (0.4%)
split / merge op : 0/0
apply split merge : 1.27 us (0.4%)
LB compute : 274.05 us (92.1%)
LB move op cnt : 0
LB apply : 4.15 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.53 us (65.7%)
Info: cfl dt = 0.001601053119239654 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.3372e+05 | 262144 | 1 | 3.144e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.33117503217231 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.3984760666363162, dt = 0.001601053119239654
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 8.32 us (2.7%)
patch tree reduce : 1.69 us (0.5%)
gen split merge : 1.02 us (0.3%)
split / merge op : 0/0
apply split merge : 1.37 us (0.4%)
LB compute : 290.08 us (92.6%)
LB move op cnt : 0
LB apply : 4.04 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.67 us (61.8%)
Info: cfl dt = 0.0016010400506214263 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2634e+05 | 262144 | 1 | 3.172e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.168738222971804 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.4000771197555558, dt = 0.0016010400506214263
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.84 us (2.9%)
patch tree reduce : 1.84 us (0.7%)
gen split merge : 1.01 us (0.4%)
split / merge op : 0/0
apply split merge : 1.42 us (0.5%)
LB compute : 244.67 us (91.3%)
LB move op cnt : 0
LB apply : 4.26 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.67 us (68.3%)
Info: cfl dt = 0.0016010278856867068 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2092e+05 | 262144 | 1 | 3.193e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.049461566010457 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.40167815980617727, dt = 0.0016010278856867068
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.04 us (2.2%)
patch tree reduce : 1.75 us (0.5%)
gen split merge : 1.06 us (0.3%)
split / merge op : 0/0
apply split merge : 1.36 us (0.4%)
LB compute : 304.59 us (93.2%)
LB move op cnt : 0
LB apply : 4.21 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.54 us (66.0%)
Info: cfl dt = 0.0016010168310408612 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2324e+05 | 262144 | 1 | 3.184e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.10038354040961 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.403279187691864, dt = 0.0016010168310408612
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.07 us (2.3%)
patch tree reduce : 1.95 us (0.6%)
gen split merge : 847.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.39 us (0.5%)
LB compute : 284.60 us (92.7%)
LB move op cnt : 0
LB apply : 3.98 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.37 us (62.4%)
Info: cfl dt = 0.0016010069945716677 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.5373e+05 | 262144 | 1 | 3.478e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.572027004469263 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.40488020452290485, dt = 0.0016010069945716677
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.87 us (2.1%)
patch tree reduce : 1.88 us (0.6%)
gen split merge : 1.01 us (0.3%)
split / merge op : 0/0
apply split merge : 1.47 us (0.5%)
LB compute : 298.25 us (93.1%)
LB move op cnt : 0
LB apply : 4.21 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.58 us (66.2%)
Info: cfl dt = 0.001600998362382819 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3847e+05 | 262144 | 1 | 3.550e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.236294887772377 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.4064812115174765, dt = 0.001600998362382819
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.20 us (2.2%)
patch tree reduce : 1.88 us (0.6%)
gen split merge : 996.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.42 us (0.4%)
LB compute : 311.17 us (93.2%)
LB move op cnt : 0
LB apply : 4.53 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.59 us (66.9%)
Info: cfl dt = 0.0016009908408472467 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.1652e+05 | 262144 | 1 | 3.210e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.9523689008454 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.4080822098798593, dt = 0.0016009908408472467
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 8.00 us (2.4%)
patch tree reduce : 1.98 us (0.6%)
gen split merge : 973.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.56 us (0.5%)
LB compute : 314.77 us (93.1%)
LB move op cnt : 0
LB apply : 4.16 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.57 us (66.9%)
Info: cfl dt = 0.0016009843107603306 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.1584e+05 | 262144 | 1 | 3.213e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.937167299098657 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.4096832007207066, dt = 0.0016009843107603306
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.90 us (2.4%)
patch tree reduce : 1.65 us (0.6%)
gen split merge : 1.22 us (0.4%)
split / merge op : 0/0
apply split merge : 1.49 us (0.5%)
LB compute : 261.89 us (92.2%)
LB move op cnt : 0
LB apply : 4.19 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.76 us (64.8%)
Info: cfl dt = 0.0016009786607424394 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.8478e+05 | 262144 | 1 | 3.340e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.254323766581397 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.4112841850314669, dt = 0.0016009786607424394
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.48 us (2.4%)
patch tree reduce : 1.84 us (0.6%)
gen split merge : 1.08 us (0.4%)
split / merge op : 0/0
apply split merge : 1.31 us (0.4%)
LB compute : 282.55 us (92.5%)
LB move op cnt : 0
LB apply : 4.23 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.42 us (65.0%)
Info: cfl dt = 0.0016009738370463252 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.5332e+05 | 262144 | 1 | 3.072e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.761234226219354 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.41288516369220934, dt = 0.0016009738370463252
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.51 us (2.4%)
patch tree reduce : 1.59 us (0.6%)
gen split merge : 760.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.20 us (0.4%)
LB compute : 254.87 us (92.6%)
LB move op cnt : 0
LB apply : 4.04 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.61 us (67.3%)
Info: cfl dt = 0.0016009698496969886 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.1119e+05 | 262144 | 1 | 3.232e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.83474399316625 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.41448613752925567, dt = 0.0016009698496969886
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.20 us (1.5%)
patch tree reduce : 1.79 us (0.4%)
gen split merge : 986.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.48 us (0.3%)
LB compute : 473.89 us (95.5%)
LB move op cnt : 0
LB apply : 4.22 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.56 us (67.3%)
Info: cfl dt = 0.0016009667843901254 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2694e+05 | 262144 | 1 | 3.170e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.18102836203038 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.41608710737895266, dt = 0.0016009667843901254
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.46 us (2.4%)
patch tree reduce : 1.93 us (0.6%)
gen split merge : 949.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.51 us (0.5%)
LB compute : 286.78 us (92.8%)
LB move op cnt : 0
LB apply : 3.94 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.38 us (64.0%)
Info: cfl dt = 0.0016009647829416814 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.3598e+05 | 262144 | 1 | 3.136e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.379714460780658 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.4176880741633428, dt = 0.0016009647829416814
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.57 us (2.4%)
patch tree reduce : 1.80 us (0.6%)
gen split merge : 1.00 us (0.3%)
split / merge op : 0/0
apply split merge : 1.51 us (0.5%)
LB compute : 287.50 us (92.4%)
LB move op cnt : 0
LB apply : 4.67 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.54 us (68.2%)
Info: cfl dt = 0.0016009640131778382 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.5399e+05 | 262144 | 1 | 3.070e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.775668091576236 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.4192890389462845, dt = 0.0016009640131778382
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.66 us (3.0%)
patch tree reduce : 1.73 us (0.7%)
gen split merge : 1.11 us (0.4%)
split / merge op : 0/0
apply split merge : 1.56 us (0.6%)
LB compute : 235.08 us (91.2%)
LB move op cnt : 0
LB apply : 4.45 us (1.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.43 us (67.0%)
Info: cfl dt = 0.0016009646388346775 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.9059e+05 | 262144 | 1 | 3.316e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.38184438042306 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.42089000295946233, dt = 0.0016009646388346775
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.47 us (2.6%)
patch tree reduce : 1.88 us (0.6%)
gen split merge : 962.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.72 us (0.6%)
LB compute : 269.13 us (92.2%)
LB move op cnt : 0
LB apply : 4.30 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.44 us (63.7%)
Info: cfl dt = 0.001600966796700895 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.6712e+05 | 262144 | 1 | 3.023e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 19.06447941733792 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.422490967598297, dt = 0.001600966796700895
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.94 us (2.4%)
patch tree reduce : 1.84 us (0.6%)
gen split merge : 1.04 us (0.4%)
split / merge op : 0/0
apply split merge : 1.98 us (0.7%)
LB compute : 264.70 us (92.0%)
LB move op cnt : 0
LB apply : 4.20 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.86 us (65.9%)
Info: cfl dt = 0.0016009705820689722 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2724e+05 | 262144 | 1 | 3.169e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.18753351044516 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.4240919343949979, dt = 0.0016009705820689722
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.58 us (2.5%)
patch tree reduce : 2.00 us (0.6%)
gen split merge : 874.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.67 us (0.5%)
LB compute : 286.51 us (92.7%)
LB move op cnt : 0
LB apply : 3.94 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.45 us (66.9%)
Info: cfl dt = 0.0016009756214165484 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2007e+05 | 262144 | 1 | 3.197e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.029992639426826 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.4256929049770669, dt = 0.0016009756214165484
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.93 us (2.6%)
patch tree reduce : 2.02 us (0.8%)
gen split merge : 959.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.30 us (0.5%)
LB compute : 242.26 us (91.4%)
LB move op cnt : 0
LB apply : 4.64 us (1.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.84 us (64.2%)
Info: cfl dt = 0.0016009818461191286 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.7745e+05 | 262144 | 1 | 3.372e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.093108200635687 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.42729388059848344, dt = 0.0016009818461191286
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.71 us (2.3%)
patch tree reduce : 1.81 us (0.6%)
gen split merge : 793.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.37 us (0.5%)
LB compute : 272.10 us (92.7%)
LB move op cnt : 0
LB apply : 4.27 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.45 us (63.3%)
Info: cfl dt = 0.001600989307593151 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.5647e+05 | 262144 | 1 | 3.061e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.83049199474926 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.42889486244460256, dt = 0.001600989307593151
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.55 us (2.6%)
patch tree reduce : 1.89 us (0.7%)
gen split merge : 867.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.35 us (0.5%)
LB compute : 264.95 us (92.0%)
LB move op cnt : 0
LB apply : 4.33 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.43 us (66.3%)
Info: cfl dt = 0.0016009980318315142 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.0669e+05 | 262144 | 1 | 3.709e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.537433265294046 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.43049585175219574, dt = 0.0016009980318315142
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.34 us (2.8%)
patch tree reduce : 1.69 us (0.6%)
gen split merge : 1.01 us (0.4%)
split / merge op : 0/0
apply split merge : 1.54 us (0.6%)
LB compute : 241.01 us (91.4%)
LB move op cnt : 0
LB apply : 4.26 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.89 us (66.4%)
Info: cfl dt = 0.0016010080150659555 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2487e+05 | 262144 | 1 | 3.178e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.135952316022582 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.43209684978402724, dt = 0.0016010080150659555
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.28 us (2.4%)
patch tree reduce : 2.08 us (0.7%)
gen split merge : 1.17 us (0.4%)
split / merge op : 0/0
apply split merge : 1.60 us (0.5%)
LB compute : 278.94 us (92.3%)
LB move op cnt : 0
LB apply : 4.59 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.54 us (67.1%)
Info: cfl dt = 0.0016010192282721158 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3877e+05 | 262144 | 1 | 3.548e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.242913609241572 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.4336978577990932, dt = 0.0016010192282721158
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.08 us (2.1%)
patch tree reduce : 1.88 us (0.6%)
gen split merge : 956.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.99 us (0.6%)
LB compute : 312.05 us (93.1%)
LB move op cnt : 0
LB apply : 4.15 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.43 us (65.7%)
Info: cfl dt = 0.0016010316831425713 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.1665e+05 | 262144 | 1 | 3.210e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.955436211032563 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.4352988770273653, dt = 0.0016010316831425713
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.61 us (2.3%)
patch tree reduce : 1.90 us (0.6%)
gen split merge : 935.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.57 us (0.5%)
LB compute : 305.65 us (92.9%)
LB move op cnt : 0
LB apply : 4.49 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.86 us (70.3%)
Info: cfl dt = 0.0016010453133179924 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2775e+05 | 262144 | 1 | 3.167e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.19970005101081 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.4368999087105079, dt = 0.0016010453133179924
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.64 us (3.0%)
patch tree reduce : 1.87 us (0.7%)
gen split merge : 982.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.39 us (0.5%)
LB compute : 229.70 us (90.9%)
LB move op cnt : 0
LB apply : 4.24 us (1.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.74 us (71.0%)
Info: cfl dt = 0.0016010600157422596 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.0826e+05 | 262144 | 1 | 3.243e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.77131356902636 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.4385009540238259, dt = 0.0016010600157422596
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.20 us (2.2%)
patch tree reduce : 1.80 us (0.6%)
gen split merge : 800.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.15 us (0.4%)
LB compute : 259.79 us (92.9%)
LB move op cnt : 0
LB apply : 3.93 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.84 us (65.0%)
Info: cfl dt = 0.0016010756536162809 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2541e+05 | 262144 | 1 | 3.176e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.148546870801724 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.44010201403956817, dt = 0.0016010756536162809
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.16 us (2.5%)
patch tree reduce : 1.90 us (0.7%)
gen split merge : 838.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.58 us (0.5%)
LB compute : 268.28 us (92.3%)
LB move op cnt : 0
LB apply : 4.49 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.47 us (65.9%)
Info: cfl dt = 0.0016010920740172551 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2034e+05 | 262144 | 1 | 3.196e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.03714567995978 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.44170308969318445, dt = 0.0016010920740172551
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.25 us (2.7%)
patch tree reduce : 1.89 us (0.7%)
gen split merge : 916.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.41 us (0.5%)
LB compute : 245.49 us (91.6%)
LB move op cnt : 0
LB apply : 4.16 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.38 us (63.5%)
Info: cfl dt = 0.0016011091089298101 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2532e+05 | 262144 | 1 | 3.176e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.14674447614155 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.4433041817672017, dt = 0.0016011091089298101
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 8.22 us (2.5%)
patch tree reduce : 1.74 us (0.5%)
gen split merge : 1.02 us (0.3%)
split / merge op : 0/0
apply split merge : 1.76 us (0.5%)
LB compute : 303.18 us (92.6%)
LB move op cnt : 0
LB apply : 4.45 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.58 us (69.1%)
Info: cfl dt = 0.0016011265875542074 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2035e+05 | 262144 | 1 | 3.196e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.037790809192444 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.4449052908761315, dt = 0.0016011265875542074
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.80 us (2.6%)
patch tree reduce : 1.85 us (0.6%)
gen split merge : 871.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.53 us (0.5%)
LB compute : 273.35 us (92.3%)
LB move op cnt : 0
LB apply : 4.06 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.43 us (65.0%)
Info: cfl dt = 0.0016011443395750609 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2260e+05 | 262144 | 1 | 3.187e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.08750534141917 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.4465064174636857, dt = 0.0016011443395750609
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.16 us (2.4%)
patch tree reduce : 1.74 us (0.6%)
gen split merge : 965.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.68 us (0.6%)
LB compute : 281.94 us (92.6%)
LB move op cnt : 0
LB apply : 4.24 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.63 us (68.1%)
Info: cfl dt = 0.0016011621988228802 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 6.7277e+05 | 262144 | 1 | 3.897e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.793015521735027 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.4481075618032607, dt = 0.0016011621988228802
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.47 us (2.3%)
patch tree reduce : 2.00 us (0.6%)
gen split merge : 1.06 us (0.3%)
split / merge op : 0/0
apply split merge : 1.43 us (0.4%)
LB compute : 300.19 us (92.9%)
LB move op cnt : 0
LB apply : 4.13 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.68 us (62.3%)
Info: cfl dt = 0.001601180002967935 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.1522e+05 | 262144 | 1 | 3.216e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.925502662411567 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.4497087240020836, dt = 0.001601180002967935
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.81 us (2.1%)
patch tree reduce : 1.81 us (0.6%)
gen split merge : 927.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.32 us (0.4%)
LB compute : 305.95 us (93.3%)
LB move op cnt : 0
LB apply : 4.24 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.64 us (69.9%)
Info: cfl dt = 0.001601197580064649 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.3089e+05 | 262144 | 1 | 3.155e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.27033319747254 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.45130990400505155, dt = 0.001601197580064649
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.68 us (2.7%)
patch tree reduce : 1.91 us (0.7%)
gen split merge : 997.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.36 us (0.5%)
LB compute : 261.88 us (92.1%)
LB move op cnt : 0
LB apply : 4.06 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.34 us (65.1%)
Info: cfl dt = 0.0016012147624888755 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2641e+05 | 262144 | 1 | 3.172e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.17197029064975 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.4529111015851162, dt = 0.0016012147624888755
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.24 us (2.4%)
patch tree reduce : 1.81 us (0.6%)
gen split merge : 1.00 us (0.3%)
split / merge op : 0/0
apply split merge : 1.47 us (0.5%)
LB compute : 281.24 us (92.6%)
LB move op cnt : 0
LB apply : 4.08 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.51 us (66.6%)
Info: cfl dt = 0.0016012313950799864 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.3925e+05 | 262144 | 1 | 3.124e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.45448235805008 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.4545123163476051, dt = 0.0016012313950799864
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.49 us (2.9%)
patch tree reduce : 1.73 us (0.7%)
gen split merge : 962.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.66 us (0.6%)
LB compute : 235.23 us (91.0%)
LB move op cnt : 0
LB apply : 4.27 us (1.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.32 us (60.6%)
Info: cfl dt = 0.001601247334023342 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.3086e+05 | 262144 | 1 | 3.155e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.27027171937961 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.4561135477426851, dt = 0.001601247334023342
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.11 us (2.6%)
patch tree reduce : 1.72 us (0.6%)
gen split merge : 833.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.44 us (0.5%)
LB compute : 254.78 us (92.0%)
LB move op cnt : 0
LB apply : 4.13 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.48 us (66.6%)
Info: cfl dt = 0.001601262460163295 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2199e+05 | 262144 | 1 | 3.189e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.07535047944702 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.4577147950767084, dt = 0.001601262460163295
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.20 us (2.8%)
patch tree reduce : 1.92 us (0.7%)
gen split merge : 846.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.63 us (0.6%)
LB compute : 235.87 us (91.2%)
LB move op cnt : 0
LB apply : 4.17 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.41 us (67.0%)
Info: cfl dt = 0.001601276681276416 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.0150e+05 | 262144 | 1 | 3.271e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.62498986051308 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.4593160575368717, dt = 0.001601276681276416
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.80 us (2.5%)
patch tree reduce : 1.75 us (0.6%)
gen split merge : 1.15 us (0.4%)
split / merge op : 0/0
apply split merge : 1.38 us (0.5%)
LB compute : 283.12 us (92.5%)
LB move op cnt : 0
LB apply : 4.51 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.54 us (66.8%)
Info: cfl dt = 0.0016012899295218634 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.3082e+05 | 262144 | 1 | 3.155e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.269868024739083 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.4609173342181481, dt = 0.0016012899295218634
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.43 us (2.9%)
patch tree reduce : 1.81 us (0.7%)
gen split merge : 976.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.34 us (0.5%)
LB compute : 233.91 us (91.2%)
LB move op cnt : 0
LB apply : 4.13 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.95 us (65.9%)
Info: cfl dt = 0.001601302158035694 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2584e+05 | 262144 | 1 | 3.174e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.160600858350158 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.46251862414767, dt = 0.001601302158035694
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.42 us (2.7%)
patch tree reduce : 1.85 us (0.7%)
gen split merge : 946.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.64 us (0.6%)
LB compute : 254.34 us (91.6%)
LB move op cnt : 0
LB apply : 4.50 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.41 us (64.4%)
Info: cfl dt = 0.001601313337896027 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.7117e+05 | 262144 | 1 | 3.399e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.95851833219074 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.46411992630570564, dt = 0.001601313337896027
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.17 us (2.2%)
patch tree reduce : 1.77 us (0.6%)
gen split merge : 790.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.10 us (0.4%)
LB compute : 256.33 us (92.8%)
LB move op cnt : 0
LB apply : 4.02 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.57 us (66.1%)
Info: cfl dt = 0.0016013234541979702 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.1847e+05 | 262144 | 1 | 3.203e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.998770432169703 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.4657212396436017, dt = 0.0016013234541979702
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.52 us (2.9%)
patch tree reduce : 1.99 us (0.8%)
gen split merge : 891.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.53 us (0.6%)
LB compute : 240.05 us (91.3%)
LB move op cnt : 0
LB apply : 4.20 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.38 us (64.1%)
Info: cfl dt = 0.0016013324996771042 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2363e+05 | 262144 | 1 | 3.183e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.112354154284493 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.4673225630977996, dt = 0.0016013324996771042
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.16 us (2.4%)
patch tree reduce : 1.88 us (0.6%)
gen split merge : 1.26 us (0.4%)
split / merge op : 0/0
apply split merge : 1.29 us (0.4%)
LB compute : 276.56 us (92.5%)
LB move op cnt : 0
LB apply : 4.11 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.83 us (64.2%)
Info: cfl dt = 0.0016013404702926578 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.1166e+05 | 262144 | 1 | 3.230e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.849166509741966 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.4689238955974767, dt = 0.0016013404702926578
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.91 us (2.2%)
patch tree reduce : 1.73 us (0.5%)
gen split merge : 1.02 us (0.3%)
split / merge op : 0/0
apply split merge : 1.41 us (0.4%)
LB compute : 297.31 us (93.0%)
LB move op cnt : 0
LB apply : 3.94 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.49 us (65.0%)
Info: cfl dt = 0.0016013473652438104 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2173e+05 | 262144 | 1 | 3.190e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.07070893529495 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.47052523606776936, dt = 0.0016013473652438104
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.35 us (2.8%)
patch tree reduce : 2.06 us (0.8%)
gen split merge : 1.00 us (0.4%)
split / merge op : 0/0
apply split merge : 1.53 us (0.6%)
LB compute : 236.50 us (91.2%)
LB move op cnt : 0
LB apply : 4.15 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.40 us (65.5%)
Info: cfl dt = 0.0016013532274397248 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2427e+05 | 262144 | 1 | 3.180e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.12659575131423 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.47212658343301317, dt = 0.0016013532274397248
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.48 us (2.5%)
patch tree reduce : 1.75 us (0.6%)
gen split merge : 973.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.44 us (0.5%)
LB compute : 276.92 us (92.3%)
LB move op cnt : 0
LB apply : 4.45 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.40 us (62.6%)
Info: cfl dt = 0.001601358068570277 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2434e+05 | 262144 | 1 | 3.180e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.128282998349714 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.4737279366604529, dt = 0.001601358068570277
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.50 us (2.5%)
patch tree reduce : 1.89 us (0.6%)
gen split merge : 987.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.57 us (0.5%)
LB compute : 278.81 us (92.5%)
LB move op cnt : 0
LB apply : 4.37 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.57 us (67.3%)
Info: cfl dt = 0.001601361893906238 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.4287e+05 | 262144 | 1 | 3.110e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.53570383789439 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.47532929472902313, dt = 0.001601361893906238
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.64 us (2.4%)
patch tree reduce : 1.65 us (0.5%)
gen split merge : 976.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.58 us (0.5%)
LB compute : 300.89 us (92.9%)
LB move op cnt : 0
LB apply : 4.34 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.43 us (65.6%)
Info: cfl dt = 0.0016013646768350362 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.1284e+05 | 262144 | 1 | 3.225e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.87546002043169 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.4769306566229294, dt = 0.0016013646768350362
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.92 us (2.2%)
patch tree reduce : 1.91 us (0.6%)
gen split merge : 928.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.42 us (0.4%)
LB compute : 297.79 us (92.8%)
LB move op cnt : 0
LB apply : 4.45 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.46 us (65.0%)
Info: cfl dt = 0.0016013663579055762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.1869e+05 | 262144 | 1 | 3.202e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.00418236954753 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.4785320212997644, dt = 0.0016013663579055762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 8.00 us (2.7%)
patch tree reduce : 1.81 us (0.6%)
gen split merge : 978.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.53 us (0.5%)
LB compute : 274.69 us (92.2%)
LB move op cnt : 0
LB apply : 4.27 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.44 us (66.5%)
Info: cfl dt = 0.0016013668921812671 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2120e+05 | 262144 | 1 | 3.192e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.059338622942846 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.48013338765767, dt = 0.0016013668921812671
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.53 us (2.9%)
patch tree reduce : 1.92 us (0.7%)
gen split merge : 952.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.50 us (0.6%)
LB compute : 237.99 us (91.2%)
LB move op cnt : 0
LB apply : 4.21 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.90 us (65.4%)
Info: cfl dt = 0.0016013662201985535 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.9075e+05 | 262144 | 1 | 3.315e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.389676909368973 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.48173475454985126, dt = 0.0016013662201985535
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.95 us (2.6%)
patch tree reduce : 1.85 us (0.7%)
gen split merge : 834.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.56 us (0.6%)
LB compute : 240.46 us (91.6%)
LB move op cnt : 0
LB apply : 3.94 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.42 us (65.2%)
Info: cfl dt = 0.001601363871153486 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2709e+05 | 262144 | 1 | 3.169e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.18883570975532 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.48333612077004984, dt = 0.001601363871153486
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.31 us (2.8%)
patch tree reduce : 1.85 us (0.7%)
gen split merge : 988.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.60 us (0.6%)
LB compute : 238.37 us (91.6%)
LB move op cnt : 0
LB apply : 3.98 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.76 us (64.4%)
Info: cfl dt = 0.0016013599065358285 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.9684e+05 | 262144 | 1 | 3.290e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.5235992650094 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.48493748464120334, dt = 0.0016013599065358285
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.54 us (2.7%)
patch tree reduce : 1.97 us (0.7%)
gen split merge : 1.02 us (0.4%)
split / merge op : 0/0
apply split merge : 1.78 us (0.6%)
LB compute : 251.56 us (91.4%)
LB move op cnt : 0
LB apply : 4.33 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.52 us (66.1%)
Info: cfl dt = 0.0016013544497046014 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.5582e+05 | 262144 | 1 | 3.468e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.621423803233398 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.48653884454773916, dt = 0.0016013544497046014
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.24 us (2.8%)
patch tree reduce : 1.77 us (0.7%)
gen split merge : 988.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.64 us (0.6%)
LB compute : 234.77 us (91.2%)
LB move op cnt : 0
LB apply : 4.22 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.85 us (64.8%)
Info: cfl dt = 0.001601347644021806 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.8935e+05 | 262144 | 1 | 3.321e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.358826918112854 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.48814019899744376, dt = 0.001601347644021806
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.29 us (2.5%)
patch tree reduce : 2.17 us (0.7%)
gen split merge : 942.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.49 us (0.5%)
LB compute : 274.19 us (92.2%)
LB move op cnt : 0
LB apply : 4.39 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.50 us (66.5%)
Info: cfl dt = 0.0016013396296300835 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2892e+05 | 262144 | 1 | 3.162e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.228859452668974 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.4897415466414656, dt = 0.0016013396296300835
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.73 us (2.4%)
patch tree reduce : 2.02 us (0.7%)
gen split merge : 818.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.70 us (0.6%)
LB compute : 252.64 us (91.9%)
LB move op cnt : 0
LB apply : 4.48 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.73 us (69.3%)
Info: cfl dt = 0.001601330552764748 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2433e+05 | 262144 | 1 | 3.180e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.1279877463621 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.4913428862710957, dt = 0.001601330552764748
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 8.17 us (3.1%)
patch tree reduce : 1.97 us (0.7%)
gen split merge : 828.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.56 us (0.6%)
LB compute : 242.67 us (91.1%)
LB move op cnt : 0
LB apply : 4.44 us (1.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.43 us (67.1%)
Info: cfl dt = 0.0016013205947100152 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2150e+05 | 262144 | 1 | 3.191e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.06546536384301 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.4929442168238604, dt = 0.0016013205947100152
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.43 us (2.8%)
patch tree reduce : 1.85 us (0.7%)
gen split merge : 868.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.47 us (0.6%)
LB compute : 242.66 us (91.6%)
LB move op cnt : 0
LB apply : 3.92 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.49 us (66.0%)
Info: cfl dt = 0.0016013099238360467 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.0573e+05 | 262144 | 1 | 3.253e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.718686846496215 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.49454553741857044, dt = 0.0016013099238360467
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.71 us (2.9%)
patch tree reduce : 1.76 us (0.7%)
gen split merge : 955.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.60 us (0.6%)
LB compute : 242.25 us (91.4%)
LB move op cnt : 0
LB apply : 4.46 us (1.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.47 us (65.4%)
Info: cfl dt = 0.0016012987024565742 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.1128e+05 | 262144 | 1 | 3.231e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.840566827214104 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.4961468473424065, dt = 0.0016012987024565742
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.08 us (2.4%)
patch tree reduce : 1.94 us (0.7%)
gen split merge : 1.02 us (0.4%)
split / merge op : 0/0
apply split merge : 1.61 us (0.6%)
LB compute : 267.80 us (92.3%)
LB move op cnt : 0
LB apply : 4.30 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.81 us (63.0%)
Info: cfl dt = 0.001601287095574869 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2970e+05 | 262144 | 1 | 3.159e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.245532822142888 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.49774814604486306, dt = 0.001601287095574869
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.37 us (2.3%)
patch tree reduce : 1.86 us (0.6%)
gen split merge : 955.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.53 us (0.5%)
LB compute : 292.96 us (92.8%)
LB move op cnt : 0
LB apply : 4.37 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.57 us (66.3%)
Info: cfl dt = 0.0016012752770187817 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.0964e+05 | 262144 | 1 | 3.238e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.804314910094316 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.49934943314043795, dt = 0.0016012752770187817
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.29 us (2.6%)
patch tree reduce : 1.77 us (0.6%)
gen split merge : 906.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.58 us (0.6%)
LB compute : 260.76 us (92.1%)
LB move op cnt : 0
LB apply : 4.27 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.52 us (66.7%)
Info: cfl dt = 0.001601263432004667 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2174e+05 | 262144 | 1 | 3.190e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.070129752290704 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5009507084174567, dt = 0.001601263432004667
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.50 us (2.6%)
patch tree reduce : 1.87 us (0.6%)
gen split merge : 1.01 us (0.3%)
split / merge op : 0/0
apply split merge : 1.51 us (0.5%)
LB compute : 268.31 us (92.1%)
LB move op cnt : 0
LB apply : 4.38 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.42 us (65.6%)
Info: cfl dt = 0.0016012517558991073 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2422e+05 | 262144 | 1 | 3.181e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.124652327521634 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5025519718494613, dt = 0.0016012517558991073
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.59 us (2.6%)
patch tree reduce : 1.73 us (0.6%)
gen split merge : 1.04 us (0.4%)
split / merge op : 0/0
apply split merge : 1.53 us (0.5%)
LB compute : 272.35 us (92.2%)
LB move op cnt : 0
LB apply : 4.32 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.49 us (67.1%)
Info: cfl dt = 0.0016012404499445364 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 6.9541e+05 | 262144 | 1 | 3.770e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.291922578026034 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5041532236053604, dt = 0.0016012404499445364
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 8.03 us (2.6%)
patch tree reduce : 2.18 us (0.7%)
gen split merge : 987.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.56 us (0.5%)
LB compute : 288.21 us (92.5%)
LB move op cnt : 0
LB apply : 4.06 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.56 us (66.6%)
Info: cfl dt = 0.0016012297158308987 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2642e+05 | 262144 | 1 | 3.172e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.172650916215797 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.505754464055305, dt = 0.0016012297158308987
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 8.05 us (2.8%)
patch tree reduce : 1.87 us (0.6%)
gen split merge : 893.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.42 us (0.5%)
LB compute : 269.72 us (92.2%)
LB move op cnt : 0
LB apply : 3.90 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.57 us (67.3%)
Info: cfl dt = 0.0016012197469160465 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2417e+05 | 262144 | 1 | 3.181e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.1231393741785 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5073556937711359, dt = 0.0016012197469160465
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.64 us (2.4%)
patch tree reduce : 1.84 us (0.6%)
gen split merge : 955.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.42 us (0.4%)
LB compute : 293.68 us (92.7%)
LB move op cnt : 0
LB apply : 4.01 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.90 us (64.8%)
Info: cfl dt = 0.0016012107173187025 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2524e+05 | 262144 | 1 | 3.177e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.14662919922497 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.508956913518052, dt = 0.0016012107173187025
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.25 us (2.4%)
patch tree reduce : 1.83 us (0.6%)
gen split merge : 1.30 us (0.4%)
split / merge op : 0/0
apply split merge : 1.41 us (0.5%)
LB compute : 282.84 us (92.6%)
LB move op cnt : 0
LB apply : 4.09 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.49 us (65.8%)
Info: cfl dt = 0.0016012027761832138 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.5993e+05 | 262144 | 1 | 3.048e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.909311457624725 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5105581242353706, dt = 0.0016012027761832138
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.85 us (2.7%)
patch tree reduce : 1.95 us (0.8%)
gen split merge : 932.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.45 us (0.6%)
LB compute : 230.02 us (91.2%)
LB move op cnt : 0
LB apply : 4.61 us (1.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.41 us (65.7%)
Info: cfl dt = 0.0016011960365732852 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.2689e+05 | 262144 | 1 | 3.606e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.983796514436818 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5121593270115539, dt = 0.0016011960365732852
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.10 us (2.2%)
patch tree reduce : 1.64 us (0.6%)
gen split merge : 806.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 985.00 ns (0.4%)
LB compute : 257.94 us (92.7%)
LB move op cnt : 0
LB apply : 4.35 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.55 us (66.0%)
Info: cfl dt = 0.0016011905706491546 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2092e+05 | 262144 | 1 | 3.193e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.05123252318306 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5137605230481271, dt = 0.0016011905706491546
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.72 us (2.6%)
patch tree reduce : 1.66 us (0.6%)
gen split merge : 1.03 us (0.3%)
split / merge op : 0/0
apply split merge : 1.34 us (0.5%)
LB compute : 271.28 us (92.3%)
LB move op cnt : 0
LB apply : 4.41 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.49 us (66.1%)
Info: cfl dt = 0.0016011864153082098 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.5998e+05 | 262144 | 1 | 3.449e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.711125372854877 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5153617136187763, dt = 0.0016011864153082098
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.83 us (2.6%)
patch tree reduce : 2.06 us (0.7%)
gen split merge : 910.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.70 us (0.6%)
LB compute : 280.93 us (92.0%)
LB move op cnt : 0
LB apply : 4.51 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.48 us (66.0%)
Info: cfl dt = 0.0016011835830801848 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.6050e+05 | 262144 | 1 | 3.046e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.92156614561591 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5169629000340845, dt = 0.0016011835830801848
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.54 us (2.3%)
patch tree reduce : 1.91 us (0.6%)
gen split merge : 863.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.58 us (0.5%)
LB compute : 309.53 us (93.1%)
LB move op cnt : 0
LB apply : 4.39 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.44 us (64.9%)
Info: cfl dt = 0.001601182071960027 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.1065e+05 | 262144 | 1 | 3.234e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.825304801200055 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5185640836171647, dt = 0.001601182071960027
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.08 us (2.6%)
patch tree reduce : 1.90 us (0.7%)
gen split merge : 1.03 us (0.4%)
split / merge op : 0/0
apply split merge : 1.31 us (0.5%)
LB compute : 254.00 us (92.0%)
LB move op cnt : 0
LB apply : 4.29 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.64 us (68.9%)
Info: cfl dt = 0.0016011818708778752 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.1839e+05 | 262144 | 1 | 3.203e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.995450871262452 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5201652656891247, dt = 0.0016011818708778752
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.16 us (2.7%)
patch tree reduce : 1.93 us (0.7%)
gen split merge : 1.03 us (0.4%)
split / merge op : 0/0
apply split merge : 1.44 us (0.5%)
LB compute : 244.16 us (91.4%)
LB move op cnt : 0
LB apply : 4.20 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.42 us (65.2%)
Info: cfl dt = 0.0016011829579180375 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.3616e+05 | 262144 | 1 | 3.135e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.38612963946524 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5217664475600026, dt = 0.0016011829579180375
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.56 us (2.9%)
patch tree reduce : 1.95 us (0.8%)
gen split merge : 726.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.57 us (0.6%)
LB compute : 235.77 us (91.3%)
LB move op cnt : 0
LB apply : 4.39 us (1.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.37 us (66.3%)
Info: cfl dt = 0.0016011853094775013 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2911e+05 | 262144 | 1 | 3.162e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.231273289904497 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5233676305179206, dt = 0.0016011853094775013
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.36 us (1.3%)
patch tree reduce : 1.89 us (0.3%)
gen split merge : 1.02 us (0.2%)
split / merge op : 0/0
apply split merge : 1.39 us (0.2%)
LB compute : 539.06 us (96.0%)
LB move op cnt : 0
LB apply : 3.91 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.77 us (70.5%)
Info: cfl dt = 0.0016011889050692066 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3342e+05 | 262144 | 1 | 3.574e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.127206884220524 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5249688158273981, dt = 0.0016011889050692066
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.48 us (2.5%)
patch tree reduce : 1.65 us (0.6%)
gen split merge : 845.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.02 us (0.4%)
LB compute : 243.18 us (92.3%)
LB move op cnt : 0
LB apply : 4.11 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.58 us (67.3%)
Info: cfl dt = 0.0016011937330047523 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2334e+05 | 262144 | 1 | 3.184e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.10430001194701 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5265700047324673, dt = 0.0016011937330047523
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.49 us (2.1%)
patch tree reduce : 1.84 us (0.6%)
gen split merge : 854.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.70 us (0.5%)
LB compute : 288.53 us (92.9%)
LB move op cnt : 0
LB apply : 4.08 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.54 us (67.0%)
Info: cfl dt = 0.0016011997909505756 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.6787e+05 | 262144 | 1 | 3.021e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 19.083565793536863 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.528171198465472, dt = 0.0009954682011946714
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.98 us (2.3%)
patch tree reduce : 1.95 us (0.7%)
gen split merge : 988.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.73 us (0.6%)
LB compute : 274.68 us (92.3%)
LB move op cnt : 0
LB apply : 4.27 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.41 us (64.1%)
Info: cfl dt = 0.0016012077682784418 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.1789e+05 | 262144 | 1 | 3.205e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11.181093272106537 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 121.58134567600001 (s) [Godunov][rank=0]
Info: dump to _to_trash/ramses_kh/periodic_0005.vtk [VTK Dump][rank=0]
- took 37.23 ms, bandwidth = 1.10 GB/s
amr::Godunov: t = 0.5291666666666667, dt = 0.0016012077682784418
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 8.60 us (2.7%)
patch tree reduce : 2.07 us (0.6%)
gen split merge : 1.12 us (0.4%)
split / merge op : 0/0
apply split merge : 1.48 us (0.5%)
LB compute : 294.17 us (92.3%)
LB move op cnt : 0
LB apply : 4.51 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.65 us (67.3%)
Info: cfl dt = 0.0016012143913672922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 6.4310e+05 | 262144 | 1 | 4.076e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.141300802309912 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5307678744349451, dt = 0.0016012143913672922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.34 us (2.1%)
patch tree reduce : 1.92 us (0.6%)
gen split merge : 1.00 us (0.3%)
split / merge op : 0/0
apply split merge : 1.61 us (0.5%)
LB compute : 319.85 us (93.4%)
LB move op cnt : 0
LB apply : 3.78 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.22 us (60.8%)
Info: cfl dt = 0.0016012221111951397 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.5456e+05 | 262144 | 1 | 3.068e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.791140343184647 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5323690888263124, dt = 0.0016012221111951397
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.68 us (2.6%)
patch tree reduce : 2.05 us (0.7%)
gen split merge : 844.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.37 us (0.5%)
LB compute : 269.98 us (92.2%)
LB move op cnt : 0
LB apply : 4.36 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.39 us (64.5%)
Info: cfl dt = 0.0016012316389787484 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.1082e+05 | 262144 | 1 | 3.233e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.829475053106524 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5339703109375076, dt = 0.0016012316389787484
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.49 us (2.2%)
patch tree reduce : 1.76 us (0.5%)
gen split merge : 933.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.52 us (0.5%)
LB compute : 312.26 us (93.2%)
LB move op cnt : 0
LB apply : 4.55 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.72 us (70.3%)
Info: cfl dt = 0.0016012430446411172 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.1040e+05 | 262144 | 1 | 3.235e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.82044122281036 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5355715425764863, dt = 0.0016012430446411172
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.63 us (2.7%)
patch tree reduce : 1.73 us (0.6%)
gen split merge : 1.02 us (0.4%)
split / merge op : 0/0
apply split merge : 1.58 us (0.6%)
LB compute : 262.33 us (92.0%)
LB move op cnt : 0
LB apply : 4.34 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.61 us (68.8%)
Info: cfl dt = 0.0016012557310018437 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.1663e+05 | 262144 | 1 | 3.210e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.95747052120367 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5371727856211275, dt = 0.0016012557310018437
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.38 us (2.4%)
patch tree reduce : 1.66 us (0.5%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.63 us (0.5%)
LB compute : 290.98 us (92.7%)
LB move op cnt : 0
LB apply : 4.27 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.48 us (63.6%)
Info: cfl dt = 0.001601269460791612 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3561e+05 | 262144 | 1 | 3.564e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.175997612832116 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5387740413521294, dt = 0.001601269460791612
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.82 us (2.4%)
patch tree reduce : 2.02 us (0.7%)
gen split merge : 822.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.68 us (0.6%)
LB compute : 265.72 us (92.3%)
LB move op cnt : 0
LB apply : 4.13 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.49 us (66.9%)
Info: cfl dt = 0.001601284033974662 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2019e+05 | 262144 | 1 | 3.196e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.036072108963154 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.540375310812921, dt = 0.001601284033974662
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.65 us (3.0%)
patch tree reduce : 1.93 us (0.7%)
gen split merge : 966.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.45 us (0.6%)
LB compute : 234.56 us (91.0%)
LB move op cnt : 0
LB apply : 4.16 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.54 us (65.6%)
Info: cfl dt = 0.001601299300243217 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 6.7664e+05 | 262144 | 1 | 3.874e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.879445337425654 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5419765948468956, dt = 0.001601299300243217
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.19 us (2.2%)
patch tree reduce : 1.80 us (0.6%)
gen split merge : 1.02 us (0.3%)
split / merge op : 0/0
apply split merge : 1.52 us (0.5%)
LB compute : 299.75 us (93.0%)
LB move op cnt : 0
LB apply : 4.12 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.56 us (66.4%)
Info: cfl dt = 0.0016013151624374826 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.1138e+05 | 262144 | 1 | 3.231e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.842654916687337 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5435778941471389, dt = 0.0016013151624374826
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.30 us (2.3%)
patch tree reduce : 1.80 us (0.6%)
gen split merge : 987.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.54 us (0.5%)
LB compute : 292.07 us (93.0%)
LB move op cnt : 0
LB apply : 3.98 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.61 us (69.3%)
Info: cfl dt = 0.0016013315752040369 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.1175e+05 | 262144 | 1 | 3.229e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.851022929519306 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5451792093095763, dt = 0.0016013315752040369
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.06 us (2.3%)
patch tree reduce : 1.97 us (0.6%)
gen split merge : 916.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.45 us (0.5%)
LB compute : 286.87 us (92.7%)
LB move op cnt : 0
LB apply : 4.04 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.52 us (67.5%)
Info: cfl dt = 0.0016013485377537047 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.4936e+05 | 262144 | 1 | 3.086e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.678260545854528 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5467805408847803, dt = 0.0016013485377537047
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.56 us (2.9%)
patch tree reduce : 1.71 us (0.7%)
gen split merge : 925.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.83 us (0.7%)
LB compute : 238.79 us (91.3%)
LB move op cnt : 0
LB apply : 4.34 us (1.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.46 us (67.6%)
Info: cfl dt = 0.001601366083791967 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2778e+05 | 262144 | 1 | 3.167e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.20389475183627 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5483818894225341, dt = 0.001601366083791967
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.82 us (2.6%)
patch tree reduce : 1.92 us (0.7%)
gen split merge : 1.06 us (0.4%)
split / merge op : 0/0
apply split merge : 1.49 us (0.6%)
LB compute : 243.28 us (91.6%)
LB move op cnt : 0
LB apply : 4.38 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.56 us (68.9%)
Info: cfl dt = 0.0016013842641428686 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2264e+05 | 262144 | 1 | 3.187e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.09107518259923 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5499832555063261, dt = 0.0016013842641428686
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.33 us (2.4%)
patch tree reduce : 2.05 us (0.7%)
gen split merge : 1.12 us (0.4%)
split / merge op : 0/0
apply split merge : 1.51 us (0.5%)
LB compute : 284.80 us (92.6%)
LB move op cnt : 0
LB apply : 4.20 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.50 us (64.1%)
Info: cfl dt = 0.0016014031352060817 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.4408e+05 | 262144 | 1 | 3.106e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.56263577501033 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.551584639770469, dt = 0.0016014031352060817
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.13 us (2.3%)
patch tree reduce : 1.83 us (0.6%)
gen split merge : 1.15 us (0.4%)
split / merge op : 0/0
apply split merge : 1.41 us (0.5%)
LB compute : 284.44 us (92.7%)
LB move op cnt : 0
LB apply : 4.12 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.54 us (66.5%)
Info: cfl dt = 0.0016014227432943184 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.4590e+05 | 262144 | 1 | 3.099e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.60304341321478 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5531860429056751, dt = 0.0016014227432943184
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.89 us (2.6%)
patch tree reduce : 1.75 us (0.7%)
gen split merge : 848.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.56 us (0.6%)
LB compute : 243.64 us (91.9%)
LB move op cnt : 0
LB apply : 3.72 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.41 us (63.6%)
Info: cfl dt = 0.0016014431158075549 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2669e+05 | 262144 | 1 | 3.171e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.18074207735739 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5547874656489694, dt = 0.0016014431158075549
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.90 us (2.6%)
patch tree reduce : 1.87 us (0.7%)
gen split merge : 1.05 us (0.4%)
split / merge op : 0/0
apply split merge : 1.24 us (0.5%)
LB compute : 241.78 us (89.4%)
LB move op cnt : 0
LB apply : 4.16 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.98 us (66.7%)
Info: cfl dt = 0.0016014643107885595 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2219e+05 | 262144 | 1 | 3.188e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.081981079533985 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.556388908764777, dt = 0.0016014643107885595
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.77 us (2.4%)
patch tree reduce : 1.97 us (0.7%)
gen split merge : 992.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.38 us (0.5%)
LB compute : 259.63 us (92.0%)
LB move op cnt : 0
LB apply : 4.41 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.68 us (69.9%)
Info: cfl dt = 0.0016014863565693936 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.5440e+05 | 262144 | 1 | 3.068e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.79065708269481 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5579903730755655, dt = 0.0016014863565693936
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.60 us (2.7%)
patch tree reduce : 1.77 us (0.6%)
gen split merge : 987.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.57 us (0.6%)
LB compute : 261.00 us (92.0%)
LB move op cnt : 0
LB apply : 4.48 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.54 us (68.3%)
Info: cfl dt = 0.0016015092091254195 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2929e+05 | 262144 | 1 | 3.161e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.238627702907102 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.559591859432135, dt = 0.0016015092091254195
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.47 us (2.8%)
patch tree reduce : 1.72 us (0.7%)
gen split merge : 1.00 us (0.4%)
split / merge op : 0/0
apply split merge : 1.46 us (0.6%)
LB compute : 240.33 us (91.4%)
LB move op cnt : 0
LB apply : 4.33 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.48 us (66.5%)
Info: cfl dt = 0.00160153280770994 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2909e+05 | 262144 | 1 | 3.162e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.2344927957532 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5611933686412603, dt = 0.00160153280770994
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.18 us (2.7%)
patch tree reduce : 2.35 us (0.9%)
gen split merge : 997.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.42 us (0.5%)
LB compute : 240.07 us (91.2%)
LB move op cnt : 0
LB apply : 4.37 us (1.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.69 us (63.2%)
Info: cfl dt = 0.001601557080136669 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2135e+05 | 262144 | 1 | 3.192e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.064454635704507 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5627949014489703, dt = 0.001601557080136669
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.59 us (2.8%)
patch tree reduce : 2.05 us (0.8%)
gen split merge : 1.18 us (0.4%)
split / merge op : 0/0
apply split merge : 1.65 us (0.6%)
LB compute : 242.93 us (91.2%)
LB move op cnt : 0
LB apply : 4.45 us (1.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.41 us (63.5%)
Info: cfl dt = 0.0016015819505895972 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.0752e+05 | 262144 | 1 | 3.246e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.760709338484062 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5643964585291069, dt = 0.0016015819505895972
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.73 us (3.0%)
patch tree reduce : 1.86 us (0.7%)
gen split merge : 1.02 us (0.4%)
split / merge op : 0/0
apply split merge : 1.90 us (0.7%)
LB compute : 231.44 us (90.7%)
LB move op cnt : 0
LB apply : 4.39 us (1.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.35 us (64.7%)
Info: cfl dt = 0.0016016073437809676 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.1910e+05 | 262144 | 1 | 3.200e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.015589921770115 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5659980404796965, dt = 0.0016016073437809676
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.34 us (2.4%)
patch tree reduce : 1.94 us (0.6%)
gen split merge : 1.03 us (0.3%)
split / merge op : 0/0
apply split merge : 1.56 us (0.5%)
LB compute : 279.97 us (92.5%)
LB move op cnt : 0
LB apply : 4.16 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.45 us (65.5%)
Info: cfl dt = 0.0016016331826009512 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2752e+05 | 262144 | 1 | 3.168e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.20104929119671 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5675996478234775, dt = 0.0016016331826009512
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.41 us (2.6%)
patch tree reduce : 1.80 us (0.6%)
gen split merge : 988.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.51 us (0.5%)
LB compute : 265.23 us (92.2%)
LB move op cnt : 0
LB apply : 4.33 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.36 us (63.6%)
Info: cfl dt = 0.001601659387071101 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2829e+05 | 262144 | 1 | 3.165e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.218212751299916 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5692012810060785, dt = 0.001601659387071101
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.23 us (2.4%)
patch tree reduce : 1.89 us (0.6%)
gen split merge : 909.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.41 us (0.5%)
LB compute : 277.23 us (92.4%)
LB move op cnt : 0
LB apply : 4.45 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.38 us (62.9%)
Info: cfl dt = 0.0016016858851279777 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.3156e+05 | 262144 | 1 | 3.152e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.290602203862516 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5708029403931496, dt = 0.0016016858851279777
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.10 us (2.3%)
patch tree reduce : 1.93 us (0.6%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.50 us (0.5%)
LB compute : 275.61 us (89.8%)
LB move op cnt : 0
LB apply : 13.23 us (4.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.50 us (66.9%)
Info: cfl dt = 0.0016017126050077656 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 6.8640e+05 | 262144 | 1 | 3.819e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.097898383519988 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5724046262782776, dt = 0.0016017126050077656
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.27 us (2.1%)
patch tree reduce : 1.85 us (0.5%)
gen split merge : 1.00 us (0.3%)
split / merge op : 0/0
apply split merge : 1.48 us (0.4%)
LB compute : 317.40 us (93.5%)
LB move op cnt : 0
LB apply : 4.01 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.65 us (68.2%)
Info: cfl dt = 0.001601739482801048 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.3339e+05 | 262144 | 1 | 3.146e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.331291335094974 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5740063388832853, dt = 0.001601739482801048
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.39 us (2.9%)
patch tree reduce : 1.84 us (0.7%)
gen split merge : 937.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.69 us (0.7%)
LB compute : 230.09 us (91.1%)
LB move op cnt : 0
LB apply : 3.76 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.88 us (63.8%)
Info: cfl dt = 0.001601766460889083 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2493e+05 | 262144 | 1 | 3.178e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.14571341794356 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5756080783660864, dt = 0.001601766460889083
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 8.25 us (2.5%)
patch tree reduce : 2.28 us (0.7%)
gen split merge : 908.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.53 us (0.5%)
LB compute : 303.55 us (92.5%)
LB move op cnt : 0
LB apply : 4.39 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.42 us (64.9%)
Info: cfl dt = 0.001601793488861083 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.9580e+05 | 262144 | 1 | 3.294e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.505176566883367 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5772098448269755, dt = 0.001601793488861083
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.58 us (2.9%)
patch tree reduce : 1.82 us (0.7%)
gen split merge : 1.25 us (0.5%)
split / merge op : 0/0
apply split merge : 1.56 us (0.6%)
LB compute : 240.14 us (91.2%)
LB move op cnt : 0
LB apply : 4.51 us (1.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.39 us (63.8%)
Info: cfl dt = 0.0016018205227417807 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2476e+05 | 262144 | 1 | 3.178e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.142410446338936 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5788116383158366, dt = 0.0016018205227417807
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.96 us (3.0%)
patch tree reduce : 1.83 us (0.7%)
gen split merge : 961.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.66 us (0.6%)
LB compute : 242.17 us (91.2%)
LB move op cnt : 0
LB apply : 4.49 us (1.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.73 us (62.3%)
Info: cfl dt = 0.001601847523311459 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.1229e+05 | 262144 | 1 | 3.227e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.868436733353846 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5804134588385784, dt = 0.001601847523311459
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.51 us (2.4%)
patch tree reduce : 1.74 us (0.6%)
gen split merge : 918.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.49 us (0.5%)
LB compute : 290.51 us (92.8%)
LB move op cnt : 0
LB apply : 4.27 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.75 us (60.9%)
Info: cfl dt = 0.0016018744645912198 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.0780e+05 | 262144 | 1 | 3.245e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.770037688352655 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5820153063618899, dt = 0.0016018744645912198
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.44 us (2.8%)
patch tree reduce : 1.81 us (0.7%)
gen split merge : 1.04 us (0.4%)
split / merge op : 0/0
apply split merge : 1.35 us (0.5%)
LB compute : 241.15 us (91.4%)
LB move op cnt : 0
LB apply : 4.26 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.38 us (64.2%)
Info: cfl dt = 0.001601901324320236 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2613e+05 | 262144 | 1 | 3.173e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.17354090432777 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5836171808264812, dt = 0.001601901324320236
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.18 us (2.4%)
patch tree reduce : 2.09 us (0.7%)
gen split merge : 1.02 us (0.3%)
split / merge op : 0/0
apply split merge : 1.31 us (0.4%)
LB compute : 282.69 us (92.7%)
LB move op cnt : 0
LB apply : 4.27 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.40 us (65.2%)
Info: cfl dt = 0.0016019280742788015 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.0798e+05 | 262144 | 1 | 3.244e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.774594870118303 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5852190821508014, dt = 0.0016019280742788015
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.93 us (2.5%)
patch tree reduce : 2.02 us (0.7%)
gen split merge : 877.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.36 us (0.5%)
LB compute : 252.26 us (91.6%)
LB move op cnt : 0
LB apply : 4.53 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.50 us (64.5%)
Info: cfl dt = 0.001601954678714643 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2292e+05 | 262144 | 1 | 3.186e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.103438325727456 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5868210102250803, dt = 0.001601954678714643
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.36 us (2.8%)
patch tree reduce : 2.13 us (0.8%)
gen split merge : 889.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.45 us (0.6%)
LB compute : 240.63 us (91.4%)
LB move op cnt : 0
LB apply : 4.03 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.59 us (69.4%)
Info: cfl dt = 0.0016019811072902513 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.1758e+05 | 262144 | 1 | 3.206e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.986416825173116 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5884229649037949, dt = 0.0016019811072902513
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.76 us (2.2%)
patch tree reduce : 1.86 us (0.6%)
gen split merge : 909.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.45 us (0.5%)
LB compute : 281.46 us (92.7%)
LB move op cnt : 0
LB apply : 4.47 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.36 us (65.0%)
Info: cfl dt = 0.0016020073390729252 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.3195e+05 | 262144 | 1 | 3.151e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.302730530809356 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5900249460110851, dt = 0.0016020073390729252
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.35 us (2.6%)
patch tree reduce : 1.74 us (0.6%)
gen split merge : 871.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.69 us (0.6%)
LB compute : 264.12 us (92.1%)
LB move op cnt : 0
LB apply : 4.19 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.72 us (68.9%)
Info: cfl dt = 0.0016020333621486543 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2309e+05 | 262144 | 1 | 3.185e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.108195111889607 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.591626953350158, dt = 0.0016020333621486543
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.17 us (2.6%)
patch tree reduce : 1.67 us (0.6%)
gen split merge : 910.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.49 us (0.5%)
LB compute : 257.12 us (92.1%)
LB move op cnt : 0
LB apply : 4.08 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.36 us (62.5%)
Info: cfl dt = 0.001602059169603222 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2006e+05 | 262144 | 1 | 3.197e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.04181404189481 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5932289867123067, dt = 0.001602059169603222
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.45 us (2.5%)
patch tree reduce : 1.92 us (0.7%)
gen split merge : 1.01 us (0.3%)
split / merge op : 0/0
apply split merge : 1.56 us (0.5%)
LB compute : 269.80 us (92.4%)
LB move op cnt : 0
LB apply : 4.03 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.49 us (65.3%)
Info: cfl dt = 0.0016020847587428359 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.1632e+05 | 262144 | 1 | 3.211e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.95980811333762 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5948310458819099, dt = 0.0016020847587428359
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.88 us (2.5%)
patch tree reduce : 1.84 us (0.7%)
gen split merge : 1.00 us (0.4%)
split / merge op : 0/0
apply split merge : 1.49 us (0.5%)
LB compute : 254.21 us (92.0%)
LB move op cnt : 0
LB apply : 4.30 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.50 us (66.8%)
Info: cfl dt = 0.001602110125633281 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2154e+05 | 262144 | 1 | 3.191e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.07502916297734 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5964331306406527, dt = 0.001602110125633281
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.39 us (2.4%)
patch tree reduce : 1.99 us (0.7%)
gen split merge : 940.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.32 us (0.4%)
LB compute : 280.19 us (92.5%)
LB move op cnt : 0
LB apply : 4.07 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.48 us (65.5%)
Info: cfl dt = 0.0016021352616888496 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2762e+05 | 262144 | 1 | 3.167e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.208916538616986 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.598035240766286, dt = 0.0016021352616888496
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.26 us (2.3%)
patch tree reduce : 1.86 us (0.6%)
gen split merge : 799.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.49 us (0.5%)
LB compute : 293.50 us (92.9%)
LB move op cnt : 0
LB apply : 4.18 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.44 us (64.6%)
Info: cfl dt = 0.0016021601485518822 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.4136e+05 | 262144 | 1 | 3.536e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.311368753322572 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5996373760279748, dt = 0.0016021601485518822
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.57 us (2.6%)
patch tree reduce : 2.30 us (0.8%)
gen split merge : 897.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.29 us (0.4%)
LB compute : 270.28 us (92.1%)
LB move op cnt : 0
LB apply : 4.74 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.58 us (67.3%)
Info: cfl dt = 0.0016021847561906654 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.0288e+05 | 262144 | 1 | 3.730e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.465018436131 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6012395361765267, dt = 0.0016021847561906654
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.94 us (2.3%)
patch tree reduce : 2.22 us (0.7%)
gen split merge : 970.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.59 us (0.5%)
LB compute : 284.00 us (92.7%)
LB move op cnt : 0
LB apply : 3.97 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.42 us (65.8%)
Info: cfl dt = 0.0016022090482169231 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.1857e+05 | 262144 | 1 | 3.202e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.01075334031375 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6028417209327174, dt = 0.0016022090482169231
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.69 us (2.3%)
patch tree reduce : 1.87 us (0.6%)
gen split merge : 981.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.47 us (0.5%)
LB compute : 272.39 us (92.6%)
LB move op cnt : 0
LB apply : 4.36 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.45 us (64.4%)
Info: cfl dt = 0.0016022329836562835 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2498e+05 | 262144 | 1 | 3.178e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.15196638262463 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6044439299809343, dt = 0.0016022329836562835
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.84 us (2.4%)
patch tree reduce : 1.97 us (0.7%)
gen split merge : 1.05 us (0.4%)
split / merge op : 0/0
apply split merge : 1.53 us (0.5%)
LB compute : 258.83 us (92.1%)
LB move op cnt : 0
LB apply : 4.26 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.58 us (67.9%)
Info: cfl dt = 0.0016022565066324348 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.9424e+05 | 262144 | 1 | 3.301e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.475988216071862 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6060461629645906, dt = 0.0016022565066324348
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.55 us (2.8%)
patch tree reduce : 1.70 us (0.6%)
gen split merge : 952.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.42 us (0.5%)
LB compute : 244.00 us (91.5%)
LB move op cnt : 0
LB apply : 4.02 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.59 us (67.6%)
Info: cfl dt = 0.0016022795501331438 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.4623e+05 | 262144 | 1 | 3.513e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.419792597625023 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6076484194712231, dt = 0.0016022795501331438
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.57 us (2.5%)
patch tree reduce : 2.12 us (0.7%)
gen split merge : 878.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.52 us (0.5%)
LB compute : 275.61 us (92.4%)
LB move op cnt : 0
LB apply : 3.93 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.55 us (67.8%)
Info: cfl dt = 0.0016023020390646852 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.6991e+05 | 262144 | 1 | 3.405e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.941054290551236 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6092506990213562, dt = 0.0016023020390646852
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.10 us (2.4%)
patch tree reduce : 2.08 us (0.7%)
gen split merge : 1.02 us (0.3%)
split / merge op : 0/0
apply split merge : 1.70 us (0.6%)
LB compute : 268.47 us (92.3%)
LB move op cnt : 0
LB apply : 4.21 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.83 us (64.0%)
Info: cfl dt = 0.0016023238938032746 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.1951e+05 | 262144 | 1 | 3.199e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.032765718301523 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6108530010604208, dt = 0.0016023238938032746
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.18 us (2.2%)
patch tree reduce : 1.87 us (0.6%)
gen split merge : 867.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.52 us (0.5%)
LB compute : 310.62 us (93.3%)
LB move op cnt : 0
LB apply : 4.22 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.58 us (68.5%)
Info: cfl dt = 0.0016023450369798886 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2462e+05 | 262144 | 1 | 3.179e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.1454339863791 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6124553249542242, dt = 0.0016023450369798886
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.79 us (2.2%)
patch tree reduce : 1.61 us (0.5%)
gen split merge : 1.03 us (0.3%)
split / merge op : 0/0
apply split merge : 1.66 us (0.5%)
LB compute : 287.35 us (92.8%)
LB move op cnt : 0
LB apply : 4.35 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.52 us (66.9%)
Info: cfl dt = 0.0016023653952557167 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.7372e+05 | 262144 | 1 | 3.388e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.02559405037104 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.614057669991204, dt = 0.0016023653952557167
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.72 us (2.3%)
patch tree reduce : 1.78 us (0.6%)
gen split merge : 1.02 us (0.3%)
split / merge op : 0/0
apply split merge : 1.41 us (0.5%)
LB compute : 272.01 us (92.6%)
LB move op cnt : 0
LB apply : 4.24 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.60 us (66.9%)
Info: cfl dt = 0.0016023849175936225 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.1056e+05 | 262144 | 1 | 3.234e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.836405553098036 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6156600353864597, dt = 0.0016023849175936225
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.72 us (2.1%)
patch tree reduce : 1.70 us (0.5%)
gen split merge : 947.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.39 us (0.4%)
LB compute : 299.28 us (93.4%)
LB move op cnt : 0
LB apply : 4.04 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.89 us (65.7%)
Info: cfl dt = 0.0016024035581971813 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 6.9379e+05 | 262144 | 1 | 3.778e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.267051630265819 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6172624203040533, dt = 0.0016024035581971813
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.88 us (2.2%)
patch tree reduce : 1.83 us (0.6%)
gen split merge : 1.05 us (0.3%)
split / merge op : 0/0
apply split merge : 1.51 us (0.5%)
LB compute : 292.55 us (92.9%)
LB move op cnt : 0
LB apply : 4.28 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.58 us (65.0%)
Info: cfl dt = 0.0016024212779739639 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.6605e+05 | 262144 | 1 | 3.422e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.857453865919613 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6188648238622505, dt = 0.0016024212779739639
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.32 us (2.5%)
patch tree reduce : 1.79 us (0.6%)
gen split merge : 1.06 us (0.4%)
split / merge op : 0/0
apply split merge : 1.47 us (0.5%)
LB compute : 270.20 us (92.4%)
LB move op cnt : 0
LB apply : 4.08 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.42 us (64.8%)
Info: cfl dt = 0.0016024380537837026 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.5843e+05 | 262144 | 1 | 3.456e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.689989922460697 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6204672451402244, dt = 0.0016024380537837026
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 8.05 us (2.8%)
patch tree reduce : 1.97 us (0.7%)
gen split merge : 1.13 us (0.4%)
split / merge op : 0/0
apply split merge : 1.61 us (0.6%)
LB compute : 265.85 us (91.9%)
LB move op cnt : 0
LB apply : 4.17 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.40 us (63.7%)
Info: cfl dt = 0.001602453865174651 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.5055e+05 | 262144 | 1 | 3.493e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.516644065717816 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6220696831940081, dt = 0.001602453865174651
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.87 us (2.4%)
patch tree reduce : 1.92 us (0.7%)
gen split merge : 1.02 us (0.4%)
split / merge op : 0/0
apply split merge : 1.37 us (0.5%)
LB compute : 264.66 us (92.2%)
LB move op cnt : 0
LB apply : 4.37 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.53 us (67.7%)
Info: cfl dt = 0.001602468708335979 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3855e+05 | 262144 | 1 | 3.549e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.252736965828397 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6236721370591828, dt = 0.001602468708335979
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.80 us (2.5%)
patch tree reduce : 1.66 us (0.6%)
gen split merge : 1.17 us (0.4%)
split / merge op : 0/0
apply split merge : 1.41 us (0.5%)
LB compute : 251.71 us (91.8%)
LB move op cnt : 0
LB apply : 4.49 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.50 us (66.4%)
Info: cfl dt = 0.0016024826128339647 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.4374e+05 | 262144 | 1 | 3.107e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.567729027607754 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6252746057675188, dt = 0.0016024826128339647
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.47 us (2.8%)
patch tree reduce : 1.95 us (0.7%)
gen split merge : 1.04 us (0.4%)
split / merge op : 0/0
apply split merge : 1.43 us (0.5%)
LB compute : 245.18 us (91.4%)
LB move op cnt : 0
LB apply : 4.36 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.44 us (66.1%)
Info: cfl dt = 0.0016024956271667396 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.7271e+05 | 262144 | 1 | 3.393e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.00475834557591 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6268770883803527, dt = 0.0016024956271667396
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.29 us (2.4%)
patch tree reduce : 1.91 us (0.6%)
gen split merge : 957.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.41 us (0.5%)
LB compute : 278.63 us (92.3%)
LB move op cnt : 0
LB apply : 4.51 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.41 us (64.9%)
Info: cfl dt = 0.0016025078067542998 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.1714e+05 | 262144 | 1 | 3.208e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.98269131407101 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6284795840075195, dt = 0.0016025078067542998
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.96 us (2.7%)
patch tree reduce : 1.81 us (0.7%)
gen split merge : 980.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.49 us (0.6%)
LB compute : 234.89 us (91.2%)
LB move op cnt : 0
LB apply : 4.07 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.33 us (62.9%)
Info: cfl dt = 0.0016025190550443588 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.0998e+05 | 262144 | 1 | 3.692e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.624504148025585 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6300820918142738, dt = 0.0016025190550443588
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.42 us (2.7%)
patch tree reduce : 1.80 us (0.7%)
gen split merge : 941.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.27 us (0.5%)
LB compute : 250.47 us (91.7%)
LB move op cnt : 0
LB apply : 4.41 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.57 us (68.2%)
Info: cfl dt = 0.0016025284692910292 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.3160e+05 | 262144 | 1 | 3.152e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.301263190444306 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6316846108693182, dt = 0.0016025284692910292
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.79 us (2.3%)
patch tree reduce : 1.84 us (0.6%)
gen split merge : 965.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.45 us (0.5%)
LB compute : 274.97 us (92.4%)
LB move op cnt : 0
LB apply : 4.24 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.48 us (65.4%)
Info: cfl dt = 0.0016025363285416688 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.1329e+05 | 262144 | 1 | 3.223e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.898331679411996 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6332871393386091, dt = 0.0016025363285416688
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.77 us (2.6%)
patch tree reduce : 1.80 us (0.7%)
gen split merge : 1.04 us (0.4%)
split / merge op : 0/0
apply split merge : 1.41 us (0.5%)
LB compute : 241.52 us (91.5%)
LB move op cnt : 0
LB apply : 4.29 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.50 us (66.3%)
Info: cfl dt = 0.0016025428741948675 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2085e+05 | 262144 | 1 | 3.194e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.06495133957598 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6348896756671508, dt = 0.0016025428741948675
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.63 us (2.4%)
patch tree reduce : 1.85 us (0.6%)
gen split merge : 1.11 us (0.4%)
split / merge op : 0/0
apply split merge : 1.37 us (0.4%)
LB compute : 289.08 us (92.7%)
LB move op cnt : 0
LB apply : 4.30 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.62 us (68.2%)
Info: cfl dt = 0.0016025483125191365 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.4508e+05 | 262144 | 1 | 3.518e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.397341630017067 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6364922185413456, dt = 0.0016025483125191365
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.50 us (2.2%)
patch tree reduce : 1.70 us (0.5%)
gen split merge : 996.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.65 us (0.5%)
LB compute : 325.38 us (93.5%)
LB move op cnt : 0
LB apply : 4.12 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.49 us (66.1%)
Info: cfl dt = 0.0016025527673833842 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 6.9208e+05 | 262144 | 1 | 3.788e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.231043449094544 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6380947668538648, dt = 0.0016025527673833842
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.30 us (2.3%)
patch tree reduce : 1.88 us (0.6%)
gen split merge : 1.04 us (0.3%)
split / merge op : 0/0
apply split merge : 1.52 us (0.5%)
LB compute : 293.74 us (92.7%)
LB move op cnt : 0
LB apply : 4.40 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.67 us (68.1%)
Info: cfl dt = 0.0016025563147660084 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.1209e+05 | 262144 | 1 | 3.228e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.872290516701117 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6396973196212482, dt = 0.0016025563147660084
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.50 us (2.7%)
patch tree reduce : 1.90 us (0.7%)
gen split merge : 940.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.37 us (0.5%)
LB compute : 250.67 us (91.8%)
LB move op cnt : 0
LB apply : 4.36 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.54 us (67.7%)
Info: cfl dt = 0.001602559029244346 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.5887e+05 | 262144 | 1 | 3.052e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.901786642792135 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6412998759360142, dt = 0.001602559029244346
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.04 us (2.3%)
patch tree reduce : 1.98 us (0.7%)
gen split merge : 950.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.48 us (0.5%)
LB compute : 280.29 us (92.7%)
LB move op cnt : 0
LB apply : 4.27 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.50 us (64.1%)
Info: cfl dt = 0.0016025610427657059 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3692e+05 | 262144 | 1 | 3.557e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.218021441654408 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6429024349652586, dt = 0.0016025610427657059
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.22 us (2.3%)
patch tree reduce : 1.95 us (0.6%)
gen split merge : 1.02 us (0.3%)
split / merge op : 0/0
apply split merge : 1.43 us (0.5%)
LB compute : 285.19 us (92.7%)
LB move op cnt : 0
LB apply : 4.20 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.73 us (69.8%)
Info: cfl dt = 0.0016025623785240215 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 6.7744e+05 | 262144 | 1 | 3.870e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.90904893387173 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6445049960080242, dt = 0.0016025623785240215
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.25 us (2.1%)
patch tree reduce : 1.93 us (0.6%)
gen split merge : 1.22 us (0.4%)
split / merge op : 0/0
apply split merge : 1.40 us (0.4%)
LB compute : 314.71 us (93.2%)
LB move op cnt : 0
LB apply : 4.27 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.50 us (65.5%)
Info: cfl dt = 0.0016025630492267648 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.1964e+05 | 262144 | 1 | 3.198e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.03844226278368 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6461075583865483, dt = 0.0016025630492267648
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.50 us (2.6%)
patch tree reduce : 1.87 us (0.7%)
gen split merge : 998.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.51 us (0.5%)
LB compute : 263.10 us (92.0%)
LB move op cnt : 0
LB apply : 4.00 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.68 us (69.9%)
Info: cfl dt = 0.0016025630629432446 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.1681e+05 | 262144 | 1 | 3.209e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.97615826166749 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6477101214357751, dt = 0.0016025630629432446
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.15 us (2.3%)
patch tree reduce : 1.91 us (0.6%)
gen split merge : 935.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.42 us (0.5%)
LB compute : 292.07 us (93.0%)
LB move op cnt : 0
LB apply : 4.23 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.55 us (66.3%)
Info: cfl dt = 0.0016025624280042769 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 6.9936e+05 | 262144 | 1 | 3.748e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.391388614958126 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6493126844987184, dt = 0.0016025624280042769
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.55 us (2.7%)
patch tree reduce : 2.00 us (0.7%)
gen split merge : 982.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.42 us (0.5%)
LB compute : 257.22 us (91.7%)
LB move op cnt : 0
LB apply : 4.39 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.48 us (65.9%)
Info: cfl dt = 0.0016025611468479378 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.1230e+05 | 262144 | 1 | 3.227e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.876960191867177 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6509152469267226, dt = 0.0016025611468479378
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.78 us (2.7%)
patch tree reduce : 1.96 us (0.7%)
gen split merge : 1.02 us (0.4%)
split / merge op : 0/0
apply split merge : 1.47 us (0.5%)
LB compute : 265.85 us (92.0%)
LB move op cnt : 0
LB apply : 4.66 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.42 us (66.8%)
Info: cfl dt = 0.0016025592173195252 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2147e+05 | 262144 | 1 | 3.191e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.078680512911472 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6525178080735706, dt = 0.0016025592173195252
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.56 us (2.8%)
patch tree reduce : 1.65 us (0.6%)
gen split merge : 980.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.22 us (0.5%)
LB compute : 244.39 us (91.5%)
LB move op cnt : 0
LB apply : 4.36 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.50 us (66.0%)
Info: cfl dt = 0.0016025566693805074 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.1661e+05 | 262144 | 1 | 3.658e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.770918690710163 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6541203672908902, dt = 0.0016025566693805074
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.72 us (2.3%)
patch tree reduce : 1.89 us (0.6%)
gen split merge : 872.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.41 us (0.5%)
LB compute : 273.52 us (92.7%)
LB move op cnt : 0
LB apply : 4.28 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.09 us (67.5%)
Info: cfl dt = 0.0016025535456294182 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.5818e+05 | 262144 | 1 | 3.458e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.68575514273455 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6557229239602707, dt = 0.0016025535456294182
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.40 us (2.4%)
patch tree reduce : 1.64 us (0.5%)
gen split merge : 1.04 us (0.3%)
split / merge op : 0/0
apply split merge : 1.42 us (0.5%)
LB compute : 284.61 us (92.7%)
LB move op cnt : 0
LB apply : 3.99 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.85 us (60.5%)
Info: cfl dt = 0.0016025498369028094 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3095e+05 | 262144 | 1 | 3.586e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.08652286050206 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6573254775059001, dt = 0.0016025498369028094
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.30 us (2.8%)
patch tree reduce : 1.96 us (0.8%)
gen split merge : 862.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.34 us (0.5%)
LB compute : 236.54 us (91.3%)
LB move op cnt : 0
LB apply : 4.15 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.84 us (65.6%)
Info: cfl dt = 0.001602545530883242 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.0988e+05 | 262144 | 1 | 3.237e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.82357376067612 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6589280273428029, dt = 0.001602545530883242
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.00 us (2.4%)
patch tree reduce : 2.03 us (0.7%)
gen split merge : 1.01 us (0.3%)
split / merge op : 0/0
apply split merge : 1.44 us (0.5%)
LB compute : 267.03 us (92.3%)
LB move op cnt : 0
LB apply : 3.98 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.36 us (65.1%)
Info: cfl dt = 0.001602540687905217 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.0764e+05 | 262144 | 1 | 3.246e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.774296537129853 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6605305728736861, dt = 0.0009277604596472644
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.22 us (2.3%)
patch tree reduce : 1.99 us (0.6%)
gen split merge : 980.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.30 us (0.4%)
LB compute : 295.04 us (92.8%)
LB move op cnt : 0
LB apply : 4.54 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.48 us (64.6%)
Info: cfl dt = 0.001602540511084447 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.1325e+05 | 262144 | 1 | 3.223e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10.361488668976826 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 149.590307583 (s) [Godunov][rank=0]
Info: dump to _to_trash/ramses_kh/periodic_0006.vtk [VTK Dump][rank=0]
- took 36.50 ms, bandwidth = 1.12 GB/s
amr::Godunov: t = 0.6614583333333334, dt = 0.001602540511084447
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 8.15 us (2.9%)
patch tree reduce : 1.91 us (0.7%)
gen split merge : 896.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.44 us (0.5%)
LB compute : 252.97 us (91.4%)
LB move op cnt : 0
LB apply : 4.42 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.53 us (66.8%)
Info: cfl dt = 0.001602533270241182 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.1226e+05 | 262144 | 1 | 3.227e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.87575937453989 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6630608738444178, dt = 0.001602533270241182
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.78 us (2.5%)
patch tree reduce : 2.00 us (0.7%)
gen split merge : 974.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.59 us (0.6%)
LB compute : 250.30 us (91.4%)
LB move op cnt : 0
LB apply : 4.13 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.56 us (69.3%)
Info: cfl dt = 0.0016025263644908266 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2284e+05 | 262144 | 1 | 3.186e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.10860377420685 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.664663407114659, dt = 0.0016025263644908266
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.81 us (2.5%)
patch tree reduce : 1.92 us (0.7%)
gen split merge : 941.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.44 us (0.5%)
LB compute : 245.29 us (91.9%)
LB move op cnt : 0
LB apply : 3.96 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.42 us (64.5%)
Info: cfl dt = 0.00160252027340078 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.3034e+05 | 262144 | 1 | 3.157e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.273544699368774 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6662659334791499, dt = 0.00160252027340078
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.61 us (2.8%)
patch tree reduce : 1.77 us (0.7%)
gen split merge : 929.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.40 us (0.5%)
LB compute : 245.39 us (91.4%)
LB move op cnt : 0
LB apply : 4.38 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.38 us (63.3%)
Info: cfl dt = 0.0016025152345840814 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.1209e+05 | 262144 | 1 | 3.228e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.871779642991378 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6678684537525507, dt = 0.0016025152345840814
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.68 us (2.4%)
patch tree reduce : 1.96 us (0.7%)
gen split merge : 962.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.38 us (0.5%)
LB compute : 251.86 us (92.1%)
LB move op cnt : 0
LB apply : 4.17 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.63 us (69.6%)
Info: cfl dt = 0.001602511311639814 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.1937e+05 | 262144 | 1 | 3.199e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.032030653568984 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6694709689871348, dt = 0.001602511311639814
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.93 us (2.6%)
patch tree reduce : 1.78 us (0.7%)
gen split merge : 946.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.52 us (0.6%)
LB compute : 242.29 us (91.8%)
LB move op cnt : 0
LB apply : 3.99 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.48 us (64.7%)
Info: cfl dt = 0.0016025084820613022 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.1248e+05 | 262144 | 1 | 3.226e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.88046617986642 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6710734802987746, dt = 0.0016025084820613022
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.50 us (2.8%)
patch tree reduce : 1.74 us (0.7%)
gen split merge : 1.06 us (0.4%)
split / merge op : 0/0
apply split merge : 1.45 us (0.5%)
LB compute : 243.92 us (91.5%)
LB move op cnt : 0
LB apply : 4.44 us (1.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.43 us (67.2%)
Info: cfl dt = 0.001602506704212331 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.1703e+05 | 262144 | 1 | 3.208e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.980560811566992 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6726759887808359, dt = 0.001602506704212331
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.90 us (2.4%)
patch tree reduce : 1.77 us (0.6%)
gen split merge : 934.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.61 us (0.6%)
LB compute : 268.21 us (92.5%)
LB move op cnt : 0
LB apply : 4.16 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.89 us (64.9%)
Info: cfl dt = 0.0016025059655813416 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.0986e+05 | 262144 | 1 | 3.237e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.822646713827226 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6742784954850483, dt = 0.0016025059655813416
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.01 us (2.4%)
patch tree reduce : 1.96 us (0.7%)
gen split merge : 1.28 us (0.4%)
split / merge op : 0/0
apply split merge : 1.37 us (0.5%)
LB compute : 265.17 us (92.2%)
LB move op cnt : 0
LB apply : 4.14 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.60 us (68.2%)
Info: cfl dt = 0.0016025063028471153 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.1374e+05 | 262144 | 1 | 3.221e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.907974758984608 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6758810014506296, dt = 0.0016025063028471153
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.08 us (2.2%)
patch tree reduce : 1.99 us (0.6%)
gen split merge : 855.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.45 us (0.4%)
LB compute : 304.00 us (93.0%)
LB move op cnt : 0
LB apply : 4.42 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.47 us (67.7%)
Info: cfl dt = 0.0016025078022431569 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.1329e+05 | 262144 | 1 | 3.223e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.898137746733077 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6774835077534767, dt = 0.0016025078022431569
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.86 us (2.6%)
patch tree reduce : 1.88 us (0.7%)
gen split merge : 1.00 us (0.4%)
split / merge op : 0/0
apply split merge : 1.50 us (0.6%)
LB compute : 241.54 us (91.3%)
LB move op cnt : 0
LB apply : 4.39 us (1.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.41 us (65.7%)
Info: cfl dt = 0.001602510586708291 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.1761e+05 | 262144 | 1 | 3.206e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.993330735584035 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6790860155557198, dt = 0.001602510586708291
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.30 us (2.8%)
patch tree reduce : 2.06 us (0.8%)
gen split merge : 842.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.38 us (0.5%)
LB compute : 239.65 us (91.4%)
LB move op cnt : 0
LB apply : 4.24 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.38 us (65.4%)
Info: cfl dt = 0.0016025147984676075 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2324e+05 | 262144 | 1 | 3.184e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.117135998091058 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.680688526142428, dt = 0.0016025147984676075
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.96 us (2.3%)
patch tree reduce : 1.90 us (0.6%)
gen split merge : 912.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.96 us (0.6%)
LB compute : 281.93 us (92.5%)
LB move op cnt : 0
LB apply : 4.39 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.36 us (64.9%)
Info: cfl dt = 0.0016025205706338686 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.1782e+05 | 262144 | 1 | 3.205e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.99799118966811 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6822910409408957, dt = 0.0016025205706338686
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.64 us (2.2%)
patch tree reduce : 1.96 us (0.6%)
gen split merge : 996.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.72 us (0.6%)
LB compute : 285.80 us (92.6%)
LB move op cnt : 0
LB apply : 4.42 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.57 us (66.9%)
Info: cfl dt = 0.0016025280301967143 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2897e+05 | 262144 | 1 | 3.162e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.243391041798308 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6838935615115295, dt = 0.0016025280301967143
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.83 us (2.3%)
patch tree reduce : 1.97 us (0.7%)
gen split merge : 985.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.81 us (0.6%)
LB compute : 275.57 us (92.5%)
LB move op cnt : 0
LB apply : 4.23 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.53 us (65.4%)
Info: cfl dt = 0.0016025372763557877 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.1201e+05 | 262144 | 1 | 3.228e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.87022634659789 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6854960895417261, dt = 0.0016025372763557877
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.05 us (2.3%)
patch tree reduce : 1.96 us (0.7%)
gen split merge : 998.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.42 us (0.5%)
LB compute : 278.15 us (92.5%)
LB move op cnt : 0
LB apply : 4.23 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.72 us (64.3%)
Info: cfl dt = 0.0016025484102763245 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2510e+05 | 262144 | 1 | 3.177e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.15842630507013 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.687098626818082, dt = 0.0016025484102763245
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.53 us (2.2%)
patch tree reduce : 1.93 us (0.7%)
gen split merge : 1.06 us (0.4%)
split / merge op : 0/0
apply split merge : 1.55 us (0.5%)
LB compute : 273.37 us (92.6%)
LB move op cnt : 0
LB apply : 4.37 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 10.43 us (90.7%)
Info: cfl dt = 0.0016025615556484623 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.1019e+05 | 262144 | 1 | 3.236e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.830280828808036 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6887011752283583, dt = 0.0016025615556484623
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.73 us (2.2%)
patch tree reduce : 1.73 us (0.6%)
gen split merge : 788.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.02 us (0.3%)
LB compute : 287.60 us (93.3%)
LB move op cnt : 0
LB apply : 4.06 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.58 us (66.4%)
Info: cfl dt = 0.0016025766519705985 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 6.7308e+05 | 262144 | 1 | 3.895e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.812989887531394 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6903037367840067, dt = 0.0016025766519705985
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.40 us (2.6%)
patch tree reduce : 1.75 us (0.6%)
gen split merge : 877.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.50 us (0.5%)
LB compute : 259.98 us (92.2%)
LB move op cnt : 0
LB apply : 3.81 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.50 us (67.3%)
Info: cfl dt = 0.001602593674379365 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 6.8522e+05 | 262144 | 1 | 3.826e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.080367159745787 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6919063134359773, dt = 0.001602593674379365
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.07 us (2.5%)
patch tree reduce : 1.81 us (0.6%)
gen split merge : 996.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.58 us (0.6%)
LB compute : 264.27 us (92.3%)
LB move op cnt : 0
LB apply : 4.24 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.58 us (68.9%)
Info: cfl dt = 0.0016026125563650515 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 6.8091e+05 | 262144 | 1 | 3.850e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.985658435240994 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6935089071103566, dt = 0.0016026125563650515
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.22 us (2.6%)
patch tree reduce : 1.89 us (0.7%)
gen split merge : 1.04 us (0.4%)
split / merge op : 0/0
apply split merge : 1.42 us (0.5%)
LB compute : 260.51 us (92.1%)
LB move op cnt : 0
LB apply : 4.11 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.44 us (66.2%)
Info: cfl dt = 0.0016026331731211676 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.6400e+05 | 262144 | 1 | 3.431e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.814460767453582 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6951115196667217, dt = 0.0016026331731211676
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.22 us (1.2%)
patch tree reduce : 1.94 us (0.3%)
gen split merge : 1.03 us (0.2%)
split / merge op : 0/0
apply split merge : 1.43 us (0.2%)
LB compute : 596.89 us (96.3%)
LB move op cnt : 0
LB apply : 4.49 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.84 us (78.1%)
Info: cfl dt = 0.0016026553489817273 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.1738e+05 | 262144 | 1 | 3.207e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.989539524036097 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6967141528398428, dt = 0.0016026553489817273
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.83 us (2.7%)
patch tree reduce : 1.75 us (0.7%)
gen split merge : 933.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.40 us (0.5%)
LB compute : 235.58 us (91.7%)
LB move op cnt : 0
LB apply : 3.88 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.95 us (66.5%)
Info: cfl dt = 0.0016026788824123177 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.0504e+05 | 262144 | 1 | 3.718e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.517243130611543 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6983168081888246, dt = 0.0016026788824123177
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.72 us (2.6%)
patch tree reduce : 1.76 us (0.7%)
gen split merge : 941.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.49 us (0.6%)
LB compute : 233.86 us (91.5%)
LB move op cnt : 0
LB apply : 3.93 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.78 us (63.4%)
Info: cfl dt = 0.0016027035549316157 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.6996e+05 | 262144 | 1 | 3.405e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.94647506131887 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6999194870712369, dt = 0.0016027035549316157
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.81 us (2.6%)
patch tree reduce : 1.99 us (0.8%)
gen split merge : 1.30 us (0.5%)
split / merge op : 0/0
apply split merge : 1.32 us (0.5%)
LB compute : 239.17 us (91.3%)
LB move op cnt : 0
LB apply : 4.32 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.52 us (65.9%)
Info: cfl dt = 0.0016027291326007288 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.1218e+05 | 262144 | 1 | 3.681e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.675016692163245 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7015221906261685, dt = 0.0016027291326007288
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 8.37 us (3.0%)
patch tree reduce : 2.00 us (0.7%)
gen split merge : 947.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.41 us (0.5%)
LB compute : 252.38 us (91.5%)
LB move op cnt : 0
LB apply : 3.98 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.49 us (66.5%)
Info: cfl dt = 0.0016027553661710615 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.1271e+05 | 262144 | 1 | 3.678e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.686835703992799 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7031249197587692, dt = 0.0016027553661710615
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.92 us (2.5%)
patch tree reduce : 1.86 us (0.7%)
gen split merge : 1.01 us (0.4%)
split / merge op : 0/0
apply split merge : 1.48 us (0.5%)
LB compute : 249.94 us (91.9%)
LB move op cnt : 0
LB apply : 4.02 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.52 us (66.3%)
Info: cfl dt = 0.0016027820020151169 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2331e+05 | 262144 | 1 | 3.184e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.12139611416377 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7047276751249403, dt = 0.0016027820020151169
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.21 us (2.4%)
patch tree reduce : 1.73 us (0.6%)
gen split merge : 1.06 us (0.4%)
split / merge op : 0/0
apply split merge : 1.58 us (0.5%)
LB compute : 275.67 us (92.4%)
LB move op cnt : 0
LB apply : 3.81 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.88 us (63.5%)
Info: cfl dt = 0.0016028087969288919 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.4767e+05 | 262144 | 1 | 3.506e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.45694317916056 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7063304571269554, dt = 0.0016028087969288919
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.22 us (2.8%)
patch tree reduce : 2.08 us (0.8%)
gen split merge : 1.28 us (0.5%)
split / merge op : 0/0
apply split merge : 1.36 us (0.5%)
LB compute : 237.43 us (91.1%)
LB move op cnt : 0
LB apply : 4.15 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.75 us (71.1%)
Info: cfl dt = 0.001602835530867807 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2417e+05 | 262144 | 1 | 3.181e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.14100127826193 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7079332659238843, dt = 0.001602835530867807
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.78 us (2.2%)
patch tree reduce : 1.67 us (0.5%)
gen split merge : 1.02 us (0.3%)
split / merge op : 0/0
apply split merge : 1.56 us (0.5%)
LB compute : 293.50 us (93.1%)
LB move op cnt : 0
LB apply : 4.06 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.59 us (66.4%)
Info: cfl dt = 0.001602861810216569 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.7680e+05 | 262144 | 1 | 3.375e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.09864144520483 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7095361014547521, dt = 0.001602861810216569
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.47 us (2.5%)
patch tree reduce : 2.11 us (0.8%)
gen split merge : 912.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.61 us (0.6%)
LB compute : 240.02 us (91.6%)
LB move op cnt : 0
LB apply : 4.27 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.48 us (67.5%)
Info: cfl dt = 0.0016028874992043646 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.0288e+05 | 262144 | 1 | 3.265e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.672885283308663 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7111389632649686, dt = 0.0016028874992043646
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.23 us (2.3%)
patch tree reduce : 1.71 us (0.6%)
gen split merge : 890.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.48 us (0.5%)
LB compute : 286.03 us (92.9%)
LB move op cnt : 0
LB apply : 4.00 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.45 us (65.4%)
Info: cfl dt = 0.001602912579695846 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.1046e+05 | 262144 | 1 | 3.690e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.638783987918341 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.712741850764173, dt = 0.001602912579695846
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.58 us (2.2%)
patch tree reduce : 1.95 us (0.7%)
gen split merge : 970.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.49 us (0.5%)
LB compute : 275.25 us (92.7%)
LB move op cnt : 0
LB apply : 3.79 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.94 us (66.5%)
Info: cfl dt = 0.0016029370412804006 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.9508e+05 | 262144 | 1 | 3.297e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.501823757786944 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7143447633438688, dt = 0.0016029370412804006
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.85 us (2.4%)
patch tree reduce : 2.02 us (0.7%)
gen split merge : 970.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.29 us (0.5%)
LB compute : 263.33 us (92.4%)
LB move op cnt : 0
LB apply : 3.87 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.45 us (66.8%)
Info: cfl dt = 0.0016029608931723534 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.1780e+05 | 262144 | 1 | 3.205e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.002114924812815 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7159477003851492, dt = 0.0016029608931723534
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.54 us (2.6%)
patch tree reduce : 1.86 us (0.6%)
gen split merge : 1.07 us (0.4%)
split / merge op : 0/0
apply split merge : 1.37 us (0.5%)
LB compute : 271.17 us (92.2%)
LB move op cnt : 0
LB apply : 4.11 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.50 us (66.0%)
Info: cfl dt = 0.001602984063123024 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.5410e+05 | 262144 | 1 | 3.069e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.80167780370634 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7175506612783216, dt = 0.001602984063123024
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.09 us (2.3%)
patch tree reduce : 1.69 us (0.6%)
gen split merge : 906.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.56 us (0.5%)
LB compute : 282.93 us (92.8%)
LB move op cnt : 0
LB apply : 3.80 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.97 us (66.2%)
Info: cfl dt = 0.0016030065282423935 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.1409e+05 | 262144 | 1 | 3.220e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.92104558497133 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7191536453414445, dt = 0.0016030065282423935
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.97 us (2.2%)
patch tree reduce : 2.06 us (0.6%)
gen split merge : 1.11 us (0.3%)
split / merge op : 0/0
apply split merge : 1.56 us (0.5%)
LB compute : 299.73 us (93.0%)
LB move op cnt : 0
LB apply : 4.15 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.69 us (69.0%)
Info: cfl dt = 0.0016030282236919992 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.1258e+05 | 262144 | 1 | 3.226e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.88799685883435 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.720756651869687, dt = 0.0016030282236919992
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.61 us (2.1%)
patch tree reduce : 1.67 us (0.5%)
gen split merge : 771.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.62 us (0.5%)
LB compute : 300.24 us (93.3%)
LB move op cnt : 0
LB apply : 4.01 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.68 us (69.0%)
Info: cfl dt = 0.0016030490402747643 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.0122e+05 | 262144 | 1 | 3.272e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.638210889642963 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7223596800933789, dt = 0.0016030490402747643
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.98 us (2.6%)
patch tree reduce : 1.90 us (0.7%)
gen split merge : 961.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.41 us (0.5%)
LB compute : 245.65 us (91.6%)
LB move op cnt : 0
LB apply : 4.05 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.37 us (64.5%)
Info: cfl dt = 0.0016030688914240292 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.1513e+05 | 262144 | 1 | 3.216e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.944730022411417 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7239627291336537, dt = 0.0016030688914240292
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.76 us (3.0%)
patch tree reduce : 1.77 us (0.7%)
gen split merge : 1.12 us (0.4%)
split / merge op : 0/0
apply split merge : 1.43 us (0.5%)
LB compute : 238.80 us (91.2%)
LB move op cnt : 0
LB apply : 3.87 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.46 us (66.7%)
Info: cfl dt = 0.0016030876670731196 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.1299e+05 | 262144 | 1 | 3.224e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.8977671827277 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7255657980250777, dt = 0.0016030876670731196
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.86 us (2.0%)
patch tree reduce : 1.89 us (0.6%)
gen split merge : 1.06 us (0.3%)
split / merge op : 0/0
apply split merge : 1.47 us (0.4%)
LB compute : 314.54 us (93.3%)
LB move op cnt : 0
LB apply : 4.56 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.69 us (67.0%)
Info: cfl dt = 0.0016031052505175167 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3062e+05 | 262144 | 1 | 3.588e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.084695211996063 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7271688856921508, dt = 0.0016031052505175167
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.71 us (2.4%)
patch tree reduce : 1.93 us (0.7%)
gen split merge : 878.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.51 us (0.5%)
LB compute : 257.26 us (91.9%)
LB move op cnt : 0
LB apply : 4.27 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.48 us (65.1%)
Info: cfl dt = 0.0016031215299859456 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.1420e+05 | 262144 | 1 | 3.220e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.924806855751395 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7287719909426683, dt = 0.0016031215299859456
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.31 us (2.7%)
patch tree reduce : 1.72 us (0.6%)
gen split merge : 998.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.50 us (0.6%)
LB compute : 246.76 us (91.7%)
LB move op cnt : 0
LB apply : 4.36 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.59 us (67.0%)
Info: cfl dt = 0.0016031364287506119 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2040e+05 | 262144 | 1 | 3.195e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.06146454307032 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7303751124726543, dt = 0.0016031364287506119
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.36 us (2.3%)
patch tree reduce : 1.71 us (0.5%)
gen split merge : 1.05 us (0.3%)
split / merge op : 0/0
apply split merge : 1.63 us (0.5%)
LB compute : 304.16 us (93.2%)
LB move op cnt : 0
LB apply : 4.04 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.58 us (65.2%)
Info: cfl dt = 0.0016031499038894003 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.3192e+05 | 262144 | 1 | 3.151e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.31543252818003 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.731978248901405, dt = 0.0016031499038894003
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.36 us (2.4%)
patch tree reduce : 1.82 us (0.6%)
gen split merge : 1.19 us (0.4%)
split / merge op : 0/0
apply split merge : 1.51 us (0.5%)
LB compute : 278.90 us (92.4%)
LB move op cnt : 0
LB apply : 4.62 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.43 us (63.9%)
Info: cfl dt = 0.0016031619678276005 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.1594e+05 | 262144 | 1 | 3.213e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.96357761739178 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7335813988052944, dt = 0.0016031619678276005
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.26 us (2.6%)
patch tree reduce : 1.82 us (0.7%)
gen split merge : 1.00 us (0.4%)
split / merge op : 0/0
apply split merge : 1.34 us (0.5%)
LB compute : 252.95 us (91.9%)
LB move op cnt : 0
LB apply : 4.47 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.52 us (64.6%)
Info: cfl dt = 0.0016031726918133717 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2004e+05 | 262144 | 1 | 3.197e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.054071976357754 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.735184560773122, dt = 0.0016031726918133717
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.26 us (2.7%)
patch tree reduce : 1.92 us (0.7%)
gen split merge : 1.05 us (0.4%)
split / merge op : 0/0
apply split merge : 1.41 us (0.5%)
LB compute : 250.68 us (91.8%)
LB move op cnt : 0
LB apply : 3.92 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.46 us (65.8%)
Info: cfl dt = 0.001603182198162931 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2271e+05 | 262144 | 1 | 3.186e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.112884292079695 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7367877334649354, dt = 0.001603182198162931
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.39 us (2.7%)
patch tree reduce : 1.75 us (0.6%)
gen split merge : 1.05 us (0.4%)
split / merge op : 0/0
apply split merge : 1.41 us (0.5%)
LB compute : 254.32 us (91.9%)
LB move op cnt : 0
LB apply : 4.20 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.83 us (64.7%)
Info: cfl dt = 0.0016031906312606297 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.1598e+05 | 262144 | 1 | 3.213e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.964942179825528 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7383909156630983, dt = 0.0016031906312606297
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 8.11 us (2.8%)
patch tree reduce : 1.95 us (0.7%)
gen split merge : 938.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.83 us (0.6%)
LB compute : 269.89 us (92.0%)
LB move op cnt : 0
LB apply : 4.43 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.66 us (69.6%)
Info: cfl dt = 0.001603198125524976 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2109e+05 | 262144 | 1 | 3.193e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.077550135535954 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7399941062943589, dt = 0.001603198125524976
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.27 us (2.5%)
patch tree reduce : 1.76 us (0.6%)
gen split merge : 1.03 us (0.3%)
split / merge op : 0/0
apply split merge : 1.50 us (0.5%)
LB compute : 270.56 us (92.4%)
LB move op cnt : 0
LB apply : 4.12 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.43 us (65.2%)
Info: cfl dt = 0.0016032048217145083 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.1569e+05 | 262144 | 1 | 3.214e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.95866500731217 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7415973044198839, dt = 0.0016032048217145083
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.87 us (2.6%)
patch tree reduce : 1.83 us (0.7%)
gen split merge : 845.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.58 us (0.6%)
LB compute : 240.60 us (91.6%)
LB move op cnt : 0
LB apply : 4.00 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.42 us (62.9%)
Info: cfl dt = 0.001603210829198019 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.5326e+05 | 262144 | 1 | 3.480e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.584231109901395 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7432005092415984, dt = 0.001603210829198019
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.02 us (2.6%)
patch tree reduce : 1.91 us (0.7%)
gen split merge : 1.01 us (0.4%)
split / merge op : 0/0
apply split merge : 1.71 us (0.6%)
LB compute : 239.87 us (88.0%)
LB move op cnt : 0
LB apply : 13.86 us (5.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.55 us (67.6%)
Info: cfl dt = 0.001603216226446468 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.8316e+05 | 262144 | 1 | 3.347e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.242574629352642 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7448037200707964, dt = 0.001603216226446468
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.85 us (2.7%)
patch tree reduce : 1.77 us (0.7%)
gen split merge : 1.06 us (0.4%)
split / merge op : 0/0
apply split merge : 1.40 us (0.5%)
LB compute : 235.37 us (91.4%)
LB move op cnt : 0
LB apply : 4.22 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.80 us (66.1%)
Info: cfl dt = 0.0016032210510216135 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.2826e+05 | 262144 | 1 | 3.600e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.034059049111136 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7464069362972429, dt = 0.0016032210510216135
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.81 us (3.0%)
patch tree reduce : 1.75 us (0.7%)
gen split merge : 1.03 us (0.4%)
split / merge op : 0/0
apply split merge : 1.68 us (0.6%)
LB compute : 229.42 us (87.4%)
LB move op cnt : 0
LB apply : 4.08 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.43 us (65.4%)
Info: cfl dt = 0.0016032252982541293 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.5800e+05 | 262144 | 1 | 3.458e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.688718841944006 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7480101573482645, dt = 0.0016032252982541293
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.14 us (2.6%)
patch tree reduce : 1.69 us (0.6%)
gen split merge : 870.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.19 us (0.4%)
LB compute : 255.56 us (92.1%)
LB move op cnt : 0
LB apply : 4.49 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.63 us (67.0%)
Info: cfl dt = 0.0016032289448794897 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.7542e+05 | 262144 | 1 | 3.381e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.072471207734147 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7496133826465186, dt = 0.0016032289448794897
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.35 us (2.3%)
patch tree reduce : 1.85 us (0.7%)
gen split merge : 877.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.03 us (0.4%)
LB compute : 257.07 us (92.5%)
LB move op cnt : 0
LB apply : 4.42 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.62 us (67.8%)
Info: cfl dt = 0.0016032319622380992 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.1753e+05 | 262144 | 1 | 3.207e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.999608678141932 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7512166115913981, dt = 0.0016032319622380992
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.49 us (2.5%)
patch tree reduce : 1.90 us (0.6%)
gen split merge : 1.06 us (0.3%)
split / merge op : 0/0
apply split merge : 1.77 us (0.6%)
LB compute : 280.27 us (92.4%)
LB move op cnt : 0
LB apply : 4.13 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.44 us (63.7%)
Info: cfl dt = 0.001603234323273067 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2473e+05 | 262144 | 1 | 3.179e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.158039948763896 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7528198435536362, dt = 0.001603234323273067
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.06 us (2.7%)
patch tree reduce : 2.00 us (0.8%)
gen split merge : 1.02 us (0.4%)
split / merge op : 0/0
apply split merge : 1.28 us (0.5%)
LB compute : 237.13 us (91.6%)
LB move op cnt : 0
LB apply : 3.97 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.46 us (68.1%)
Info: cfl dt = 0.0016032360115701646 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.0970e+05 | 262144 | 1 | 3.238e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.82730356517663 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7544230778769092, dt = 0.0016032360115701646
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.21 us (2.7%)
patch tree reduce : 1.64 us (0.6%)
gen split merge : 1.02 us (0.4%)
split / merge op : 0/0
apply split merge : 1.88 us (0.7%)
LB compute : 249.27 us (91.7%)
LB move op cnt : 0
LB apply : 4.32 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.52 us (67.0%)
Info: cfl dt = 0.0016032370219987802 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2048e+05 | 262144 | 1 | 3.195e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.064589502706475 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7560263138884794, dt = 0.0016032370219987802
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.13 us (2.8%)
patch tree reduce : 2.00 us (0.8%)
gen split merge : 969.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.30 us (0.5%)
LB compute : 236.93 us (91.4%)
LB move op cnt : 0
LB apply : 4.21 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.83 us (64.2%)
Info: cfl dt = 0.0016032373706524512 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2277e+05 | 262144 | 1 | 3.186e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.114982762789488 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7576295509104782, dt = 0.0016032373706524512
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.93 us (2.5%)
patch tree reduce : 2.02 us (0.7%)
gen split merge : 1.21 us (0.4%)
split / merge op : 0/0
apply split merge : 1.35 us (0.5%)
LB compute : 256.31 us (92.1%)
LB move op cnt : 0
LB apply : 3.99 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.45 us (65.7%)
Info: cfl dt = 0.0016032370915759011 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.2760e+05 | 262144 | 1 | 3.603e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.01963298092192 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7592327882811307, dt = 0.0016032370915759011
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.98 us (2.5%)
patch tree reduce : 1.78 us (0.6%)
gen split merge : 1.04 us (0.4%)
split / merge op : 0/0
apply split merge : 1.50 us (0.5%)
LB compute : 259.12 us (92.1%)
LB move op cnt : 0
LB apply : 4.36 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.84 us (65.2%)
Info: cfl dt = 0.0016032361948571062 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.1502e+05 | 262144 | 1 | 3.216e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.94437558706338 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7608360253727067, dt = 0.0016032361948571062
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.69 us (2.6%)
patch tree reduce : 1.95 us (0.8%)
gen split merge : 939.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.44 us (0.6%)
LB compute : 236.20 us (91.5%)
LB move op cnt : 0
LB apply : 4.28 us (1.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.40 us (65.5%)
Info: cfl dt = 0.0016032347915598984 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.7909e+05 | 262144 | 1 | 3.365e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.153398074370962 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7624392615675638, dt = 0.0016032347915598984
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.95 us (2.7%)
patch tree reduce : 1.77 us (0.7%)
gen split merge : 1.04 us (0.4%)
split / merge op : 0/0
apply split merge : 1.45 us (0.6%)
LB compute : 239.43 us (91.5%)
LB move op cnt : 0
LB apply : 4.24 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.43 us (65.3%)
Info: cfl dt = 0.0016032330193053131 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2379e+05 | 262144 | 1 | 3.182e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.137520779660004 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7640424963591237, dt = 0.0016032330193053131
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.83 us (2.5%)
patch tree reduce : 1.89 us (0.7%)
gen split merge : 1.06 us (0.4%)
split / merge op : 0/0
apply split merge : 1.61 us (0.6%)
LB compute : 248.26 us (91.8%)
LB move op cnt : 0
LB apply : 4.28 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.64 us (69.3%)
Info: cfl dt = 0.0016032309893989941 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.1820e+05 | 262144 | 1 | 3.204e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.014387271907736 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.765645729378429, dt = 0.0016032309893989941
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.95 us (2.7%)
patch tree reduce : 1.69 us (0.7%)
gen split merge : 1.14 us (0.5%)
split / merge op : 0/0
apply split merge : 1.46 us (0.6%)
LB compute : 230.35 us (91.1%)
LB move op cnt : 0
LB apply : 4.35 us (1.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.46 us (66.6%)
Info: cfl dt = 0.0016032287429485347 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.8511e+05 | 262144 | 1 | 3.339e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.285894900214423 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.767248960367828, dt = 0.0016032287429485347
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.74 us (2.6%)
patch tree reduce : 2.00 us (0.8%)
gen split merge : 987.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.38 us (0.5%)
LB compute : 233.61 us (91.4%)
LB move op cnt : 0
LB apply : 4.22 us (1.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.01 us (64.6%)
Info: cfl dt = 0.0016032262742395774 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.1130e+05 | 262144 | 1 | 3.231e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.862485150305844 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7688521891107765, dt = 0.0016032262742395774
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.79 us (2.4%)
patch tree reduce : 1.86 us (0.6%)
gen split merge : 922.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.57 us (0.5%)
LB compute : 307.59 us (93.1%)
LB move op cnt : 0
LB apply : 4.22 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.88 us (72.1%)
Info: cfl dt = 0.0016032235470422123 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.1425e+05 | 262144 | 1 | 3.219e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.92724577380981 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.770455415385016, dt = 0.0016032235470422123
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.07 us (2.4%)
patch tree reduce : 1.95 us (0.7%)
gen split merge : 975.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.34 us (0.5%)
LB compute : 273.00 us (92.5%)
LB move op cnt : 0
LB apply : 3.98 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.43 us (64.0%)
Info: cfl dt = 0.0016032204991766718 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2062e+05 | 262144 | 1 | 3.194e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.067550335619476 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7720586389320583, dt = 0.0016032204991766718
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.43 us (2.7%)
patch tree reduce : 1.90 us (0.7%)
gen split merge : 991.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.47 us (0.5%)
LB compute : 248.59 us (91.5%)
LB move op cnt : 0
LB apply : 4.41 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.45 us (66.2%)
Info: cfl dt = 0.0016032170516318202 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.0948e+05 | 262144 | 1 | 3.695e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.620434458661371 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.773661859431235, dt = 0.0016032170516318202
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.34 us (2.3%)
patch tree reduce : 1.57 us (0.6%)
gen split merge : 778.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.39 us (0.5%)
LB compute : 251.27 us (92.4%)
LB move op cnt : 0
LB apply : 4.47 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.11 us (67.8%)
Info: cfl dt = 0.001603213119832898 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.2148e+05 | 262144 | 1 | 3.633e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.884753517402356 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7752650764828668, dt = 0.001603213119832898
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.28 us (2.9%)
patch tree reduce : 1.89 us (0.7%)
gen split merge : 1.03 us (0.4%)
split / merge op : 0/0
apply split merge : 1.62 us (0.6%)
LB compute : 231.57 us (91.0%)
LB move op cnt : 0
LB apply : 4.39 us (1.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.53 us (65.3%)
Info: cfl dt = 0.0016032088102497727 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.1195e+05 | 262144 | 1 | 3.229e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.876626471497474 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7768682896026997, dt = 0.0016032088102497727
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.86 us (2.7%)
patch tree reduce : 1.66 us (0.6%)
gen split merge : 945.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.66 us (0.6%)
LB compute : 235.58 us (91.6%)
LB move op cnt : 0
LB apply : 3.98 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.41 us (66.7%)
Info: cfl dt = 0.0016032039420970671 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.3094e+05 | 262144 | 1 | 3.155e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.29452790230997 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7784714984129495, dt = 0.0016032039420970671
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.83 us (2.6%)
patch tree reduce : 1.73 us (0.7%)
gen split merge : 964.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.32 us (0.5%)
LB compute : 241.82 us (91.7%)
LB move op cnt : 0
LB apply : 4.24 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.49 us (67.9%)
Info: cfl dt = 0.001603198316428017 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.0465e+05 | 262144 | 1 | 3.258e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.715771870577676 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7800747023550466, dt = 0.001603198316428017
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.30 us (2.7%)
patch tree reduce : 1.97 us (0.7%)
gen split merge : 1.14 us (0.4%)
split / merge op : 0/0
apply split merge : 1.45 us (0.5%)
LB compute : 247.07 us (91.5%)
LB move op cnt : 0
LB apply : 4.37 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.68 us (69.9%)
Info: cfl dt = 0.001603191803457339 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.1367e+05 | 262144 | 1 | 3.222e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.91414327659899 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7816779006714746, dt = 0.001603191803457339
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.74 us (2.3%)
patch tree reduce : 1.76 us (0.6%)
gen split merge : 934.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.62 us (0.6%)
LB compute : 265.54 us (92.4%)
LB move op cnt : 0
LB apply : 4.37 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.84 us (65.2%)
Info: cfl dt = 0.00160318435159101 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.1586e+05 | 262144 | 1 | 3.213e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.962344969703125 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7832810924749319, dt = 0.00160318435159101
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.43 us (2.6%)
patch tree reduce : 1.84 us (0.6%)
gen split merge : 1.32 us (0.5%)
split / merge op : 0/0
apply split merge : 1.38 us (0.5%)
LB compute : 267.72 us (92.2%)
LB move op cnt : 0
LB apply : 4.09 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.47 us (65.3%)
Info: cfl dt = 0.0016031759954462403 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.6892e+05 | 262144 | 1 | 3.409e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.928921254679505 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.784884276826523, dt = 0.0016031759954462403
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.26 us (2.5%)
patch tree reduce : 1.96 us (0.7%)
gen split merge : 1.01 us (0.3%)
split / merge op : 0/0
apply split merge : 1.73 us (0.6%)
LB compute : 267.91 us (92.0%)
LB move op cnt : 0
LB apply : 4.10 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.52 us (66.5%)
Info: cfl dt = 0.0016031668202079832 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.7217e+05 | 262144 | 1 | 3.395e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.000393750341406 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7864874528219692, dt = 0.0016031668202079832
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.52 us (2.6%)
patch tree reduce : 1.88 us (0.7%)
gen split merge : 865.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.58 us (0.5%)
LB compute : 265.34 us (92.2%)
LB move op cnt : 0
LB apply : 4.17 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.43 us (64.3%)
Info: cfl dt = 0.00160315689690988 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.9628e+05 | 262144 | 1 | 3.292e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.53101599010437 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7880906196421772, dt = 0.00160315689690988
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.13 us (2.2%)
patch tree reduce : 1.76 us (0.6%)
gen split merge : 807.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.12 us (0.4%)
LB compute : 256.61 us (92.5%)
LB move op cnt : 0
LB apply : 4.50 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.89 us (64.9%)
Info: cfl dt = 0.0016031462920382588 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.5023e+05 | 262144 | 1 | 3.494e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.516993828691515 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7896937765390871, dt = 0.0016031462920382588
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.21 us (2.6%)
patch tree reduce : 1.69 us (0.6%)
gen split merge : 966.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.69 us (0.6%)
LB compute : 260.09 us (92.0%)
LB move op cnt : 0
LB apply : 3.91 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.60 us (68.4%)
Info: cfl dt = 0.0016031350538593156 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2291e+05 | 262144 | 1 | 3.186e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.117138559513133 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7912969228311254, dt = 0.0016031350538593156
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.94 us (2.4%)
patch tree reduce : 1.94 us (0.7%)
gen split merge : 1.01 us (0.3%)
split / merge op : 0/0
apply split merge : 1.42 us (0.5%)
LB compute : 269.93 us (92.3%)
LB move op cnt : 0
LB apply : 4.17 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.46 us (63.4%)
Info: cfl dt = 0.0016031232068759122 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.3057e+05 | 262144 | 1 | 3.156e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.285508250593065 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7929000578849847, dt = 0.000849942115015212
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.59 us (2.9%)
patch tree reduce : 1.67 us (0.6%)
gen split merge : 943.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.29 us (0.5%)
LB compute : 237.13 us (91.4%)
LB move op cnt : 0
LB apply : 3.97 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.32 us (63.9%)
Info: cfl dt = 0.00160311634300565 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.5586e+05 | 262144 | 1 | 3.468e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8.822485471879425 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 177.61951407 (s) [Godunov][rank=0]
Info: dump to _to_trash/ramses_kh/periodic_0007.vtk [VTK Dump][rank=0]
- took 36.54 ms, bandwidth = 1.12 GB/s
amr::Godunov: t = 0.79375, dt = 0.00160311634300565
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.80 us (2.6%)
patch tree reduce : 1.95 us (0.6%)
gen split merge : 1.04 us (0.3%)
split / merge op : 0/0
apply split merge : 1.33 us (0.4%)
LB compute : 279.92 us (92.3%)
LB move op cnt : 0
LB apply : 4.41 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.47 us (66.5%)
Info: cfl dt = 0.001603101514112209 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.6245e+05 | 262144 | 1 | 3.438e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.785612263186316 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7953531163430057, dt = 0.001603101514112209
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.74 us (2.5%)
patch tree reduce : 2.01 us (0.7%)
gen split merge : 994.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.23 us (0.5%)
LB compute : 247.41 us (91.7%)
LB move op cnt : 0
LB apply : 4.69 us (1.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.42 us (66.5%)
Info: cfl dt = 0.0016030872099520538 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.4806e+05 | 262144 | 1 | 3.091e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.670327952245575 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7969562178571179, dt = 0.0016030872099520538
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.46 us (2.4%)
patch tree reduce : 1.81 us (0.7%)
gen split merge : 961.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.24 us (0.5%)
LB compute : 245.94 us (91.9%)
LB move op cnt : 0
LB apply : 3.93 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.95 us (67.2%)
Info: cfl dt = 0.0016030731984946636 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.0960e+05 | 262144 | 1 | 3.238e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.823373363009893 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.79855930506707, dt = 0.0016030731984946636
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.19 us (2.4%)
patch tree reduce : 1.97 us (0.7%)
gen split merge : 1.05 us (0.4%)
split / merge op : 0/0
apply split merge : 1.49 us (0.6%)
LB compute : 241.58 us (91.7%)
LB move op cnt : 0
LB apply : 4.39 us (1.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.17 us (68.3%)
Info: cfl dt = 0.0016030593012524197 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.1284e+05 | 262144 | 1 | 3.225e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.894542924871836 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8001623782655646, dt = 0.0016030593012524197
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.91 us (2.3%)
patch tree reduce : 1.73 us (0.6%)
gen split merge : 853.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.63 us (0.6%)
LB compute : 272.83 us (92.4%)
LB move op cnt : 0
LB apply : 4.37 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.47 us (64.5%)
Info: cfl dt = 0.001603045197728303 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.1853e+05 | 262144 | 1 | 3.203e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.01959855328569 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.801765437566817, dt = 0.001603045197728303
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.46 us (2.4%)
patch tree reduce : 1.74 us (0.6%)
gen split merge : 1.03 us (0.3%)
split / merge op : 0/0
apply split merge : 1.49 us (0.5%)
LB compute : 292.44 us (92.6%)
LB move op cnt : 0
LB apply : 4.95 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.44 us (66.3%)
Info: cfl dt = 0.0016030305345388163 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2245e+05 | 262144 | 1 | 3.187e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.105755557016188 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8033684827645452, dt = 0.0016030305345388163
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.68 us (2.6%)
patch tree reduce : 1.79 us (0.6%)
gen split merge : 1.04 us (0.4%)
split / merge op : 0/0
apply split merge : 1.58 us (0.5%)
LB compute : 268.47 us (92.0%)
LB move op cnt : 0
LB apply : 4.30 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.39 us (64.4%)
Info: cfl dt = 0.0016030150630360867 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.1136e+05 | 262144 | 1 | 3.231e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.86161019546762 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.804971513299084, dt = 0.0016030150630360867
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.19 us (2.7%)
patch tree reduce : 1.92 us (0.7%)
gen split merge : 891.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.42 us (0.5%)
LB compute : 244.82 us (91.6%)
LB move op cnt : 0
LB apply : 4.22 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.38 us (64.7%)
Info: cfl dt = 0.001602998711726593 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.3641e+05 | 262144 | 1 | 3.134e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.412717271739 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8065745283621201, dt = 0.001602998711726593
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.82 us (2.6%)
patch tree reduce : 1.73 us (0.7%)
gen split merge : 874.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.41 us (0.5%)
LB compute : 238.27 us (91.7%)
LB move op cnt : 0
LB apply : 3.93 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.48 us (65.6%)
Info: cfl dt = 0.0016029815862519006 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2483e+05 | 262144 | 1 | 3.178e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.15762795306246 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8081775270738467, dt = 0.0016029815862519006
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.51 us (2.4%)
patch tree reduce : 1.96 us (0.7%)
gen split merge : 1.00 us (0.4%)
split / merge op : 0/0
apply split merge : 1.48 us (0.5%)
LB compute : 247.16 us (91.8%)
LB move op cnt : 0
LB apply : 4.41 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.48 us (66.0%)
Info: cfl dt = 0.001602963925227425 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.1339e+05 | 262144 | 1 | 3.223e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.905749344396522 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8097805086600987, dt = 0.001602963925227425
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.72 us (2.4%)
patch tree reduce : 1.89 us (0.7%)
gen split merge : 978.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.43 us (0.5%)
LB compute : 255.82 us (91.9%)
LB move op cnt : 0
LB apply : 4.23 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.47 us (67.9%)
Info: cfl dt = 0.0016029449389489685 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.1757e+05 | 262144 | 1 | 3.206e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.997500056485094 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8113834725853261, dt = 0.0016029449389489685
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.89 us (2.2%)
patch tree reduce : 1.92 us (0.6%)
gen split merge : 1.01 us (0.3%)
split / merge op : 0/0
apply split merge : 1.48 us (0.5%)
LB compute : 285.82 us (92.6%)
LB move op cnt : 0
LB apply : 4.61 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.74 us (71.3%)
Info: cfl dt = 0.0016029184652173961 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.9556e+05 | 262144 | 1 | 3.295e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.51269029374959 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.812986417524275, dt = 0.0016029184652173961
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.75 us (2.4%)
patch tree reduce : 1.92 us (0.7%)
gen split merge : 954.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.53 us (0.6%)
LB compute : 256.74 us (92.1%)
LB move op cnt : 0
LB apply : 4.13 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.52 us (64.4%)
Info: cfl dt = 0.0016028913492318892 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.1617e+05 | 262144 | 1 | 3.212e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.966223129875036 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8145893359894925, dt = 0.0016028913492318892
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.21 us (2.6%)
patch tree reduce : 1.91 us (0.7%)
gen split merge : 983.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.41 us (0.5%)
LB compute : 251.98 us (91.7%)
LB move op cnt : 0
LB apply : 4.32 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.44 us (65.9%)
Info: cfl dt = 0.001602863798196203 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.1831e+05 | 262144 | 1 | 3.203e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.013020871940313 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8161922273387243, dt = 0.001602863798196203
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.98 us (2.3%)
patch tree reduce : 1.79 us (0.6%)
gen split merge : 1.24 us (0.4%)
split / merge op : 0/0
apply split merge : 1.45 us (0.5%)
LB compute : 278.04 us (92.4%)
LB move op cnt : 0
LB apply : 4.52 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.87 us (65.3%)
Info: cfl dt = 0.0016028360752132573 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.5143e+05 | 262144 | 1 | 3.489e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.54036138522573 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8177950911369205, dt = 0.0016028360752132573
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.75 us (2.2%)
patch tree reduce : 2.18 us (0.7%)
gen split merge : 1.01 us (0.3%)
split / merge op : 0/0
apply split merge : 1.46 us (0.5%)
LB compute : 283.70 us (92.6%)
LB move op cnt : 0
LB apply : 4.45 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.48 us (66.8%)
Info: cfl dt = 0.0016028084811607203 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.3400e+05 | 262144 | 1 | 3.143e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.357753854450348 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8193979272121338, dt = 0.0016028084811607203
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.70 us (2.3%)
patch tree reduce : 1.81 us (0.6%)
gen split merge : 988.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.39 us (0.5%)
LB compute : 271.23 us (92.5%)
LB move op cnt : 0
LB apply : 4.17 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.61 us (67.5%)
Info: cfl dt = 0.0016027811701388704 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.1910e+05 | 262144 | 1 | 3.200e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.029381743030964 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8210007356932945, dt = 0.0016027811701388704
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.93 us (2.2%)
patch tree reduce : 1.97 us (0.6%)
gen split merge : 895.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.47 us (0.5%)
LB compute : 293.02 us (92.7%)
LB move op cnt : 0
LB apply : 4.39 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.43 us (64.8%)
Info: cfl dt = 0.0016027543520720786 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.1373e+05 | 262144 | 1 | 3.222e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.910802308873016 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8226035168634334, dt = 0.0016027543520720786
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.42 us (2.2%)
patch tree reduce : 1.80 us (0.6%)
gen split merge : 1.22 us (0.4%)
split / merge op : 0/0
apply split merge : 1.41 us (0.5%)
LB compute : 270.00 us (92.6%)
LB move op cnt : 0
LB apply : 4.22 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.49 us (65.1%)
Info: cfl dt = 0.001602728247050656 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.1501e+05 | 262144 | 1 | 3.216e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.93881481218919 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8242062712155055, dt = 0.001602728247050656
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.49 us (2.5%)
patch tree reduce : 1.89 us (0.7%)
gen split merge : 1.04 us (0.4%)
split / merge op : 0/0
apply split merge : 1.46 us (0.6%)
LB compute : 238.52 us (91.6%)
LB move op cnt : 0
LB apply : 4.02 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.46 us (65.8%)
Info: cfl dt = 0.001602703059990877 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3756e+05 | 262144 | 1 | 3.554e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.233728235475162 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8258089994625561, dt = 0.001602703059990877
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.35 us (2.2%)
patch tree reduce : 2.02 us (0.7%)
gen split merge : 1.09 us (0.4%)
split / merge op : 0/0
apply split merge : 1.57 us (0.5%)
LB compute : 263.85 us (92.3%)
LB move op cnt : 0
LB apply : 4.43 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.50 us (65.5%)
Info: cfl dt = 0.0016026789716808148 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.8623e+05 | 262144 | 1 | 3.334e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.30483131325447 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.827411702522547, dt = 0.0016026789716808148
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.30 us (2.1%)
patch tree reduce : 1.74 us (0.6%)
gen split merge : 904.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.46 us (0.5%)
LB compute : 272.96 us (92.8%)
LB move op cnt : 0
LB apply : 4.48 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.78 us (64.5%)
Info: cfl dt = 0.0016026561338230872 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.0392e+05 | 262144 | 1 | 3.261e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.693784508977323 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8290143814942278, dt = 0.0016026561338230872
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.38 us (2.3%)
patch tree reduce : 2.13 us (0.8%)
gen split merge : 840.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.66 us (0.6%)
LB compute : 259.48 us (92.2%)
LB move op cnt : 0
LB apply : 4.56 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.60 us (67.3%)
Info: cfl dt = 0.0016026346713323247 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2270e+05 | 262144 | 1 | 3.186e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.106854706794973 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8306170376280508, dt = 0.0016026346713323247
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.84 us (2.4%)
patch tree reduce : 1.74 us (0.6%)
gen split merge : 964.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.40 us (0.5%)
LB compute : 260.00 us (92.4%)
LB move op cnt : 0
LB apply : 4.00 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.49 us (65.1%)
Info: cfl dt = 0.0016026146892086917 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.1478e+05 | 262144 | 1 | 3.217e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.932326639475686 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8322196722993832, dt = 0.0016026146892086917
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.41 us (2.3%)
patch tree reduce : 2.28 us (0.8%)
gen split merge : 984.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.63 us (0.6%)
LB compute : 256.79 us (92.1%)
LB move op cnt : 0
LB apply : 4.08 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.52 us (65.8%)
Info: cfl dt = 0.0016025962807035585 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.1783e+05 | 262144 | 1 | 3.205e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.999311461426394 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8338222869885918, dt = 0.0016025962807035585
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.21 us (2.3%)
patch tree reduce : 1.90 us (0.6%)
gen split merge : 933.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.61 us (0.5%)
LB compute : 288.55 us (92.9%)
LB move op cnt : 0
LB apply : 4.17 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.54 us (67.2%)
Info: cfl dt = 0.0016025794874560183 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.3847e+05 | 262144 | 1 | 3.126e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.453312685371834 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8354248832692954, dt = 0.0016025794874560183
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.49 us (2.1%)
patch tree reduce : 1.92 us (0.6%)
gen split merge : 866.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.61 us (0.5%)
LB compute : 290.60 us (93.1%)
LB move op cnt : 0
LB apply : 3.89 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.94 us (65.0%)
Info: cfl dt = 0.0016025643884444642 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.1709e+05 | 262144 | 1 | 3.208e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.982585949136293 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8370274627567514, dt = 0.0016025643884444642
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.86 us (2.4%)
patch tree reduce : 1.85 us (0.7%)
gen split merge : 1.09 us (0.4%)
split / merge op : 0/0
apply split merge : 1.43 us (0.5%)
LB compute : 260.16 us (92.2%)
LB move op cnt : 0
LB apply : 4.18 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.42 us (65.3%)
Info: cfl dt = 0.0016025510896023312 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2393e+05 | 262144 | 1 | 3.182e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.13298238459263 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8386300271451959, dt = 0.0016025510896023312
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.35 us (2.5%)
patch tree reduce : 1.94 us (0.7%)
gen split merge : 850.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.36 us (0.5%)
LB compute : 267.94 us (92.1%)
LB move op cnt : 0
LB apply : 4.74 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.57 us (66.4%)
Info: cfl dt = 0.001602539694808876 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.6490e+05 | 262144 | 1 | 3.427e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.83374117473776 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8402325782347981, dt = 0.001602539694808876
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.21 us (2.2%)
patch tree reduce : 2.05 us (0.6%)
gen split merge : 955.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.56 us (0.5%)
LB compute : 305.23 us (93.0%)
LB move op cnt : 0
LB apply : 4.36 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.42 us (63.9%)
Info: cfl dt = 0.0016025302765295306 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 6.6356e+05 | 262144 | 1 | 3.951e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.603362332440451 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.841835117929607, dt = 0.0016025302765295306
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.49 us (2.3%)
patch tree reduce : 1.91 us (0.6%)
gen split merge : 923.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.48 us (0.5%)
LB compute : 301.97 us (93.2%)
LB move op cnt : 0
LB apply : 4.13 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.64 us (65.1%)
Info: cfl dt = 0.0016025228857944017 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.3215e+05 | 262144 | 1 | 3.150e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.313463216536892 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8434376482061365, dt = 0.0016025228857944017
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.34 us (2.0%)
patch tree reduce : 1.87 us (0.6%)
gen split merge : 1.01 us (0.3%)
split / merge op : 0/0
apply split merge : 1.35 us (0.4%)
LB compute : 296.44 us (93.3%)
LB move op cnt : 0
LB apply : 4.05 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.59 us (70.0%)
Info: cfl dt = 0.001602517551199873 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.6154e+05 | 262144 | 1 | 3.442e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.759362879476917 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.845040171091931, dt = 0.001602517551199873
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.83 us (2.4%)
patch tree reduce : 1.78 us (0.6%)
gen split merge : 968.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.51 us (0.5%)
LB compute : 263.05 us (92.2%)
LB move op cnt : 0
LB apply : 4.36 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.42 us (65.0%)
Info: cfl dt = 0.0016025143393577164 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.1993e+05 | 262144 | 1 | 3.641e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.843699271952072 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8466426886431309, dt = 0.0016025143393577164
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.46 us (2.2%)
patch tree reduce : 1.87 us (0.6%)
gen split merge : 870.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.51 us (0.5%)
LB compute : 274.52 us (92.8%)
LB move op cnt : 0
LB apply : 3.92 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.65 us (68.9%)
Info: cfl dt = 0.001602513429106726 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.0543e+05 | 262144 | 1 | 3.255e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.72534771753818 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8482452029824886, dt = 0.001602513429106726
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.14 us (2.4%)
patch tree reduce : 1.99 us (0.7%)
gen split merge : 789.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.64 us (0.6%)
LB compute : 272.78 us (92.2%)
LB move op cnt : 0
LB apply : 4.37 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.71 us (69.3%)
Info: cfl dt = 0.0016025147295762971 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2220e+05 | 262144 | 1 | 3.188e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.09423584353842 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8498477164115954, dt = 0.0016025147295762971
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.59 us (2.6%)
patch tree reduce : 1.91 us (0.7%)
gen split merge : 947.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.66 us (0.6%)
LB compute : 270.66 us (92.2%)
LB move op cnt : 0
LB apply : 4.39 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.00 us (67.7%)
Info: cfl dt = 0.001602518127916714 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2966e+05 | 262144 | 1 | 3.160e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.258518010051088 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8514502311411717, dt = 0.001602518127916714
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.77 us (2.4%)
patch tree reduce : 1.75 us (0.6%)
gen split merge : 969.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.55 us (0.5%)
LB compute : 260.08 us (92.1%)
LB move op cnt : 0
LB apply : 4.32 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.54 us (67.2%)
Info: cfl dt = 0.0016025234948604807 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.3980e+05 | 262144 | 1 | 3.122e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.481610477008015 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8530527492690884, dt = 0.0016025234948604807
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.45 us (2.5%)
patch tree reduce : 2.17 us (0.8%)
gen split merge : 862.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.59 us (0.6%)
LB compute : 235.06 us (91.6%)
LB move op cnt : 0
LB apply : 4.00 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.58 us (67.2%)
Info: cfl dt = 0.0016025307371860121 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.3189e+05 | 262144 | 1 | 3.151e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.307625865796492 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8546552727639488, dt = 0.0016025307371860121
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.84 us (2.5%)
patch tree reduce : 1.96 us (0.7%)
gen split merge : 1.01 us (0.4%)
split / merge op : 0/0
apply split merge : 1.39 us (0.5%)
LB compute : 246.33 us (91.7%)
LB move op cnt : 0
LB apply : 4.00 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.87 us (65.0%)
Info: cfl dt = 0.0016025397566845896 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2050e+05 | 262144 | 1 | 3.195e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.05698989031922 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8562578035011348, dt = 0.0016025397566845896
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.01 us (2.6%)
patch tree reduce : 1.96 us (0.7%)
gen split merge : 903.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.35 us (0.5%)
LB compute : 250.26 us (91.5%)
LB move op cnt : 0
LB apply : 4.80 us (1.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.46 us (64.7%)
Info: cfl dt = 0.0016025504180879617 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2277e+05 | 262144 | 1 | 3.186e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.10721949938563 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8578603432578193, dt = 0.0016025504180879617
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.61 us (2.5%)
patch tree reduce : 1.98 us (0.7%)
gen split merge : 995.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.49 us (0.6%)
LB compute : 243.23 us (91.7%)
LB move op cnt : 0
LB apply : 3.95 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.47 us (65.2%)
Info: cfl dt = 0.001602562578049507 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2765e+05 | 262144 | 1 | 3.167e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.21464851000863 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8594628936759073, dt = 0.001602562578049507
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.88 us (2.3%)
patch tree reduce : 1.95 us (0.7%)
gen split merge : 1.01 us (0.3%)
split / merge op : 0/0
apply split merge : 1.38 us (0.5%)
LB compute : 277.87 us (92.6%)
LB move op cnt : 0
LB apply : 4.19 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.49 us (65.0%)
Info: cfl dt = 0.0016025760760995662 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.8129e+05 | 262144 | 1 | 3.355e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.194574317689366 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8610654562539568, dt = 0.0016025760760995662
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.39 us (2.8%)
patch tree reduce : 1.76 us (0.7%)
gen split merge : 979.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.65 us (0.6%)
LB compute : 237.97 us (91.3%)
LB move op cnt : 0
LB apply : 4.29 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.57 us (69.6%)
Info: cfl dt = 0.0016025907646564645 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2280e+05 | 262144 | 1 | 3.186e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.10818128767482 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8626680323300564, dt = 0.0016025907646564645
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.39 us (2.8%)
patch tree reduce : 1.83 us (0.7%)
gen split merge : 942.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.34 us (0.5%)
LB compute : 243.32 us (91.4%)
LB move op cnt : 0
LB apply : 4.45 us (1.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.40 us (63.9%)
Info: cfl dt = 0.0016026064700639091 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.1417e+05 | 262144 | 1 | 3.220e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.918429971429852 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8642706230947129, dt = 0.0016026064700639091
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.65 us (2.6%)
patch tree reduce : 2.12 us (0.7%)
gen split merge : 1.07 us (0.4%)
split / merge op : 0/0
apply split merge : 1.53 us (0.5%)
LB compute : 274.59 us (92.3%)
LB move op cnt : 0
LB apply : 3.99 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.48 us (67.2%)
Info: cfl dt = 0.0016026229657631185 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2447e+05 | 262144 | 1 | 3.180e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.145274209134353 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8658732295647769, dt = 0.0016026229657631185
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.57 us (2.1%)
patch tree reduce : 2.12 us (0.7%)
gen split merge : 1.12 us (0.4%)
split / merge op : 0/0
apply split merge : 1.33 us (0.4%)
LB compute : 297.80 us (93.2%)
LB move op cnt : 0
LB apply : 4.19 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.55 us (67.4%)
Info: cfl dt = 0.001602639969674518 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.3050e+05 | 262144 | 1 | 3.156e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.278157450240627 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8674758525305399, dt = 0.001602639969674518
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.70 us (2.2%)
patch tree reduce : 1.94 us (0.6%)
gen split merge : 1.04 us (0.3%)
split / merge op : 0/0
apply split merge : 1.51 us (0.5%)
LB compute : 283.91 us (92.7%)
LB move op cnt : 0
LB apply : 4.71 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.58 us (66.3%)
Info: cfl dt = 0.001602657144806639 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.6060e+05 | 262144 | 1 | 3.046e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.940927310236972 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8690784925002144, dt = 0.001602657144806639
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.88 us (2.5%)
patch tree reduce : 2.06 us (0.8%)
gen split merge : 1.04 us (0.4%)
split / merge op : 0/0
apply split merge : 1.26 us (0.5%)
LB compute : 249.10 us (91.9%)
LB move op cnt : 0
LB apply : 4.44 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 10.82 us (91.2%)
Info: cfl dt = 0.001602674211409259 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.1920e+05 | 262144 | 1 | 3.200e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.02996883031839 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8706811496450211, dt = 0.001602674211409259
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.34 us (2.6%)
patch tree reduce : 2.19 us (0.8%)
gen split merge : 1.13 us (0.4%)
split / merge op : 0/0
apply split merge : 1.48 us (0.5%)
LB compute : 254.24 us (91.7%)
LB move op cnt : 0
LB apply : 4.37 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.63 us (68.3%)
Info: cfl dt = 0.0016026909469064187 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2726e+05 | 262144 | 1 | 3.169e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.207546953784004 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8722838238564303, dt = 0.0016026909469064187
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.45 us (2.5%)
patch tree reduce : 1.82 us (0.6%)
gen split merge : 864.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.48 us (0.5%)
LB compute : 279.89 us (92.4%)
LB move op cnt : 0
LB apply : 4.34 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.42 us (65.6%)
Info: cfl dt = 0.0016027071779796274 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.1664e+05 | 262144 | 1 | 3.210e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.973827190927253 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8738865148033368, dt = 0.0016027071779796274
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.85 us (2.6%)
patch tree reduce : 1.88 us (0.7%)
gen split merge : 979.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.32 us (0.5%)
LB compute : 238.14 us (91.5%)
LB move op cnt : 0
LB apply : 4.32 us (1.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.49 us (66.1%)
Info: cfl dt = 0.0016027227944079652 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.5558e+05 | 262144 | 1 | 3.064e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.831168697055226 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8754892219813164, dt = 0.0016027227944079652
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.16 us (2.5%)
patch tree reduce : 1.97 us (0.7%)
gen split merge : 863.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.53 us (0.5%)
LB compute : 261.17 us (92.0%)
LB move op cnt : 0
LB apply : 4.40 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.43 us (64.1%)
Info: cfl dt = 0.0016027376907496672 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.1867e+05 | 262144 | 1 | 3.202e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.018989255512935 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8770919447757244, dt = 0.0016027376907496672
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.03 us (2.7%)
patch tree reduce : 1.82 us (0.7%)
gen split merge : 857.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.52 us (0.6%)
LB compute : 236.32 us (91.4%)
LB move op cnt : 0
LB apply : 3.99 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.40 us (64.7%)
Info: cfl dt = 0.0016027514997137694 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.9918e+05 | 262144 | 1 | 3.280e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.590181251501303 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8786946824664741, dt = 0.0016027514997137694
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.91 us (2.5%)
patch tree reduce : 2.01 us (0.7%)
gen split merge : 875.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.50 us (0.5%)
LB compute : 250.66 us (91.8%)
LB move op cnt : 0
LB apply : 4.40 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.59 us (76.8%)
Info: cfl dt = 0.0016027642108425455 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.2415e+05 | 262144 | 1 | 3.620e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.938854234963802 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8802974339661879, dt = 0.0016027642108425455
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.47 us (2.4%)
patch tree reduce : 1.82 us (0.6%)
gen split merge : 828.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.46 us (0.5%)
LB compute : 290.57 us (92.7%)
LB move op cnt : 0
LB apply : 4.34 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.56 us (66.2%)
Info: cfl dt = 0.0016027760008704834 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2368e+05 | 262144 | 1 | 3.183e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.129738218230706 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8819001981770305, dt = 0.0016027760008704834
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.42 us (2.1%)
patch tree reduce : 1.83 us (0.6%)
gen split merge : 974.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.29 us (0.4%)
LB compute : 279.07 us (89.9%)
LB move op cnt : 0
LB apply : 13.94 us (4.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.57 us (67.8%)
Info: cfl dt = 0.0016027869961241616 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.5781e+05 | 262144 | 1 | 3.056e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.881082335565708 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8835029741779009, dt = 0.0016027869961241616
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.10 us (2.3%)
patch tree reduce : 1.99 us (0.6%)
gen split merge : 894.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.28 us (0.4%)
LB compute : 289.45 us (92.8%)
LB move op cnt : 0
LB apply : 4.55 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.98 us (66.2%)
Info: cfl dt = 0.0016027972909444538 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.3133e+05 | 262144 | 1 | 3.153e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.298420352272064 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8851057611740251, dt = 0.0016027972909444538
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.71 us (2.6%)
patch tree reduce : 1.87 us (0.6%)
gen split merge : 976.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.34 us (0.5%)
LB compute : 274.16 us (92.1%)
LB move op cnt : 0
LB apply : 4.55 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.43 us (64.0%)
Info: cfl dt = 0.0016028065750849905 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.1926e+05 | 262144 | 1 | 3.200e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.03269253414407 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8867085584649695, dt = 0.0016028065750849905
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.73 us (2.5%)
patch tree reduce : 1.88 us (0.7%)
gen split merge : 953.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.35 us (0.5%)
LB compute : 242.88 us (91.7%)
LB move op cnt : 0
LB apply : 4.41 us (1.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.48 us (64.9%)
Info: cfl dt = 0.0016028148437606054 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.4015e+05 | 262144 | 1 | 3.120e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.492805754151277 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8883113650400545, dt = 0.0016028148437606054
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.12 us (2.6%)
patch tree reduce : 1.97 us (0.7%)
gen split merge : 968.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.55 us (0.6%)
LB compute : 248.17 us (91.7%)
LB move op cnt : 0
LB apply : 4.11 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.61 us (67.5%)
Info: cfl dt = 0.0016028221958903795 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2543e+05 | 262144 | 1 | 3.176e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.16881463020821 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.889914179883815, dt = 0.0016028221958903795
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.65 us (2.4%)
patch tree reduce : 2.07 us (0.8%)
gen split merge : 974.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.34 us (0.5%)
LB compute : 249.71 us (91.9%)
LB move op cnt : 0
LB apply : 4.21 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.87 us (65.0%)
Info: cfl dt = 0.0016028286808619089 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2653e+05 | 262144 | 1 | 3.172e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.19306614307075 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8915170020797054, dt = 0.0016028286808619089
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.03 us (2.7%)
patch tree reduce : 1.73 us (0.7%)
gen split merge : 924.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.59 us (0.6%)
LB compute : 241.13 us (91.5%)
LB move op cnt : 0
LB apply : 4.45 us (1.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.51 us (67.1%)
Info: cfl dt = 0.0016028343829208682 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2262e+05 | 262144 | 1 | 3.187e-01 | 0.0% | 0.5% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.107158852137704 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8931198307605673, dt = 0.0016028343829208682
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.25 us (2.3%)
patch tree reduce : 1.83 us (0.6%)
gen split merge : 964.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.53 us (0.5%)
LB compute : 289.11 us (92.9%)
LB move op cnt : 0
LB apply : 4.04 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.47 us (65.8%)
Info: cfl dt = 0.0016028392989003507 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.1848e+05 | 262144 | 1 | 3.203e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.01604108042812 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8947226651434882, dt = 0.0016028392989003507
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.50 us (2.5%)
patch tree reduce : 1.97 us (0.7%)
gen split merge : 831.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.57 us (0.6%)
LB compute : 241.43 us (91.7%)
LB move op cnt : 0
LB apply : 4.44 us (1.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.88 us (23.3%)
Info: cfl dt = 0.0016028435321079903 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2228e+05 | 262144 | 1 | 3.188e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.099777306445098 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8963255044423886, dt = 0.0016028435321079903
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.71 us (2.6%)
patch tree reduce : 1.97 us (0.8%)
gen split merge : 1.02 us (0.4%)
split / merge op : 0/0
apply split merge : 1.58 us (0.6%)
LB compute : 238.55 us (91.5%)
LB move op cnt : 0
LB apply : 4.44 us (1.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.79 us (64.7%)
Info: cfl dt = 0.0016028472419249542 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.3395e+05 | 262144 | 1 | 3.143e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.356732495393683 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8979283479744966, dt = 0.0016028472419249542
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.80 us (2.6%)
patch tree reduce : 1.94 us (0.7%)
gen split merge : 1.07 us (0.4%)
split / merge op : 0/0
apply split merge : 1.32 us (0.5%)
LB compute : 239.91 us (91.6%)
LB move op cnt : 0
LB apply : 4.09 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.45 us (66.5%)
Info: cfl dt = 0.001602850563070733 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.3663e+05 | 262144 | 1 | 3.133e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.41571212974632 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8995311952164216, dt = 0.001602850563070733
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.48 us (2.1%)
patch tree reduce : 2.09 us (0.7%)
gen split merge : 1.12 us (0.4%)
split / merge op : 0/0
apply split merge : 1.51 us (0.5%)
LB compute : 291.36 us (92.9%)
LB move op cnt : 0
LB apply : 4.04 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.56 us (66.6%)
Info: cfl dt = 0.0016028536077947273 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.1877e+05 | 262144 | 1 | 3.202e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.022503165709253 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9011340457794923, dt = 0.0016028536077947273
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.56 us (2.5%)
patch tree reduce : 1.91 us (0.7%)
gen split merge : 986.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.48 us (0.6%)
LB compute : 243.04 us (91.9%)
LB move op cnt : 0
LB apply : 3.97 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.48 us (66.4%)
Info: cfl dt = 0.0016028564584681926 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2306e+05 | 262144 | 1 | 3.185e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.11700543302352 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9027368993872871, dt = 0.0016028564584681926
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.97 us (1.6%)
patch tree reduce : 1.96 us (0.4%)
gen split merge : 1.13 us (0.2%)
split / merge op : 0/0
apply split merge : 1.30 us (0.3%)
LB compute : 479.91 us (95.1%)
LB move op cnt : 0
LB apply : 5.21 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.94 us (70.9%)
Info: cfl dt = 0.0016028591644393906 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2428e+05 | 262144 | 1 | 3.180e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.14402157088558 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9043397558457552, dt = 0.0016028591644393906
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.51 us (2.5%)
patch tree reduce : 1.96 us (0.7%)
gen split merge : 957.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.57 us (0.6%)
LB compute : 243.71 us (91.7%)
LB move op cnt : 0
LB apply : 4.20 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.41 us (65.4%)
Info: cfl dt = 0.0016028617553642231 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.1439e+05 | 262144 | 1 | 3.219e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.9261839278467 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9059426150101946, dt = 0.0016028617553642231
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.80 us (2.2%)
patch tree reduce : 1.98 us (0.7%)
gen split merge : 1.02 us (0.3%)
split / merge op : 0/0
apply split merge : 1.32 us (0.4%)
LB compute : 283.00 us (92.9%)
LB move op cnt : 0
LB apply : 4.48 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.87 us (64.1%)
Info: cfl dt = 0.0016028642864362901 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.9255e+05 | 262144 | 1 | 3.308e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.445506296340493 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9075454767655587, dt = 0.0016028642864362901
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.20 us (2.5%)
patch tree reduce : 1.88 us (0.6%)
gen split merge : 939.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.42 us (0.5%)
LB compute : 268.15 us (92.2%)
LB move op cnt : 0
LB apply : 4.39 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.06 us (68.1%)
Info: cfl dt = 0.0016028667897627503 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.1174e+05 | 262144 | 1 | 3.229e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.86795020193795 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.909148341051995, dt = 0.0016028667897627503
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.78 us (2.1%)
patch tree reduce : 1.90 us (0.6%)
gen split merge : 840.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.57 us (0.5%)
LB compute : 296.04 us (93.0%)
LB move op cnt : 0
LB apply : 4.18 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.69 us (68.6%)
Info: cfl dt = 0.0016028692624403087 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2751e+05 | 262144 | 1 | 3.168e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.215109395800148 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9107512078417578, dt = 0.0016028692624403087
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.14 us (2.7%)
patch tree reduce : 1.96 us (0.7%)
gen split merge : 1.00 us (0.4%)
split / merge op : 0/0
apply split merge : 1.34 us (0.5%)
LB compute : 239.67 us (91.3%)
LB move op cnt : 0
LB apply : 4.36 us (1.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.43 us (64.3%)
Info: cfl dt = 0.0016028716892449795 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2105e+05 | 262144 | 1 | 3.193e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.072958721591963 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9123540771041981, dt = 0.0016028716892449795
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.51 us (2.5%)
patch tree reduce : 2.05 us (0.8%)
gen split merge : 1.21 us (0.5%)
split / merge op : 0/0
apply split merge : 1.32 us (0.5%)
LB compute : 241.29 us (91.3%)
LB move op cnt : 0
LB apply : 4.41 us (1.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.47 us (66.8%)
Info: cfl dt = 0.0016028740469329094 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.3206e+05 | 262144 | 1 | 3.151e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.31539200741706 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9139569487934431, dt = 0.0016028740469329094
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.94 us (2.5%)
patch tree reduce : 1.93 us (0.7%)
gen split merge : 1.06 us (0.4%)
split / merge op : 0/0
apply split merge : 1.23 us (0.4%)
LB compute : 253.01 us (91.9%)
LB move op cnt : 0
LB apply : 3.99 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.47 us (66.1%)
Info: cfl dt = 0.001602876303702996 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.1889e+05 | 262144 | 1 | 3.201e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.025485089879943 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9155598228403761, dt = 0.001602876303702996
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.30 us (1.2%)
patch tree reduce : 1.91 us (0.4%)
gen split merge : 1.01 us (0.2%)
split / merge op : 0/0
apply split merge : 1.32 us (0.2%)
LB compute : 513.96 us (96.0%)
LB move op cnt : 0
LB apply : 4.19 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.84 us (64.1%)
Info: cfl dt = 0.0016028784411982629 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.1835e+05 | 262144 | 1 | 3.203e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.01367958195818 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9171626991440791, dt = 0.0016028784411982629
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.99 us (2.3%)
patch tree reduce : 1.96 us (0.7%)
gen split merge : 944.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.54 us (0.5%)
LB compute : 266.15 us (89.1%)
LB move op cnt : 0
LB apply : 4.32 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.54 us (67.3%)
Info: cfl dt = 0.0016028804286573972 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.1650e+05 | 262144 | 1 | 3.211e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.972966364129043 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9187655775852773, dt = 0.0016028804286573972
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.21 us (2.3%)
patch tree reduce : 1.77 us (0.7%)
gen split merge : 900.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.54 us (0.6%)
LB compute : 250.68 us (92.1%)
LB move op cnt : 0
LB apply : 4.22 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.45 us (65.8%)
Info: cfl dt = 0.0016028821994531518 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.5277e+05 | 262144 | 1 | 3.074e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.771295148442757 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9203684580139347, dt = 0.0016028821994531518
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 16.86 us (4.9%)
patch tree reduce : 1.84 us (0.5%)
gen split merge : 1.05 us (0.3%)
split / merge op : 0/0
apply split merge : 1.28 us (0.4%)
LB compute : 313.68 us (90.8%)
LB move op cnt : 0
LB apply : 4.11 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.40 us (63.6%)
Info: cfl dt = 0.0016028837476931611 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.1619e+05 | 262144 | 1 | 3.212e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.966212904974192 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9219713402133879, dt = 0.0016028837476931611
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.15 us (2.5%)
patch tree reduce : 1.91 us (0.7%)
gen split merge : 1.05 us (0.4%)
split / merge op : 0/0
apply split merge : 1.17 us (0.4%)
LB compute : 268.67 us (92.3%)
LB move op cnt : 0
LB apply : 4.60 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.51 us (67.8%)
Info: cfl dt = 0.001602885099997432 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.1942e+05 | 262144 | 1 | 3.199e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.037332758858966 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.923574223961081, dt = 0.001602885099997432
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.07 us (2.4%)
patch tree reduce : 1.95 us (0.6%)
gen split merge : 1.26 us (0.4%)
split / merge op : 0/0
apply split merge : 1.46 us (0.5%)
LB compute : 278.07 us (92.5%)
LB move op cnt : 0
LB apply : 4.13 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.91 us (63.9%)
Info: cfl dt = 0.0016028862521183533 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.1073e+05 | 262144 | 1 | 3.233e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.84604544763885 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9251771090610784, dt = 0.0008645576055882342
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.18 us (2.4%)
patch tree reduce : 1.95 us (0.7%)
gen split merge : 977.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.46 us (0.5%)
LB compute : 274.34 us (92.2%)
LB move op cnt : 0
LB apply : 4.40 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.68 us (69.0%)
Info: cfl dt = 0.0016028870518811085 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.1880e+05 | 262144 | 1 | 3.202e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9.721488419684329 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 205.105053223 (s) [Godunov][rank=0]
Info: dump to _to_trash/ramses_kh/periodic_0008.vtk [VTK Dump][rank=0]
- took 34.91 ms, bandwidth = 1.17 GB/s
amr::Godunov: t = 0.9260416666666667, dt = 0.0016028870518811085
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.78 us (2.5%)
patch tree reduce : 1.84 us (0.6%)
gen split merge : 991.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.44 us (0.5%)
LB compute : 282.14 us (92.3%)
LB move op cnt : 0
LB apply : 4.70 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.76 us (67.7%)
Info: cfl dt = 0.0016028858332930332 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 6.5339e+05 | 262144 | 1 | 4.012e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.38257233311834 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9276445537185478, dt = 0.0016028858332930332
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.99 us (2.0%)
patch tree reduce : 1.74 us (0.5%)
gen split merge : 991.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.63 us (0.5%)
LB compute : 322.56 us (93.4%)
LB move op cnt : 0
LB apply : 4.41 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.48 us (65.5%)
Info: cfl dt = 0.00160288493924326 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.1768e+05 | 262144 | 1 | 3.206e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.99902551627471 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9292474395518409, dt = 0.00160288493924326
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.18 us (2.6%)
patch tree reduce : 1.80 us (0.7%)
gen split merge : 995.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.58 us (0.6%)
LB compute : 249.64 us (91.6%)
LB move op cnt : 0
LB apply : 4.57 us (1.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.77 us (62.6%)
Info: cfl dt = 0.0016028844390159286 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.1059e+05 | 262144 | 1 | 3.234e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.84302111810654 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9308503244910841, dt = 0.0016028844390159286
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.84 us (2.4%)
patch tree reduce : 1.81 us (0.6%)
gen split merge : 981.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.43 us (0.5%)
LB compute : 265.90 us (92.2%)
LB move op cnt : 0
LB apply : 4.58 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.35 us (63.7%)
Info: cfl dt = 0.0016028842360210622 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.1581e+05 | 262144 | 1 | 3.213e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.9579312025443 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9324532089301, dt = 0.0016028842360210622
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.41 us (2.8%)
patch tree reduce : 1.95 us (0.7%)
gen split merge : 1.24 us (0.5%)
split / merge op : 0/0
apply split merge : 1.38 us (0.5%)
LB compute : 246.05 us (91.5%)
LB move op cnt : 0
LB apply : 4.54 us (1.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.32 us (63.0%)
Info: cfl dt = 0.001602884006248181 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2157e+05 | 262144 | 1 | 3.191e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.084628307066133 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.934056093166121, dt = 0.001602884006248181
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.26 us (2.5%)
patch tree reduce : 1.91 us (0.7%)
gen split merge : 967.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.50 us (0.5%)
LB compute : 263.87 us (92.1%)
LB move op cnt : 0
LB apply : 4.41 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.77 us (68.7%)
Info: cfl dt = 0.0016028832838967412 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.1571e+05 | 262144 | 1 | 3.214e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.955678819964064 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9356589771723692, dt = 0.0016028832838967412
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.44 us (2.5%)
patch tree reduce : 1.84 us (0.6%)
gen split merge : 1.00 us (0.3%)
split / merge op : 0/0
apply split merge : 1.62 us (0.5%)
LB compute : 278.31 us (92.6%)
LB move op cnt : 0
LB apply : 4.19 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.44 us (64.5%)
Info: cfl dt = 0.0016028816034180566 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 6.9440e+05 | 262144 | 1 | 3.775e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.285308960760458 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.937261860456266, dt = 0.0016028816034180566
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.90 us (2.6%)
patch tree reduce : 1.88 us (0.7%)
gen split merge : 1.02 us (0.4%)
split / merge op : 0/0
apply split merge : 1.48 us (0.5%)
LB compute : 247.83 us (91.5%)
LB move op cnt : 0
LB apply : 4.25 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.49 us (64.7%)
Info: cfl dt = 0.001602878798752913 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2627e+05 | 262144 | 1 | 3.173e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.188084625690088 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9388647420596841, dt = 0.001602878798752913
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.50 us (2.8%)
patch tree reduce : 1.75 us (0.7%)
gen split merge : 969.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.48 us (0.6%)
LB compute : 241.47 us (91.6%)
LB move op cnt : 0
LB apply : 3.89 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.47 us (63.4%)
Info: cfl dt = 0.0016028747746079446 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.0903e+05 | 262144 | 1 | 3.697e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.607316818907625 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9404676208584369, dt = 0.0016028747746079446
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.49 us (2.9%)
patch tree reduce : 1.82 us (0.7%)
gen split merge : 839.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.42 us (0.5%)
LB compute : 238.69 us (91.2%)
LB move op cnt : 0
LB apply : 4.09 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.45 us (67.1%)
Info: cfl dt = 0.001602869608687129 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2084e+05 | 262144 | 1 | 3.194e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.06852784555376 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9420704956330449, dt = 0.001602869608687129
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.46 us (2.8%)
patch tree reduce : 2.03 us (0.8%)
gen split merge : 983.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.42 us (0.5%)
LB compute : 243.07 us (91.3%)
LB move op cnt : 0
LB apply : 4.49 us (1.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.41 us (66.5%)
Info: cfl dt = 0.001602863451838481 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.1625e+05 | 262144 | 1 | 3.212e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.967416792736 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9436733652417321, dt = 0.001602863451838481
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.33 us (2.6%)
patch tree reduce : 1.82 us (0.6%)
gen split merge : 1.00 us (0.3%)
split / merge op : 0/0
apply split merge : 1.61 us (0.6%)
LB compute : 264.10 us (92.2%)
LB move op cnt : 0
LB apply : 3.99 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.54 us (66.0%)
Info: cfl dt = 0.0016028564644456186 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.8084e+05 | 262144 | 1 | 3.357e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.187904844726425 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9452762286935705, dt = 0.0016028564644456186
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.59 us (2.3%)
patch tree reduce : 1.99 us (0.7%)
gen split merge : 1.02 us (0.4%)
split / merge op : 0/0
apply split merge : 1.62 us (0.6%)
LB compute : 265.37 us (92.3%)
LB move op cnt : 0
LB apply : 4.20 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.53 us (67.4%)
Info: cfl dt = 0.0016028487759151408 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.4485e+05 | 262144 | 1 | 3.103e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.596827664588076 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9468790851580161, dt = 0.0016028487759151408
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.10 us (2.3%)
patch tree reduce : 2.01 us (0.6%)
gen split merge : 935.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.45 us (0.5%)
LB compute : 290.26 us (92.7%)
LB move op cnt : 0
LB apply : 4.26 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.47 us (65.1%)
Info: cfl dt = 0.0016028404656449667 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2090e+05 | 262144 | 1 | 3.193e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.069405927060977 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9484819339339312, dt = 0.0016028404656449667
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.41 us (2.3%)
patch tree reduce : 1.95 us (0.6%)
gen split merge : 881.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.54 us (0.5%)
LB compute : 300.43 us (93.0%)
LB move op cnt : 0
LB apply : 4.03 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.82 us (64.0%)
Info: cfl dt = 0.00160283171918674 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.1105e+05 | 262144 | 1 | 3.232e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.85260175288577 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9500847743995762, dt = 0.00160283171918674
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.70 us (2.5%)
patch tree reduce : 1.90 us (0.6%)
gen split merge : 1.04 us (0.3%)
split / merge op : 0/0
apply split merge : 1.47 us (0.5%)
LB compute : 280.64 us (92.4%)
LB move op cnt : 0
LB apply : 4.44 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.42 us (63.9%)
Info: cfl dt = 0.0016028225136038806 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.2566e+05 | 262144 | 1 | 3.612e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.972922342905315 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9516876061187629, dt = 0.0016028225136038806
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.03 us (2.4%)
patch tree reduce : 1.91 us (0.7%)
gen split merge : 896.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.57 us (0.5%)
LB compute : 270.49 us (92.5%)
LB move op cnt : 0
LB apply : 3.78 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.82 us (65.0%)
Info: cfl dt = 0.00160281267202228 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.1070e+05 | 262144 | 1 | 3.689e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.643570720479593 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9532904286323668, dt = 0.00160281267202228
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.77 us (2.2%)
patch tree reduce : 1.80 us (0.6%)
gen split merge : 1.01 us (0.3%)
split / merge op : 0/0
apply split merge : 1.36 us (0.4%)
LB compute : 292.33 us (93.0%)
LB move op cnt : 0
LB apply : 4.50 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.61 us (67.4%)
Info: cfl dt = 0.0016028020047380708 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.0274e+05 | 262144 | 1 | 3.730e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.46822994670873 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.954893241304389, dt = 0.0016028020047380708
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.32 us (2.3%)
patch tree reduce : 1.91 us (0.6%)
gen split merge : 983.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.54 us (0.5%)
LB compute : 296.55 us (92.6%)
LB move op cnt : 0
LB apply : 4.63 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.54 us (67.3%)
Info: cfl dt = 0.0016027903626833302 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.4574e+05 | 262144 | 1 | 3.100e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.615615350163914 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9564960433091271, dt = 0.0016027903626833302
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.85 us (2.6%)
patch tree reduce : 1.79 us (0.7%)
gen split merge : 966.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.32 us (0.5%)
LB compute : 239.14 us (91.7%)
LB move op cnt : 0
LB apply : 4.33 us (1.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.45 us (66.4%)
Info: cfl dt = 0.00160277765601455 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2571e+05 | 262144 | 1 | 3.175e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.174769210702237 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9580988336718104, dt = 0.00160277765601455
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.08 us (2.7%)
patch tree reduce : 1.80 us (0.7%)
gen split merge : 941.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.70 us (0.6%)
LB compute : 243.91 us (91.5%)
LB move op cnt : 0
LB apply : 4.57 us (1.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.50 us (64.9%)
Info: cfl dt = 0.0016027638578812223 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.1865e+05 | 262144 | 1 | 3.202e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.019166947654973 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9597016113278249, dt = 0.0016027638578812223
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.95 us (2.6%)
patch tree reduce : 2.01 us (0.8%)
gen split merge : 1.00 us (0.4%)
split / merge op : 0/0
apply split merge : 1.65 us (0.6%)
LB compute : 244.37 us (91.5%)
LB move op cnt : 0
LB apply : 4.30 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.48 us (67.0%)
Info: cfl dt = 0.001602748993975467 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.1160e+05 | 262144 | 1 | 3.230e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.863808492255245 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9613043751857062, dt = 0.001602748993975467
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.66 us (2.2%)
patch tree reduce : 2.02 us (0.7%)
gen split merge : 989.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.43 us (0.5%)
LB compute : 287.57 us (92.9%)
LB move op cnt : 0
LB apply : 4.30 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.52 us (67.3%)
Info: cfl dt = 0.0016027331236708527 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2370e+05 | 262144 | 1 | 3.183e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.130003649386044 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9629071241796817, dt = 0.0016027331236708527
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.91 us (2.6%)
patch tree reduce : 1.91 us (0.7%)
gen split merge : 966.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.55 us (0.6%)
LB compute : 242.69 us (91.8%)
LB move op cnt : 0
LB apply : 3.88 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.54 us (67.4%)
Info: cfl dt = 0.0016027163275012183 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.1875e+05 | 262144 | 1 | 3.202e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.02075079873603 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9645098573033526, dt = 0.0016027163275012183
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.23 us (2.6%)
patch tree reduce : 1.99 us (0.7%)
gen split merge : 895.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.43 us (0.5%)
LB compute : 250.39 us (91.8%)
LB move op cnt : 0
LB apply : 4.23 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.48 us (66.1%)
Info: cfl dt = 0.001602698699299728 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.1673e+05 | 262144 | 1 | 3.210e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.976190370719603 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9661125736308538, dt = 0.001602698699299728
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.51 us (2.8%)
patch tree reduce : 2.07 us (0.8%)
gen split merge : 936.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.65 us (0.6%)
LB compute : 239.86 us (91.0%)
LB move op cnt : 0
LB apply : 4.24 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.41 us (64.6%)
Info: cfl dt = 0.0016026791204757996 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2544e+05 | 262144 | 1 | 3.176e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.167809726449065 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9677152723301535, dt = 0.0016026791204757996
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.90 us (2.5%)
patch tree reduce : 1.88 us (0.7%)
gen split merge : 926.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.52 us (0.5%)
LB compute : 258.65 us (92.1%)
LB move op cnt : 0
LB apply : 4.12 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.50 us (66.7%)
Info: cfl dt = 0.001602652570471514 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.1765e+05 | 262144 | 1 | 3.206e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.996063378354172 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9693179514506294, dt = 0.001602652570471514
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.82 us (2.5%)
patch tree reduce : 1.87 us (0.7%)
gen split merge : 937.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.43 us (0.5%)
LB compute : 250.84 us (91.9%)
LB move op cnt : 0
LB apply : 4.19 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.60 us (67.3%)
Info: cfl dt = 0.0016026254967032533 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2045e+05 | 262144 | 1 | 3.195e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.0573945189487 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9709206040211009, dt = 0.0016026254967032533
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.45 us (2.8%)
patch tree reduce : 1.88 us (0.7%)
gen split merge : 984.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.64 us (0.6%)
LB compute : 240.67 us (91.3%)
LB move op cnt : 0
LB apply : 4.12 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.36 us (62.5%)
Info: cfl dt = 0.0016025979697262837 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.5587e+05 | 262144 | 1 | 3.063e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.836671555378146 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9725232295178041, dt = 0.0016025979697262837
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.62 us (2.6%)
patch tree reduce : 1.78 us (0.6%)
gen split merge : 996.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.50 us (0.5%)
LB compute : 273.24 us (92.2%)
LB move op cnt : 0
LB apply : 4.53 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.44 us (65.7%)
Info: cfl dt = 0.001602570065202679 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.3992e+05 | 262144 | 1 | 3.121e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.4851376035828 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9741258274875304, dt = 0.001602570065202679
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.53 us (2.5%)
patch tree reduce : 1.95 us (0.7%)
gen split merge : 859.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.55 us (0.5%)
LB compute : 274.64 us (92.4%)
LB move op cnt : 0
LB apply : 3.97 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.50 us (66.6%)
Info: cfl dt = 0.0016025418471118079 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.0504e+05 | 262144 | 1 | 3.718e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.516409090734781 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9757283975527331, dt = 0.0016025418471118079
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.20 us (2.7%)
patch tree reduce : 1.96 us (0.7%)
gen split merge : 867.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.46 us (0.5%)
LB compute : 243.75 us (91.5%)
LB move op cnt : 0
LB apply : 3.94 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.74 us (62.9%)
Info: cfl dt = 0.0016025133773233254 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2450e+05 | 262144 | 1 | 3.179e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.145242071738842 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.977330939399845, dt = 0.0016025133773233254
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.63 us (2.1%)
patch tree reduce : 1.88 us (0.6%)
gen split merge : 991.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.37 us (0.4%)
LB compute : 290.70 us (92.9%)
LB move op cnt : 0
LB apply : 4.64 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.54 us (66.5%)
Info: cfl dt = 0.0016024847155917614 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.1992e+05 | 262144 | 1 | 3.197e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.04404525740304 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9789334527771683, dt = 0.0016024847155917614
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.15 us (2.5%)
patch tree reduce : 1.89 us (0.7%)
gen split merge : 930.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.60 us (0.6%)
LB compute : 260.76 us (92.0%)
LB move op cnt : 0
LB apply : 4.24 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.66 us (68.8%)
Info: cfl dt = 0.0016024559254115042 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.4817e+05 | 262144 | 1 | 3.091e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.66551652294737 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.98053593749276, dt = 0.0016024559254115042
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.85 us (2.8%)
patch tree reduce : 1.87 us (0.7%)
gen split merge : 1.00 us (0.4%)
split / merge op : 0/0
apply split merge : 1.52 us (0.5%)
LB compute : 260.41 us (91.8%)
LB move op cnt : 0
LB apply : 4.51 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.42 us (65.0%)
Info: cfl dt = 0.001602427080396128 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.1668e+05 | 262144 | 1 | 3.210e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.97226229324921 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9821383934181716, dt = 0.001602427080396128
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.48 us (2.8%)
patch tree reduce : 1.90 us (0.7%)
gen split merge : 972.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.59 us (0.6%)
LB compute : 241.31 us (91.4%)
LB move op cnt : 0
LB apply : 4.10 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.46 us (65.0%)
Info: cfl dt = 0.0016023982670283995 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.1431e+05 | 262144 | 1 | 3.219e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.919645663267236 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9837408204985677, dt = 0.0016023982670283995
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.21 us (2.5%)
patch tree reduce : 1.82 us (0.6%)
gen split merge : 978.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.50 us (0.5%)
LB compute : 268.58 us (92.3%)
LB move op cnt : 0
LB apply : 4.10 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.86 us (65.0%)
Info: cfl dt = 0.00160236957249952 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.1996e+05 | 262144 | 1 | 3.197e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.04363381951686 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.985343218765596, dt = 0.00160236957249952
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.82 us (2.2%)
patch tree reduce : 1.85 us (0.6%)
gen split merge : 1.02 us (0.3%)
split / merge op : 0/0
apply split merge : 1.45 us (0.5%)
LB compute : 293.80 us (93.2%)
LB move op cnt : 0
LB apply : 4.08 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.79 us (63.7%)
Info: cfl dt = 0.0016023410766754305 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.1093e+05 | 262144 | 1 | 3.233e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.844759201004443 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9869455883380955, dt = 0.0016023410766754305
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.57 us (2.8%)
patch tree reduce : 1.98 us (0.7%)
gen split merge : 938.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.42 us (0.5%)
LB compute : 249.94 us (91.5%)
LB move op cnt : 0
LB apply : 4.41 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.60 us (67.9%)
Info: cfl dt = 0.0016023128485766994 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.1804e+05 | 262144 | 1 | 3.205e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.000860550913576 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.988547929414771, dt = 0.0016023128485766994
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.80 us (2.5%)
patch tree reduce : 1.80 us (0.7%)
gen split merge : 977.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.58 us (0.6%)
LB compute : 251.84 us (91.9%)
LB move op cnt : 0
LB apply : 4.29 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.47 us (63.8%)
Info: cfl dt = 0.0016022849458883286 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.1711e+05 | 262144 | 1 | 3.208e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.979928505449635 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9901502422633477, dt = 0.0016022849458883286
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.15 us (2.7%)
patch tree reduce : 1.91 us (0.7%)
gen split merge : 999.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.34 us (0.5%)
LB compute : 238.78 us (91.3%)
LB move op cnt : 0
LB apply : 4.40 us (1.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.50 us (66.3%)
Info: cfl dt = 0.0016022574166313947 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.1894e+05 | 262144 | 1 | 3.201e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.020061251245583 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.991752527209236, dt = 0.0016022574166313947
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.85 us (2.3%)
patch tree reduce : 1.97 us (0.7%)
gen split merge : 1.08 us (0.4%)
split / merge op : 0/0
apply split merge : 1.44 us (0.5%)
LB compute : 270.65 us (92.2%)
LB move op cnt : 0
LB apply : 4.32 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.45 us (64.3%)
Info: cfl dt = 0.0016022303019131473 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.1296e+05 | 262144 | 1 | 3.225e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.88819987265178 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9933547846258675, dt = 0.0016022303019131473
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.22 us (2.7%)
patch tree reduce : 1.96 us (0.7%)
gen split merge : 841.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.37 us (0.5%)
LB compute : 247.63 us (91.6%)
LB move op cnt : 0
LB apply : 4.33 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.50 us (67.3%)
Info: cfl dt = 0.0016022036273958024 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.5711e+05 | 262144 | 1 | 3.058e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.859328704819212 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9949570149277807, dt = 0.0016022036273958024
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.51 us (2.4%)
patch tree reduce : 2.20 us (0.7%)
gen split merge : 1.20 us (0.4%)
split / merge op : 0/0
apply split merge : 1.53 us (0.5%)
LB compute : 291.57 us (92.7%)
LB move op cnt : 0
LB apply : 4.02 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.41 us (63.3%)
Info: cfl dt = 0.0016021774064056873 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2051e+05 | 262144 | 1 | 3.195e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.053672565814022 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9965592185551765, dt = 0.0016021774064056873
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.13 us (2.3%)
patch tree reduce : 2.06 us (0.7%)
gen split merge : 1.03 us (0.3%)
split / merge op : 0/0
apply split merge : 1.43 us (0.5%)
LB compute : 291.72 us (92.8%)
LB move op cnt : 0
LB apply : 4.40 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.39 us (64.7%)
Info: cfl dt = 0.001602151652148265 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2172e+05 | 262144 | 1 | 3.190e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.07990865159167 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9981613959615822, dt = 0.001602151652148265
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.31 us (2.4%)
patch tree reduce : 2.09 us (0.7%)
gen split merge : 1.27 us (0.4%)
split / merge op : 0/0
apply split merge : 1.54 us (0.5%)
LB compute : 279.00 us (92.3%)
LB move op cnt : 0
LB apply : 4.21 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.43 us (65.4%)
Info: cfl dt = 0.0016021263749164505 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.3687e+05 | 262144 | 1 | 3.132e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.412961062580873 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9997635476137304, dt = 0.0016021263749164505
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.92 us (2.5%)
patch tree reduce : 1.94 us (0.7%)
gen split merge : 872.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.46 us (0.5%)
LB compute : 256.36 us (92.0%)
LB move op cnt : 0
LB apply : 4.23 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.39 us (64.4%)
Info: cfl dt = 0.0016021015684047513 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.0296e+05 | 262144 | 1 | 3.265e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.666692743646077 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.001365673988647, dt = 0.0016021015684047513
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.86 us (2.6%)
patch tree reduce : 1.83 us (0.7%)
gen split merge : 874.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.43 us (0.5%)
LB compute : 239.49 us (91.7%)
LB move op cnt : 0
LB apply : 4.17 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.77 us (62.7%)
Info: cfl dt = 0.0016020772298921456 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2185e+05 | 262144 | 1 | 3.190e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.082004971393104 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0029677755570516, dt = 0.0016020772298921456
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.22 us (2.6%)
patch tree reduce : 1.93 us (0.7%)
gen split merge : 971.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.80 us (0.6%)
LB compute : 257.26 us (91.8%)
LB move op cnt : 0
LB apply : 4.21 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.66 us (68.5%)
Info: cfl dt = 0.0016020533576286344 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2218e+05 | 262144 | 1 | 3.188e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.088956963532816 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0045698527869438, dt = 0.0016020533576286344
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.62 us (2.9%)
patch tree reduce : 1.71 us (0.7%)
gen split merge : 1.12 us (0.4%)
split / merge op : 0/0
apply split merge : 1.36 us (0.5%)
LB compute : 237.60 us (91.1%)
LB move op cnt : 0
LB apply : 4.31 us (1.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.43 us (66.5%)
Info: cfl dt = 0.0016020299510646888 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 6.9992e+05 | 262144 | 1 | 3.745e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.398769915135404 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0061719061445724, dt = 0.0016020299510646888
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.41 us (2.7%)
patch tree reduce : 1.89 us (0.7%)
gen split merge : 924.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.44 us (0.5%)
LB compute : 248.47 us (91.6%)
LB move op cnt : 0
LB apply : 4.36 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.58 us (68.8%)
Info: cfl dt = 0.0016020070223729077 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 6.9401e+05 | 262144 | 1 | 3.777e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.268599832887993 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.007773936095637, dt = 0.0016020070223729077
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.22 us (2.3%)
patch tree reduce : 1.71 us (0.5%)
gen split merge : 945.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.37 us (0.4%)
LB compute : 291.05 us (92.9%)
LB move op cnt : 0
LB apply : 4.23 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.46 us (65.1%)
Info: cfl dt = 0.001601984585704248 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.1733e+05 | 262144 | 1 | 3.654e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.781484815698729 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.00937594311801, dt = 0.001601984585704248
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.95 us (2.4%)
patch tree reduce : 1.79 us (0.6%)
gen split merge : 917.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.45 us (0.5%)
LB compute : 264.43 us (92.3%)
LB move op cnt : 0
LB apply : 4.25 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.94 us (65.0%)
Info: cfl dt = 0.0016019626348712731 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.2073e+05 | 262144 | 1 | 3.637e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.85604677169503 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0109779277037143, dt = 0.0016019626348712731
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.06 us (2.7%)
patch tree reduce : 2.11 us (0.8%)
gen split merge : 1.28 us (0.5%)
split / merge op : 0/0
apply split merge : 1.41 us (0.5%)
LB compute : 238.94 us (91.2%)
LB move op cnt : 0
LB apply : 4.46 us (1.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.40 us (64.9%)
Info: cfl dt = 0.0016019411466588254 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2331e+05 | 262144 | 1 | 3.184e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.112524135360278 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0125798903385856, dt = 0.0016019411466588254
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.98 us (2.7%)
patch tree reduce : 1.99 us (0.8%)
gen split merge : 993.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.72 us (0.7%)
LB compute : 238.50 us (91.1%)
LB move op cnt : 0
LB apply : 4.36 us (1.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.47 us (66.0%)
Info: cfl dt = 0.0016019200947514627 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2453e+05 | 262144 | 1 | 3.179e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.13905405437841 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0141818314852444, dt = 0.0016019200947514627
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.19 us (2.7%)
patch tree reduce : 1.84 us (0.7%)
gen split merge : 920.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.56 us (0.6%)
LB compute : 241.68 us (91.4%)
LB move op cnt : 0
LB apply : 4.37 us (1.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.55 us (67.1%)
Info: cfl dt = 0.0016018994381453273 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.1833e+05 | 262144 | 1 | 3.203e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.00241459879247 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.015783751579996, dt = 0.0016018994381453273
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.35 us (2.8%)
patch tree reduce : 1.81 us (0.7%)
gen split merge : 900.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.31 us (0.5%)
LB compute : 243.57 us (91.6%)
LB move op cnt : 0
LB apply : 4.14 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.82 us (64.7%)
Info: cfl dt = 0.0016018791254272502 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2564e+05 | 262144 | 1 | 3.175e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.162936337627176 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0173856510181412, dt = 0.0016018791254272502
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.29 us (2.4%)
patch tree reduce : 1.97 us (0.7%)
gen split merge : 801.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.14 us (0.4%)
LB compute : 279.37 us (92.6%)
LB move op cnt : 0
LB apply : 4.32 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.48 us (65.4%)
Info: cfl dt = 0.0016018590992361039 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2209e+05 | 262144 | 1 | 3.189e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.08479213013246 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0189875301435685, dt = 0.0016018590992361039
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.14 us (2.4%)
patch tree reduce : 2.00 us (0.7%)
gen split merge : 1.06 us (0.4%)
split / merge op : 0/0
apply split merge : 1.56 us (0.5%)
LB compute : 278.74 us (92.6%)
LB move op cnt : 0
LB apply : 3.95 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.51 us (66.2%)
Info: cfl dt = 0.0016018393012528621 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.9428e+05 | 262144 | 1 | 3.300e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.47267231546711 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0205893892428046, dt = 0.0016018393012528621
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.46 us (2.5%)
patch tree reduce : 1.83 us (0.6%)
gen split merge : 995.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.43 us (0.5%)
LB compute : 274.80 us (92.4%)
LB move op cnt : 0
LB apply : 4.50 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.47 us (64.6%)
Info: cfl dt = 0.001601819673451749 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.1660e+05 | 262144 | 1 | 3.210e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.963563907929466 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0221912285440575, dt = 0.001601819673451749
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.82 us (2.6%)
patch tree reduce : 2.11 us (0.8%)
gen split merge : 829.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.47 us (0.6%)
LB compute : 243.84 us (91.6%)
LB move op cnt : 0
LB apply : 4.54 us (1.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.98 us (68.5%)
Info: cfl dt = 0.0016018001609326407 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.1690e+05 | 262144 | 1 | 3.209e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.969796444203908 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0237930482175093, dt = 0.0016018001609326407
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.59 us (2.7%)
patch tree reduce : 2.04 us (0.7%)
gen split merge : 1.09 us (0.4%)
split / merge op : 0/0
apply split merge : 1.40 us (0.5%)
LB compute : 255.62 us (91.7%)
LB move op cnt : 0
LB apply : 4.07 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.51 us (67.4%)
Info: cfl dt = 0.0016017807324694528 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.4279e+05 | 262144 | 1 | 3.529e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.339393901785304 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0253948483784419, dt = 0.0016017807324694528
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.49 us (2.5%)
patch tree reduce : 1.90 us (0.6%)
gen split merge : 1.12 us (0.4%)
split / merge op : 0/0
apply split merge : 1.33 us (0.4%)
LB compute : 274.87 us (92.4%)
LB move op cnt : 0
LB apply : 4.36 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.46 us (65.6%)
Info: cfl dt = 0.0016017613593983177 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3116e+05 | 262144 | 1 | 3.585e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.083376211537907 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0269966291109114, dt = 0.0016017613593983177
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.26 us (2.3%)
patch tree reduce : 1.98 us (0.6%)
gen split merge : 956.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.87 us (0.6%)
LB compute : 296.67 us (92.6%)
LB move op cnt : 0
LB apply : 4.63 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.85 us (71.4%)
Info: cfl dt = 0.00160174200502092 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.4336e+05 | 262144 | 1 | 3.526e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.351565661967946 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0285983904703098, dt = 0.00160174200502092
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.07 us (2.3%)
patch tree reduce : 1.90 us (0.6%)
gen split merge : 935.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.43 us (0.5%)
LB compute : 289.24 us (92.7%)
LB move op cnt : 0
LB apply : 4.36 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.54 us (65.8%)
Info: cfl dt = 0.0016017226241011344 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2834e+05 | 262144 | 1 | 3.165e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.220650649923872 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0302001324753307, dt = 0.0016017226241011344
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.45 us (2.5%)
patch tree reduce : 2.04 us (0.7%)
gen split merge : 856.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.52 us (0.5%)
LB compute : 273.86 us (92.2%)
LB move op cnt : 0
LB apply : 4.37 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.81 us (62.9%)
Info: cfl dt = 0.0016017032152609014 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.2164e+05 | 262144 | 1 | 3.633e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.87338821095542 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.031801855099432, dt = 0.0016017032152609014
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.77 us (2.2%)
patch tree reduce : 2.22 us (0.7%)
gen split merge : 1.12 us (0.4%)
split / merge op : 0/0
apply split merge : 1.37 us (0.4%)
LB compute : 285.10 us (92.7%)
LB move op cnt : 0
LB apply : 4.42 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.49 us (64.7%)
Info: cfl dt = 0.0016016837457569616 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.1558e+05 | 262144 | 1 | 3.214e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.93959218481474 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0334035583146928, dt = 0.0016016837457569616
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.75 us (2.1%)
patch tree reduce : 2.12 us (0.7%)
gen split merge : 991.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.47 us (0.5%)
LB compute : 294.27 us (92.9%)
LB move op cnt : 0
LB apply : 4.27 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.50 us (66.8%)
Info: cfl dt = 0.0016016641642398065 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.8501e+05 | 262144 | 1 | 3.339e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.266852334731922 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0350052420604496, dt = 0.0016016641642398065
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.27 us (2.8%)
patch tree reduce : 1.79 us (0.7%)
gen split merge : 1.07 us (0.4%)
split / merge op : 0/0
apply split merge : 1.49 us (0.6%)
LB compute : 235.41 us (91.4%)
LB move op cnt : 0
LB apply : 4.29 us (1.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.49 us (66.4%)
Info: cfl dt = 0.0016016444371748097 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2499e+05 | 262144 | 1 | 3.178e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.14598577017425 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0366069062246894, dt = 0.0016016444371748097
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.18 us (2.7%)
patch tree reduce : 2.08 us (0.8%)
gen split merge : 1.07 us (0.4%)
split / merge op : 0/0
apply split merge : 1.53 us (0.6%)
LB compute : 240.54 us (91.2%)
LB move op cnt : 0
LB apply : 4.45 us (1.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.54 us (65.3%)
Info: cfl dt = 0.0016016245532981623 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.7078e+05 | 262144 | 1 | 3.401e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.953454901492854 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0382085506618643, dt = 0.0016016245532981623
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.43 us (2.4%)
patch tree reduce : 2.07 us (0.7%)
gen split merge : 913.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.56 us (0.5%)
LB compute : 281.65 us (92.4%)
LB move op cnt : 0
LB apply : 4.56 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.53 us (70.6%)
Info: cfl dt = 0.0016016045224889908 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2357e+05 | 262144 | 1 | 3.183e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.11446380095661 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0398101752151625, dt = 0.0016016045224889908
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.52 us (2.9%)
patch tree reduce : 2.01 us (0.8%)
gen split merge : 1.13 us (0.4%)
split / merge op : 0/0
apply split merge : 1.44 us (0.6%)
LB compute : 232.65 us (90.8%)
LB move op cnt : 0
LB apply : 4.32 us (1.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.42 us (62.5%)
Info: cfl dt = 0.001601584370255912 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.1912e+05 | 262144 | 1 | 3.200e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.016205962209973 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0414117797376514, dt = 0.001601584370255912
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.13 us (2.4%)
patch tree reduce : 1.90 us (0.6%)
gen split merge : 1.03 us (0.3%)
split / merge op : 0/0
apply split merge : 1.48 us (0.5%)
LB compute : 278.45 us (92.7%)
LB move op cnt : 0
LB apply : 4.12 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.38 us (63.0%)
Info: cfl dt = 0.001601564131410151 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2689e+05 | 262144 | 1 | 3.170e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.186875492464395 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0430133641079073, dt = 0.001601564131410151
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.09 us (2.6%)
patch tree reduce : 2.08 us (0.8%)
gen split merge : 847.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.47 us (0.5%)
LB compute : 247.39 us (91.7%)
LB move op cnt : 0
LB apply : 4.18 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.57 us (67.5%)
Info: cfl dt = 0.0016015438337056355 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.2760e+05 | 262144 | 1 | 3.603e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.002942534674066 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0446149282393176, dt = 0.0016015438337056355
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.97 us (2.7%)
patch tree reduce : 1.94 us (0.8%)
gen split merge : 1.05 us (0.4%)
split / merge op : 0/0
apply split merge : 1.47 us (0.6%)
LB compute : 233.03 us (91.3%)
LB move op cnt : 0
LB apply : 4.04 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.51 us (66.5%)
Info: cfl dt = 0.0016015234974430237 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2198e+05 | 262144 | 1 | 3.189e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.078604996955615 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0462164720730232, dt = 0.0016015234974430237
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.60 us (2.5%)
patch tree reduce : 2.12 us (0.8%)
gen split merge : 1.22 us (0.5%)
split / merge op : 0/0
apply split merge : 1.39 us (0.5%)
LB compute : 239.60 us (91.6%)
LB move op cnt : 0
LB apply : 4.00 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.42 us (64.6%)
Info: cfl dt = 0.0016015031396178177 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.1744e+05 | 262144 | 1 | 3.207e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.978340009747416 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.047817995570466, dt = 0.0016015031396178177
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.62 us (2.2%)
patch tree reduce : 2.08 us (0.7%)
gen split merge : 1.06 us (0.4%)
split / merge op : 0/0
apply split merge : 1.43 us (0.5%)
LB compute : 274.39 us (92.6%)
LB move op cnt : 0
LB apply : 4.05 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.53 us (66.1%)
Info: cfl dt = 0.0016014827748482663 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2115e+05 | 262144 | 1 | 3.192e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.059841215809605 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0494194987100838, dt = 0.0016014827748482663
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 8.34 us (2.8%)
patch tree reduce : 1.74 us (0.6%)
gen split merge : 973.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.34 us (0.4%)
LB compute : 275.07 us (92.0%)
LB move op cnt : 0
LB apply : 4.42 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.58 us (68.8%)
Info: cfl dt = 0.0016014624155770826 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2130e+05 | 262144 | 1 | 3.192e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.06291997787473 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.051020981484932, dt = 0.0016014624155770826
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.93 us (2.3%)
patch tree reduce : 1.96 us (0.7%)
gen split merge : 871.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.33 us (0.5%)
LB compute : 272.80 us (92.3%)
LB move op cnt : 0
LB apply : 4.31 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.47 us (67.8%)
Info: cfl dt = 0.001601442075168313 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.1941e+05 | 262144 | 1 | 3.199e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.021004055604074 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0526224439005092, dt = 0.001601442075168313
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.40 us (1.5%)
patch tree reduce : 1.84 us (0.4%)
gen split merge : 962.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.42 us (0.3%)
LB compute : 471.98 us (95.3%)
LB move op cnt : 0
LB apply : 4.61 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.62 us (75.3%)
Info: cfl dt = 0.0016014217706937866 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.1406e+05 | 262144 | 1 | 3.671e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.703953760329782 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0542238859756774, dt = 0.0016014217706937866
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.63 us (3.0%)
patch tree reduce : 1.78 us (0.7%)
gen split merge : 1.01 us (0.4%)
split / merge op : 0/0
apply split merge : 1.28 us (0.5%)
LB compute : 230.40 us (90.9%)
LB move op cnt : 0
LB apply : 4.47 us (1.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.59 us (70.0%)
Info: cfl dt = 0.0016014015383542853 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.1444e+05 | 262144 | 1 | 3.669e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.712057214287357 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0558253077463713, dt = 0.0016014015383542853
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.44 us (2.5%)
patch tree reduce : 2.00 us (0.7%)
gen split merge : 988.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.17 us (0.4%)
LB compute : 273.22 us (92.2%)
LB move op cnt : 0
LB apply : 4.60 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.61 us (67.9%)
Info: cfl dt = 0.0016013814156501712 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.1369e+05 | 262144 | 1 | 3.222e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.89452785400605 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0574267092847256, dt = 0.0009066240486077515
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.87 us (2.5%)
patch tree reduce : 1.88 us (0.7%)
gen split merge : 785.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.34 us (0.5%)
LB compute : 254.68 us (92.1%)
LB move op cnt : 0
LB apply : 4.50 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.55 us (67.0%)
Info: cfl dt = 0.0016013723412934553 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.1534e+05 | 262144 | 1 | 3.215e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10.151463455392728 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 233.037872577 (s) [Godunov][rank=0]
Info: dump to _to_trash/ramses_kh/periodic_0009.vtk [VTK Dump][rank=0]
- took 36.08 ms, bandwidth = 1.13 GB/s
amr::Godunov: t = 1.0583333333333333, dt = 0.0016013723412934553
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.75 us (2.3%)
patch tree reduce : 24.32 us (7.2%)
gen split merge : 1.01 us (0.3%)
split / merge op : 0/0
apply split merge : 1.57 us (0.5%)
LB compute : 292.74 us (86.5%)
LB move op cnt : 0
LB apply : 4.30 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.62 us (68.6%)
Info: cfl dt = 0.0016013506591763165 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.3539e+05 | 262144 | 1 | 3.138e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.37150478161335 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0599347056746269, dt = 0.0016013506591763165
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.22 us (2.6%)
patch tree reduce : 1.96 us (0.7%)
gen split merge : 1.06 us (0.4%)
split / merge op : 0/0
apply split merge : 1.63 us (0.6%)
LB compute : 255.60 us (91.9%)
LB move op cnt : 0
LB apply : 4.49 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.54 us (68.6%)
Info: cfl dt = 0.0016013292876077753 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2211e+05 | 262144 | 1 | 3.189e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.079256104348577 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0615360563338032, dt = 0.0016013292876077753
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.54 us (2.8%)
patch tree reduce : 2.13 us (0.8%)
gen split merge : 1.04 us (0.4%)
split / merge op : 0/0
apply split merge : 1.49 us (0.5%)
LB compute : 248.24 us (91.3%)
LB move op cnt : 0
LB apply : 4.35 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.60 us (68.9%)
Info: cfl dt = 0.0016013088512940147 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.1827e+05 | 262144 | 1 | 3.204e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.994581751158695 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.063137385621411, dt = 0.0016013088512940147
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.16 us (2.2%)
patch tree reduce : 2.01 us (0.6%)
gen split merge : 1.02 us (0.3%)
split / merge op : 0/0
apply split merge : 1.29 us (0.4%)
LB compute : 298.70 us (92.7%)
LB move op cnt : 0
LB apply : 4.45 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.91 us (65.2%)
Info: cfl dt = 0.0016012894771770265 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.0850e+05 | 262144 | 1 | 3.242e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.779353385115524 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.064738694472705, dt = 0.0016012894771770265
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.17 us (2.7%)
patch tree reduce : 2.07 us (0.8%)
gen split merge : 908.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.47 us (0.6%)
LB compute : 241.86 us (91.5%)
LB move op cnt : 0
LB apply : 4.47 us (1.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.50 us (65.5%)
Info: cfl dt = 0.001601271015296715 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.1682e+05 | 262144 | 1 | 3.209e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.96219593247788 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0663399839498822, dt = 0.001601271015296715
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.02 us (2.6%)
patch tree reduce : 2.02 us (0.7%)
gen split merge : 990.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.45 us (0.5%)
LB compute : 251.98 us (91.9%)
LB move op cnt : 0
LB apply : 4.34 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.20 us (67.0%)
Info: cfl dt = 0.0016012532244748861 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.1671e+05 | 262144 | 1 | 3.210e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.959634676907214 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0679412549651788, dt = 0.0016012532244748861
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.16 us (2.5%)
patch tree reduce : 2.08 us (0.7%)
gen split merge : 967.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.54 us (0.5%)
LB compute : 262.80 us (92.1%)
LB move op cnt : 0
LB apply : 4.23 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.70 us (67.2%)
Info: cfl dt = 0.0016012358783368933 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2746e+05 | 262144 | 1 | 3.168e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.19572807812511 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0695425081896537, dt = 0.0016012358783368933
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.59 us (2.2%)
patch tree reduce : 1.72 us (0.6%)
gen split merge : 933.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.56 us (0.5%)
LB compute : 284.26 us (92.9%)
LB move op cnt : 0
LB apply : 4.16 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.53 us (66.7%)
Info: cfl dt = 0.0016012187761594789 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.1607e+05 | 262144 | 1 | 3.212e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.945150264922862 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0711437440679905, dt = 0.0016012187761594789
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.08 us (2.4%)
patch tree reduce : 1.72 us (0.6%)
gen split merge : 914.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.44 us (0.5%)
LB compute : 276.39 us (92.6%)
LB move op cnt : 0
LB apply : 4.33 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.53 us (67.1%)
Info: cfl dt = 0.0016012017977975628 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.4188e+05 | 262144 | 1 | 3.114e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.512426395569587 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0727449628441499, dt = 0.0016012017977975628
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.29 us (2.8%)
patch tree reduce : 1.91 us (0.7%)
gen split merge : 1.00 us (0.4%)
split / merge op : 0/0
apply split merge : 1.90 us (0.7%)
LB compute : 241.73 us (91.3%)
LB move op cnt : 0
LB apply : 4.42 us (1.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.43 us (65.6%)
Info: cfl dt = 0.0016011849154309223 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.1388e+05 | 262144 | 1 | 3.221e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.896473263373633 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0743461646419474, dt = 0.0016011849154309223
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.85 us (2.6%)
patch tree reduce : 1.75 us (0.7%)
gen split merge : 925.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.52 us (0.6%)
LB compute : 239.91 us (91.7%)
LB move op cnt : 0
LB apply : 4.06 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.46 us (66.5%)
Info: cfl dt = 0.0016011681721815922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.1857e+05 | 262144 | 1 | 3.202e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.99938291426604 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0759473495573784, dt = 0.0016011681721815922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.90 us (2.5%)
patch tree reduce : 1.97 us (0.7%)
gen split merge : 950.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.32 us (0.5%)
LB compute : 257.69 us (92.0%)
LB move op cnt : 0
LB apply : 4.11 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.47 us (66.3%)
Info: cfl dt = 0.0016011516145670627 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2402e+05 | 262144 | 1 | 3.181e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.119084051626356 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.07754851772956, dt = 0.0016011516145670627
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.30 us (2.5%)
patch tree reduce : 1.95 us (0.7%)
gen split merge : 1.04 us (0.4%)
split / merge op : 0/0
apply split merge : 1.52 us (0.5%)
LB compute : 271.67 us (92.3%)
LB move op cnt : 0
LB apply : 4.34 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.36 us (63.2%)
Info: cfl dt = 0.0016011350432765792 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.1702e+05 | 262144 | 1 | 3.209e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.964936063466908 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0791496693441271, dt = 0.0016011350432765792
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.40 us (2.8%)
patch tree reduce : 1.76 us (0.7%)
gen split merge : 947.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.45 us (0.6%)
LB compute : 237.59 us (91.5%)
LB move op cnt : 0
LB apply : 4.11 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.40 us (63.2%)
Info: cfl dt = 0.0016011185806649774 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.5058e+05 | 262144 | 1 | 3.082e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.702788270831604 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0807508043874037, dt = 0.0016011185806649774
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.98 us (2.6%)
patch tree reduce : 2.02 us (0.7%)
gen split merge : 1.08 us (0.4%)
split / merge op : 0/0
apply split merge : 1.65 us (0.6%)
LB compute : 251.20 us (91.9%)
LB move op cnt : 0
LB apply : 4.05 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.58 us (64.3%)
Info: cfl dt = 0.001601102445053882 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 6.9965e+05 | 262144 | 1 | 3.747e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.383934549344907 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0823519229680687, dt = 0.001601102445053882
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.73 us (2.5%)
patch tree reduce : 2.28 us (0.9%)
gen split merge : 902.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.48 us (0.6%)
LB compute : 243.69 us (91.6%)
LB move op cnt : 0
LB apply : 3.94 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.52 us (65.3%)
Info: cfl dt = 0.0016010867187099649 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.5345e+05 | 262144 | 1 | 3.479e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.56669781799651 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0839530254131227, dt = 0.0016010867187099649
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 8.18 us (3.1%)
patch tree reduce : 1.69 us (0.6%)
gen split merge : 941.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.50 us (0.6%)
LB compute : 237.34 us (90.9%)
LB move op cnt : 0
LB apply : 4.36 us (1.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.53 us (66.8%)
Info: cfl dt = 0.0016010715072098081 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.0086e+05 | 262144 | 1 | 3.273e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.608976878373348 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0855541121318326, dt = 0.0016010715072098081
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.49 us (2.7%)
patch tree reduce : 1.79 us (0.6%)
gen split merge : 988.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.57 us (0.6%)
LB compute : 252.44 us (91.6%)
LB move op cnt : 0
LB apply : 4.43 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.66 us (69.1%)
Info: cfl dt = 0.0016010568575280583 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.0605e+05 | 262144 | 1 | 3.252e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.722892831995196 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0871551836390425, dt = 0.0016010568575280583
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.17 us (2.4%)
patch tree reduce : 1.69 us (0.6%)
gen split merge : 913.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.64 us (0.6%)
LB compute : 270.46 us (92.3%)
LB move op cnt : 0
LB apply : 4.39 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.47 us (65.3%)
Info: cfl dt = 0.0016010426990485948 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.1827e+05 | 262144 | 1 | 3.204e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.99151128082107 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0887562404965705, dt = 0.0016010426990485948
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.97 us (2.2%)
patch tree reduce : 1.69 us (0.5%)
gen split merge : 923.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.39 us (0.4%)
LB compute : 294.66 us (93.1%)
LB move op cnt : 0
LB apply : 4.31 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.50 us (66.3%)
Info: cfl dt = 0.0016010289955032883 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2597e+05 | 262144 | 1 | 3.174e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.16062072407044 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0903572831956192, dt = 0.0016010289955032883
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.81 us (2.2%)
patch tree reduce : 1.70 us (0.6%)
gen split merge : 974.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.72 us (0.6%)
LB compute : 284.11 us (92.7%)
LB move op cnt : 0
LB apply : 4.13 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.43 us (62.9%)
Info: cfl dt = 0.0016010156983639063 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.1832e+05 | 262144 | 1 | 3.203e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.992236625392056 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0919583121911225, dt = 0.0016010156983639063
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.48 us (2.5%)
patch tree reduce : 1.84 us (0.6%)
gen split merge : 1.01 us (0.3%)
split / merge op : 0/0
apply split merge : 1.15 us (0.4%)
LB compute : 280.92 us (92.6%)
LB move op cnt : 0
LB apply : 4.10 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.46 us (65.3%)
Info: cfl dt = 0.001601002728575394 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.1814e+05 | 262144 | 1 | 3.204e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.988140958123655 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0935593278894864, dt = 0.001601002728575394
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.83 us (2.5%)
patch tree reduce : 1.83 us (0.7%)
gen split merge : 978.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.44 us (0.5%)
LB compute : 252.11 us (92.0%)
LB move op cnt : 0
LB apply : 4.17 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.53 us (65.3%)
Info: cfl dt = 0.0016009900262506428 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.0936e+05 | 262144 | 1 | 3.239e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.795036634697112 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0951603306180617, dt = 0.0016009900262506428
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.06 us (2.6%)
patch tree reduce : 2.03 us (0.8%)
gen split merge : 1.24 us (0.5%)
split / merge op : 0/0
apply split merge : 1.37 us (0.5%)
LB compute : 244.27 us (91.4%)
LB move op cnt : 0
LB apply : 4.39 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.56 us (68.8%)
Info: cfl dt = 0.0016009775358266831 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.8087e+05 | 262144 | 1 | 3.357e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.168345076777673 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0967613206443123, dt = 0.0016009775358266831
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.29 us (2.4%)
patch tree reduce : 1.85 us (0.6%)
gen split merge : 1.12 us (0.4%)
split / merge op : 0/0
apply split merge : 1.81 us (0.6%)
LB compute : 278.95 us (92.3%)
LB move op cnt : 0
LB apply : 4.54 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.49 us (65.8%)
Info: cfl dt = 0.001600965198316177 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.8389e+05 | 262144 | 1 | 3.344e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.234685947554023 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.098362298180139, dt = 0.001600965198316177
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.77 us (2.7%)
patch tree reduce : 1.76 us (0.6%)
gen split merge : 996.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.56 us (0.5%)
LB compute : 267.36 us (92.0%)
LB move op cnt : 0
LB apply : 4.47 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.68 us (63.8%)
Info: cfl dt = 0.001600952941936872 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.1609e+05 | 262144 | 1 | 3.212e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.942379036526837 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0999632633784553, dt = 0.001600952941936872
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.54 us (3.0%)
patch tree reduce : 1.61 us (0.7%)
gen split merge : 743.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.19 us (0.5%)
LB compute : 200.19 us (91.4%)
LB move op cnt : 0
LB apply : 3.23 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.08 us (68.8%)
Info: cfl dt = 0.0016009406994765645 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.3618e+05 | 262144 | 1 | 3.135e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.38400236450029 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1015642163203923, dt = 0.0016009406994765645
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.12 us (2.4%)
patch tree reduce : 1.84 us (0.6%)
gen split merge : 1.32 us (0.4%)
split / merge op : 0/0
apply split merge : 1.38 us (0.5%)
LB compute : 275.48 us (92.6%)
LB move op cnt : 0
LB apply : 3.91 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.44 us (66.3%)
Info: cfl dt = 0.0016009284342486051 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.1266e+05 | 262144 | 1 | 3.226e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.866774263900933 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1031651570198688, dt = 0.0016009284342486051
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.80 us (2.1%)
patch tree reduce : 1.72 us (0.6%)
gen split merge : 648.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.29 us (0.5%)
LB compute : 250.68 us (92.6%)
LB move op cnt : 0
LB apply : 4.18 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.94 us (65.7%)
Info: cfl dt = 0.001600916178738763 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.1948e+05 | 262144 | 1 | 3.644e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.817963698853857 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1047660854541175, dt = 0.001600916178738763
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.90 us (2.7%)
patch tree reduce : 1.93 us (0.8%)
gen split merge : 778.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.49 us (0.6%)
LB compute : 234.73 us (91.2%)
LB move op cnt : 0
LB apply : 4.17 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.48 us (66.3%)
Info: cfl dt = 0.001600903872758988 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.0174e+05 | 262144 | 1 | 3.270e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.626496278698912 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1063670016328562, dt = 0.001600903872758988
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.86 us (2.3%)
patch tree reduce : 2.17 us (0.7%)
gen split merge : 1.14 us (0.4%)
split / merge op : 0/0
apply split merge : 1.41 us (0.5%)
LB compute : 277.68 us (92.3%)
LB move op cnt : 0
LB apply : 4.65 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.59 us (67.3%)
Info: cfl dt = 0.0016008915245074111 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.1397e+05 | 262144 | 1 | 3.221e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.895223188041175 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.107967905505615, dt = 0.0016008915245074111
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.61 us (2.4%)
patch tree reduce : 1.99 us (0.7%)
gen split merge : 936.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.63 us (0.6%)
LB compute : 257.94 us (92.1%)
LB move op cnt : 0
LB apply : 4.34 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.52 us (66.9%)
Info: cfl dt = 0.0016008790990780692 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.4337e+05 | 262144 | 1 | 3.108e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.54148558469167 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1095687970301225, dt = 0.0016008790990780692
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.57 us (2.8%)
patch tree reduce : 1.86 us (0.7%)
gen split merge : 914.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.38 us (0.5%)
LB compute : 245.48 us (91.5%)
LB move op cnt : 0
LB apply : 4.24 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.52 us (67.1%)
Info: cfl dt = 0.0016008664881572438 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.1447e+05 | 262144 | 1 | 3.219e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.905960591766686 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1111696761292005, dt = 0.0016008664881572438
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.19 us (2.7%)
patch tree reduce : 1.84 us (0.7%)
gen split merge : 919.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.43 us (0.5%)
LB compute : 240.71 us (91.4%)
LB move op cnt : 0
LB apply : 4.27 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.51 us (66.6%)
Info: cfl dt = 0.0016008535842310671 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.1125e+05 | 262144 | 1 | 3.231e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.834936906979014 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1127705426173577, dt = 0.0016008535842310671
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.95 us (2.4%)
patch tree reduce : 1.85 us (0.6%)
gen split merge : 912.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.45 us (0.5%)
LB compute : 271.51 us (92.3%)
LB move op cnt : 0
LB apply : 4.17 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.68 us (67.2%)
Info: cfl dt = 0.0016008403058171057 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.3486e+05 | 262144 | 1 | 3.140e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.353872663944998 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1143713962015889, dt = 0.0016008403058171057
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.34 us (2.6%)
patch tree reduce : 1.81 us (0.6%)
gen split merge : 859.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.48 us (0.5%)
LB compute : 259.32 us (91.9%)
LB move op cnt : 0
LB apply : 4.48 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.64 us (69.0%)
Info: cfl dt = 0.0016008265866534004 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.1539e+05 | 262144 | 1 | 3.215e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.925797050675765 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.115972236507406, dt = 0.0016008265866534004
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.98 us (2.4%)
patch tree reduce : 1.79 us (0.6%)
gen split merge : 1.12 us (0.4%)
split / merge op : 0/0
apply split merge : 1.39 us (0.5%)
LB compute : 266.52 us (92.3%)
LB move op cnt : 0
LB apply : 4.25 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.43 us (66.2%)
Info: cfl dt = 0.0016008122439101237 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2537e+05 | 262144 | 1 | 3.176e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.144947838036856 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1175730630940595, dt = 0.0016008122439101237
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.88 us (2.6%)
patch tree reduce : 1.79 us (0.7%)
gen split merge : 913.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.40 us (0.5%)
LB compute : 239.00 us (91.5%)
LB move op cnt : 0
LB apply : 4.29 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.59 us (67.5%)
Info: cfl dt = 0.0016007973860130867 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.7020e+05 | 262144 | 1 | 3.404e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.931958602588793 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1191738753379696, dt = 0.0016007973860130867
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.15 us (2.7%)
patch tree reduce : 1.93 us (0.7%)
gen split merge : 1.22 us (0.5%)
split / merge op : 0/0
apply split merge : 1.26 us (0.5%)
LB compute : 240.43 us (91.3%)
LB move op cnt : 0
LB apply : 4.40 us (1.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.44 us (65.8%)
Info: cfl dt = 0.0016007820727115727 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.4771e+05 | 262144 | 1 | 3.092e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.635793063116065 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1207746727239827, dt = 0.0016007820727115727
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.71 us (2.3%)
patch tree reduce : 1.74 us (0.6%)
gen split merge : 897.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.47 us (0.5%)
LB compute : 270.17 us (92.6%)
LB move op cnt : 0
LB apply : 4.37 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.89 us (65.0%)
Info: cfl dt = 0.001600766407671341 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.1587e+05 | 262144 | 1 | 3.213e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.935513752762922 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1223754547966942, dt = 0.001600766407671341
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.40 us (2.6%)
patch tree reduce : 1.85 us (0.6%)
gen split merge : 903.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.60 us (0.6%)
LB compute : 266.33 us (92.0%)
LB move op cnt : 0
LB apply : 4.37 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.52 us (65.9%)
Info: cfl dt = 0.0016007504875589203 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2779e+05 | 262144 | 1 | 3.167e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.19744324995795 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1239762212043656, dt = 0.0016007504875589203
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.11 us (2.7%)
patch tree reduce : 1.82 us (0.7%)
gen split merge : 1.07 us (0.4%)
split / merge op : 0/0
apply split merge : 1.62 us (0.6%)
LB compute : 236.81 us (91.2%)
LB move op cnt : 0
LB apply : 4.50 us (1.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.35 us (63.7%)
Info: cfl dt = 0.0016007344008288934 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.1596e+05 | 262144 | 1 | 3.213e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.937204201422876 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1255769716919244, dt = 0.0016007344008288934
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.94 us (2.5%)
patch tree reduce : 1.71 us (0.6%)
gen split merge : 1.01 us (0.4%)
split / merge op : 0/0
apply split merge : 1.66 us (0.6%)
LB compute : 255.59 us (91.9%)
LB move op cnt : 0
LB apply : 4.52 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.02 us (68.6%)
Info: cfl dt = 0.0016007182298412332 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2984e+05 | 262144 | 1 | 3.159e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.242235438882528 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1271777060927533, dt = 0.0016007182298412332
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.30 us (2.4%)
patch tree reduce : 1.91 us (0.6%)
gen split merge : 985.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.92 us (0.6%)
LB compute : 282.33 us (92.4%)
LB move op cnt : 0
LB apply : 4.29 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.49 us (67.5%)
Info: cfl dt = 0.0016007019530294797 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 6.3542e+05 | 262144 | 1 | 4.126e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.96817168535906 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1287784243225945, dt = 0.0016007019530294797
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.54 us (2.3%)
patch tree reduce : 1.79 us (0.5%)
gen split merge : 970.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.50 us (0.4%)
LB compute : 311.21 us (93.1%)
LB move op cnt : 0
LB apply : 4.36 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.82 us (71.1%)
Info: cfl dt = 0.0016006855249584666 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 6.5959e+05 | 262144 | 1 | 3.974e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.499221593361158 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.130379126275624, dt = 0.0016006855249584666
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.63 us (2.6%)
patch tree reduce : 1.95 us (0.7%)
gen split merge : 1.16 us (0.4%)
split / merge op : 0/0
apply split merge : 1.49 us (0.5%)
LB compute : 266.70 us (91.8%)
LB move op cnt : 0
LB apply : 4.32 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.72 us (69.1%)
Info: cfl dt = 0.001600668900622301 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 6.7703e+05 | 262144 | 1 | 3.872e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.882598845763198 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1319798118005824, dt = 0.001600668900622301
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.75 us (2.2%)
patch tree reduce : 1.93 us (0.6%)
gen split merge : 829.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.61 us (0.5%)
LB compute : 289.29 us (92.8%)
LB move op cnt : 0
LB apply : 4.05 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.07 us (71.3%)
Info: cfl dt = 0.0016006520491302564 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 6.6107e+05 | 262144 | 1 | 3.965e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.531630685678953 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1335804807012047, dt = 0.0016006520491302564
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.74 us (2.1%)
patch tree reduce : 1.68 us (0.5%)
gen split merge : 970.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.80 us (0.6%)
LB compute : 297.14 us (92.9%)
LB move op cnt : 0
LB apply : 4.29 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.02 us (73.3%)
Info: cfl dt = 0.001600634958192797 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.0065e+05 | 262144 | 1 | 3.741e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.401468125986355 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.135181132750335, dt = 0.001600634958192797
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.84 us (2.7%)
patch tree reduce : 1.67 us (0.6%)
gen split merge : 980.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.81 us (0.6%)
LB compute : 269.58 us (91.9%)
LB move op cnt : 0
LB apply : 4.36 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.83 us (67.6%)
Info: cfl dt = 0.0016006176271223605 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 6.7595e+05 | 262144 | 1 | 3.878e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.858270731023477 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1367817677085277, dt = 0.0016006176271223605
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.57 us (2.3%)
patch tree reduce : 1.80 us (0.6%)
gen split merge : 1.07 us (0.4%)
split / merge op : 0/0
apply split merge : 1.57 us (0.6%)
LB compute : 259.44 us (92.4%)
LB move op cnt : 0
LB apply : 3.78 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.51 us (64.7%)
Info: cfl dt = 0.0016006000460755073 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.7418e+05 | 262144 | 1 | 3.386e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.01744739499666 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.13838238533565, dt = 0.0016006000460755073
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.61 us (2.9%)
patch tree reduce : 1.65 us (0.6%)
gen split merge : 862.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.29 us (0.5%)
LB compute : 236.07 us (91.3%)
LB move op cnt : 0
LB apply : 4.15 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.55 us (67.8%)
Info: cfl dt = 0.001600582206816589 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.8341e+05 | 262144 | 1 | 3.346e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.22009647466257 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1399829853817256, dt = 0.001600582206816589
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.46 us (2.9%)
patch tree reduce : 1.81 us (0.7%)
gen split merge : 889.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.40 us (0.5%)
LB compute : 236.52 us (91.3%)
LB move op cnt : 0
LB apply : 4.28 us (1.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.47 us (63.9%)
Info: cfl dt = 0.0016005497482172075 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.5077e+05 | 262144 | 1 | 3.081e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.70051537476515 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1415835675885422, dt = 0.0016005497482172075
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.58 us (2.4%)
patch tree reduce : 1.68 us (0.6%)
gen split merge : 806.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 996.00 ns (0.4%)
LB compute : 249.87 us (92.5%)
LB move op cnt : 0
LB apply : 4.19 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.62 us (68.2%)
Info: cfl dt = 0.0016005163493953514 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.6779e+05 | 262144 | 1 | 3.414e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.876102910432888 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1431841173367594, dt = 0.0016005163493953514
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.03 us (2.3%)
patch tree reduce : 2.24 us (0.7%)
gen split merge : 1.15 us (0.4%)
split / merge op : 0/0
apply split merge : 1.34 us (0.4%)
LB compute : 283.55 us (92.6%)
LB move op cnt : 0
LB apply : 4.14 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.54 us (66.1%)
Info: cfl dt = 0.0016004826446857708 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.1571e+05 | 262144 | 1 | 3.214e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.929068595126807 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1447846336861547, dt = 0.0016004826446857708
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.23 us (2.6%)
patch tree reduce : 1.95 us (0.7%)
gen split merge : 1.03 us (0.4%)
split / merge op : 0/0
apply split merge : 1.68 us (0.6%)
LB compute : 259.55 us (91.7%)
LB move op cnt : 0
LB apply : 4.89 us (1.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.59 us (67.9%)
Info: cfl dt = 0.0016004488192530226 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.3775e+05 | 262144 | 1 | 3.129e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.413081392306914 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1463851163308405, dt = 0.0016004488192530226
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.27 us (2.8%)
patch tree reduce : 1.69 us (0.7%)
gen split merge : 936.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.45 us (0.6%)
LB compute : 236.47 us (91.3%)
LB move op cnt : 0
LB apply : 4.49 us (1.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.51 us (66.5%)
Info: cfl dt = 0.0016004150413319652 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.9349e+05 | 262144 | 1 | 3.304e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.440081430182783 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1479855651500934, dt = 0.0016004150413319652
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.61 us (2.5%)
patch tree reduce : 1.84 us (0.7%)
gen split merge : 989.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.57 us (0.6%)
LB compute : 242.72 us (91.7%)
LB move op cnt : 0
LB apply : 4.13 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.84 us (62.9%)
Info: cfl dt = 0.001600381569101762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2533e+05 | 262144 | 1 | 3.176e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.13934335256956 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1495859801914254, dt = 0.001600381569101762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.07 us (2.7%)
patch tree reduce : 1.80 us (0.7%)
gen split merge : 978.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.40 us (0.5%)
LB compute : 239.52 us (91.4%)
LB move op cnt : 0
LB apply : 4.30 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.84 us (65.1%)
Info: cfl dt = 0.0016003483134379806 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.1072e+05 | 262144 | 1 | 3.233e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.818026621381556 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1511863617605271, dt = 0.0016003483134379806
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.89 us (2.7%)
patch tree reduce : 2.12 us (0.7%)
gen split merge : 1.05 us (0.4%)
split / merge op : 0/0
apply split merge : 1.41 us (0.5%)
LB compute : 268.87 us (92.1%)
LB move op cnt : 0
LB apply : 3.97 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.61 us (69.0%)
Info: cfl dt = 0.0016003151475225102 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2235e+05 | 262144 | 1 | 3.188e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.073154975573207 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.152786710073965, dt = 0.0016003151475225102
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.36 us (2.8%)
patch tree reduce : 1.95 us (0.7%)
gen split merge : 866.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.37 us (0.5%)
LB compute : 241.13 us (91.4%)
LB move op cnt : 0
LB apply : 4.18 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.53 us (65.0%)
Info: cfl dt = 0.001600281989842904 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.7015e+05 | 262144 | 1 | 3.404e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.925504442012794 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1543870252214876, dt = 0.001600281989842904
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.95 us (2.5%)
patch tree reduce : 1.67 us (0.6%)
gen split merge : 979.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.53 us (0.6%)
LB compute : 251.58 us (91.9%)
LB move op cnt : 0
LB apply : 3.98 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.59 us (66.9%)
Info: cfl dt = 0.0016002488008476199 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3928e+05 | 262144 | 1 | 3.546e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.246860240294613 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1559873072113305, dt = 0.0016002488008476199
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.77 us (2.5%)
patch tree reduce : 1.71 us (0.6%)
gen split merge : 1.06 us (0.4%)
split / merge op : 0/0
apply split merge : 1.60 us (0.6%)
LB compute : 253.64 us (91.9%)
LB move op cnt : 0
LB apply : 4.40 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.51 us (64.6%)
Info: cfl dt = 0.001600215600303729 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.7324e+05 | 262144 | 1 | 3.390e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.992676622689615 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.157587556012178, dt = 0.001600215600303729
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.03 us (2.7%)
patch tree reduce : 1.92 us (0.7%)
gen split merge : 943.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.37 us (0.5%)
LB compute : 241.16 us (91.6%)
LB move op cnt : 0
LB apply : 3.92 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.59 us (65.2%)
Info: cfl dt = 0.00160018243425895 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2714e+05 | 262144 | 1 | 3.169e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.17697392858225 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1591877716124817, dt = 0.00160018243425895
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.17 us (2.7%)
patch tree reduce : 1.74 us (0.7%)
gen split merge : 1.02 us (0.4%)
split / merge op : 0/0
apply split merge : 1.41 us (0.5%)
LB compute : 239.37 us (91.5%)
LB move op cnt : 0
LB apply : 4.23 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.36 us (63.0%)
Info: cfl dt = 0.0016001493552820093 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.1309e+05 | 262144 | 1 | 3.224e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.867886335519902 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1607879540467405, dt = 0.0016001493552820093
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.40 us (2.5%)
patch tree reduce : 1.92 us (0.6%)
gen split merge : 1.13 us (0.4%)
split / merge op : 0/0
apply split merge : 1.49 us (0.5%)
LB compute : 275.78 us (92.4%)
LB move op cnt : 0
LB apply : 4.05 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.50 us (65.7%)
Info: cfl dt = 0.0016001164032433568 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.1486e+05 | 262144 | 1 | 3.217e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.90628646428421 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1623881034020225, dt = 0.0016001164032433568
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.42 us (2.8%)
patch tree reduce : 1.93 us (0.7%)
gen split merge : 1.02 us (0.4%)
split / merge op : 0/0
apply split merge : 1.74 us (0.7%)
LB compute : 239.45 us (91.3%)
LB move op cnt : 0
LB apply : 4.08 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.45 us (63.8%)
Info: cfl dt = 0.0016000836627396058 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.1875e+05 | 262144 | 1 | 3.202e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.991382341496287 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1639882198052658, dt = 0.0016000836627396058
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.98 us (2.7%)
patch tree reduce : 1.81 us (0.7%)
gen split merge : 1.06 us (0.4%)
split / merge op : 0/0
apply split merge : 1.56 us (0.6%)
LB compute : 240.60 us (91.5%)
LB move op cnt : 0
LB apply : 4.49 us (1.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.49 us (66.2%)
Info: cfl dt = 0.0016000510883107783 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.6672e+05 | 262144 | 1 | 3.419e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.847864069901682 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1655883034680055, dt = 0.0016000510883107783
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.04 us (2.7%)
patch tree reduce : 1.86 us (0.7%)
gen split merge : 1.02 us (0.4%)
split / merge op : 0/0
apply split merge : 1.54 us (0.6%)
LB compute : 237.18 us (91.4%)
LB move op cnt : 0
LB apply : 3.99 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.78 us (65.3%)
Info: cfl dt = 0.0016000186370974 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.5407e+05 | 262144 | 1 | 3.069e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.766713629037866 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1671883545563162, dt = 0.0016000186370974
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.14 us (2.5%)
patch tree reduce : 1.86 us (0.6%)
gen split merge : 915.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.53 us (0.5%)
LB compute : 263.40 us (92.0%)
LB move op cnt : 0
LB apply : 4.36 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.51 us (65.3%)
Info: cfl dt = 0.0015999862657854705 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.6772e+05 | 262144 | 1 | 3.415e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.868991690026277 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1687883731934137, dt = 0.0015999862657854705
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.20 us (2.4%)
patch tree reduce : 2.00 us (0.7%)
gen split merge : 904.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.54 us (0.5%)
LB compute : 276.59 us (92.6%)
LB move op cnt : 0
LB apply : 4.17 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.83 us (64.1%)
Info: cfl dt = 0.0015999539474115432 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.1766e+05 | 262144 | 1 | 3.653e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.768832917352492 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.170388359459199, dt = 0.0015999539474115432
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.56 us (2.2%)
patch tree reduce : 1.99 us (0.6%)
gen split merge : 873.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.31 us (0.4%)
LB compute : 326.19 us (93.3%)
LB move op cnt : 0
LB apply : 4.76 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.55 us (68.4%)
Info: cfl dt = 0.0015999216833931728 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.4447e+05 | 262144 | 1 | 3.104e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.554706987992226 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1719883134066107, dt = 0.0015999216833931728
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.86 us (2.5%)
patch tree reduce : 1.81 us (0.7%)
gen split merge : 942.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.33 us (0.5%)
LB compute : 252.93 us (92.2%)
LB move op cnt : 0
LB apply : 4.08 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.53 us (66.9%)
Info: cfl dt = 0.0015998895072686999 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.5583e+05 | 262144 | 1 | 3.468e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.606766051691928 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1735882350900038, dt = 0.0015998895072686999
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 16.00 us (5.1%)
patch tree reduce : 1.77 us (0.6%)
gen split merge : 1.14 us (0.4%)
split / merge op : 0/0
apply split merge : 1.58 us (0.5%)
LB compute : 281.91 us (90.0%)
LB move op cnt : 0
LB apply : 4.44 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.51 us (66.7%)
Info: cfl dt = 0.0015998574807514563 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2025e+05 | 262144 | 1 | 3.196e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.021910944769996 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1751881245972724, dt = 0.0015998574807514563
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.93 us (2.4%)
patch tree reduce : 1.72 us (0.6%)
gen split merge : 980.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.63 us (0.6%)
LB compute : 261.04 us (92.0%)
LB move op cnt : 0
LB apply : 4.52 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.55 us (68.3%)
Info: cfl dt = 0.0015998256864949204 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.1845e+05 | 262144 | 1 | 3.203e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.9819801220888 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1767879820780238, dt = 0.0015998256864949204
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.00 us (2.1%)
patch tree reduce : 1.74 us (0.6%)
gen split merge : 786.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.22 us (0.4%)
LB compute : 265.79 us (93.0%)
LB move op cnt : 0
LB apply : 4.31 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.67 us (67.6%)
Info: cfl dt = 0.001599794216233286 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 6.6861e+05 | 262144 | 1 | 3.921e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.689583759755067 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1783878077645187, dt = 0.001599794216233286
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.12 us (2.4%)
patch tree reduce : 1.90 us (0.6%)
gen split merge : 933.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.58 us (0.5%)
LB compute : 265.91 us (89.6%)
LB move op cnt : 0
LB apply : 3.93 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.80 us (65.3%)
Info: cfl dt = 0.0015997631085797781 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.0264e+05 | 262144 | 1 | 3.266e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.633834130178457 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.179987601980752, dt = 0.0015997631085797781
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.07 us (2.7%)
patch tree reduce : 1.85 us (0.7%)
gen split merge : 961.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.47 us (0.6%)
LB compute : 239.44 us (91.5%)
LB move op cnt : 0
LB apply : 3.95 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.45 us (64.8%)
Info: cfl dt = 0.0015997324037384734 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.6038e+05 | 262144 | 1 | 3.448e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.705197062211354 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1815873650893318, dt = 0.0015997324037384734
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.92 us (2.2%)
patch tree reduce : 2.06 us (0.7%)
gen split merge : 1.02 us (0.3%)
split / merge op : 0/0
apply split merge : 1.54 us (0.5%)
LB compute : 290.67 us (92.8%)
LB move op cnt : 0
LB apply : 3.96 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.83 us (64.2%)
Info: cfl dt = 0.0015997021740094025 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.0698e+05 | 262144 | 1 | 3.248e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.72842779435093 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1831870974930703, dt = 0.0015997021740094025
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.19 us (2.1%)
patch tree reduce : 1.77 us (0.5%)
gen split merge : 1.04 us (0.3%)
split / merge op : 0/0
apply split merge : 1.54 us (0.5%)
LB compute : 312.01 us (93.2%)
LB move op cnt : 0
LB apply : 4.23 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.77 us (68.7%)
Info: cfl dt = 0.0015996724860062666 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.5338e+05 | 262144 | 1 | 3.072e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.747469805123316 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1847867996670798, dt = 0.0015996724860062666
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.06 us (2.7%)
patch tree reduce : 2.24 us (0.9%)
gen split merge : 907.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.40 us (0.5%)
LB compute : 233.92 us (91.1%)
LB move op cnt : 0
LB apply : 4.66 us (1.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.39 us (66.9%)
Info: cfl dt = 0.0015996433726192607 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.4987e+05 | 262144 | 1 | 3.085e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.66999801666053 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1863864721530861, dt = 0.0015996433726192607
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.85 us (2.6%)
patch tree reduce : 1.81 us (0.7%)
gen split merge : 1.02 us (0.4%)
split / merge op : 0/0
apply split merge : 1.32 us (0.5%)
LB compute : 242.18 us (91.7%)
LB move op cnt : 0
LB apply : 4.45 us (1.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.52 us (67.6%)
Info: cfl dt = 0.0015996148541566107 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.5135e+05 | 262144 | 1 | 3.079e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.702143110882187 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1879861155257054, dt = 0.0015996148541566107
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.98 us (2.4%)
patch tree reduce : 1.97 us (0.7%)
gen split merge : 997.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.24 us (0.4%)
LB compute : 274.24 us (92.5%)
LB move op cnt : 0
LB apply : 4.07 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.38 us (63.8%)
Info: cfl dt = 0.0015995869194457757 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.1133e+05 | 262144 | 1 | 3.231e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.82285051269312 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.189585730379862, dt = 0.0010392696201380058
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.80 us (2.3%)
patch tree reduce : 1.91 us (0.6%)
gen split merge : 872.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.48 us (0.5%)
LB compute : 274.16 us (92.5%)
LB move op cnt : 0
LB apply : 4.19 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.43 us (63.0%)
Info: cfl dt = 0.001599572053981774 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.7854e+05 | 262144 | 1 | 3.367e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11.111498647647833 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 261.003733301 (s) [Godunov][rank=0]
Info: dump to _to_trash/ramses_kh/periodic_0010.vtk [VTK Dump][rank=0]
- took 35.78 ms, bandwidth = 1.14 GB/s
amr::Godunov: t = 1.190625, dt = 0.001599572053981774
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.91 us (2.3%)
patch tree reduce : 1.83 us (0.5%)
gen split merge : 997.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.44 us (0.4%)
LB compute : 326.71 us (93.3%)
LB move op cnt : 0
LB apply : 4.37 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.97 us (65.3%)
Info: cfl dt = 0.001599542976409378 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 6.7201e+05 | 262144 | 1 | 3.901e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.761786269931001 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.192224572053982, dt = 0.001599542976409378
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.93 us (2.0%)
patch tree reduce : 1.99 us (0.6%)
gen split merge : 984.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.44 us (0.4%)
LB compute : 321.38 us (93.5%)
LB move op cnt : 0
LB apply : 4.05 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.44 us (65.2%)
Info: cfl dt = 0.0015995144130284472 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2229e+05 | 262144 | 1 | 3.188e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.06272573334144 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1938241150303912, dt = 0.0015995144130284472
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.55 us (2.3%)
patch tree reduce : 11.53 us (4.0%)
gen split merge : 1.04 us (0.4%)
split / merge op : 0/0
apply split merge : 1.46 us (0.5%)
LB compute : 253.34 us (88.8%)
LB move op cnt : 0
LB apply : 4.44 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.62 us (67.4%)
Info: cfl dt = 0.0015994870033209168 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.3455e+05 | 262144 | 1 | 3.141e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.331649769758467 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1954236294434197, dt = 0.0015994870033209168
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.70 us (2.5%)
patch tree reduce : 1.65 us (0.6%)
gen split merge : 1.00 us (0.4%)
split / merge op : 0/0
apply split merge : 1.50 us (0.6%)
LB compute : 248.89 us (92.0%)
LB move op cnt : 0
LB apply : 4.01 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.41 us (64.5%)
Info: cfl dt = 0.001599460905654336 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.1365e+05 | 262144 | 1 | 3.222e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.87239734615587 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1970231164467406, dt = 0.001599460905654336
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.78 us (2.4%)
patch tree reduce : 1.97 us (0.7%)
gen split merge : 950.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.43 us (0.5%)
LB compute : 258.68 us (92.2%)
LB move op cnt : 0
LB apply : 4.00 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.50 us (67.4%)
Info: cfl dt = 0.0015994360475107025 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.1225e+05 | 262144 | 1 | 3.227e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.841339217856287 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.198622577352395, dt = 0.0015994360475107025
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.04 us (2.3%)
patch tree reduce : 1.81 us (0.6%)
gen split merge : 1.11 us (0.4%)
split / merge op : 0/0
apply split merge : 1.35 us (0.4%)
LB compute : 285.36 us (92.9%)
LB move op cnt : 0
LB apply : 3.91 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.33 us (63.7%)
Info: cfl dt = 0.0015994122114172272 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.1710e+05 | 262144 | 1 | 3.208e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.947454300262947 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2002220133999058, dt = 0.0015994122114172272
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.16 us (2.6%)
patch tree reduce : 1.82 us (0.7%)
gen split merge : 995.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.61 us (0.6%)
LB compute : 249.33 us (91.7%)
LB move op cnt : 0
LB apply : 4.43 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.84 us (71.8%)
Info: cfl dt = 0.0015993891211316428 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2238e+05 | 262144 | 1 | 3.188e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.06317048629908 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2018214256113229, dt = 0.0015993891211316428
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.70 us (2.4%)
patch tree reduce : 1.88 us (0.7%)
gen split merge : 913.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.51 us (0.5%)
LB compute : 259.61 us (92.2%)
LB move op cnt : 0
LB apply : 4.22 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.58 us (65.9%)
Info: cfl dt = 0.001599366508357258 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.1617e+05 | 262144 | 1 | 3.212e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.926675945938193 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2034208147324545, dt = 0.001599366508357258
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.69 us (2.5%)
patch tree reduce : 1.89 us (0.7%)
gen split merge : 1.00 us (0.4%)
split / merge op : 0/0
apply split merge : 1.61 us (0.6%)
LB compute : 243.48 us (91.9%)
LB move op cnt : 0
LB apply : 3.90 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.43 us (65.4%)
Info: cfl dt = 0.0015993441529088999 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2739e+05 | 262144 | 1 | 3.168e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.17267428306144 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.205020181240812, dt = 0.0015993441529088999
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.32 us (2.4%)
patch tree reduce : 1.84 us (0.6%)
gen split merge : 990.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.37 us (0.5%)
LB compute : 278.46 us (92.5%)
LB move op cnt : 0
LB apply : 4.36 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.55 us (67.6%)
Info: cfl dt = 0.0015993218986642254 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.1849e+05 | 262144 | 1 | 3.203e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.977106971302756 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2066195253937209, dt = 0.0015993218986642254
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.19 us (0.8%)
patch tree reduce : 1.99 us (0.2%)
gen split merge : 1.04 us (0.1%)
split / merge op : 0/0
apply split merge : 1.44 us (0.2%)
LB compute : 911.20 us (97.3%)
LB move op cnt : 0
LB apply : 6.54 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.64 us (88.1%)
Info: cfl dt = 0.0015992996515116927 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.8426e+05 | 262144 | 1 | 3.343e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.22498080931234 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2082188472923852, dt = 0.0015992996515116927
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.53 us (2.2%)
patch tree reduce : 1.99 us (0.7%)
gen split merge : 860.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.44 us (0.5%)
LB compute : 271.51 us (92.6%)
LB move op cnt : 0
LB apply : 3.78 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.78 us (61.6%)
Info: cfl dt = 0.0015992773674572266 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.1511e+05 | 262144 | 1 | 3.216e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.902218710585917 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2098181469438969, dt = 0.0015992773674572266
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.20 us (2.4%)
patch tree reduce : 1.72 us (0.6%)
gen split merge : 1.03 us (0.3%)
split / merge op : 0/0
apply split merge : 1.31 us (0.4%)
LB compute : 280.40 us (92.7%)
LB move op cnt : 0
LB apply : 3.91 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.44 us (65.1%)
Info: cfl dt = 0.0015992550377933368 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2805e+05 | 262144 | 1 | 3.166e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.186273463394425 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.211417424311354, dt = 0.0015992550377933368
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.52 us (2.8%)
patch tree reduce : 1.94 us (0.7%)
gen split merge : 903.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.40 us (0.5%)
LB compute : 250.15 us (91.7%)
LB move op cnt : 0
LB apply : 4.00 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.46 us (67.4%)
Info: cfl dt = 0.0015992326755404755 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.0827e+05 | 262144 | 1 | 3.243e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.751489451912185 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2130166793491473, dt = 0.0015992326755404755
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.85 us (2.5%)
patch tree reduce : 1.94 us (0.6%)
gen split merge : 993.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.77 us (0.6%)
LB compute : 284.56 us (92.4%)
LB move op cnt : 0
LB apply : 4.27 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.49 us (65.3%)
Info: cfl dt = 0.0015992103045261129 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.1201e+05 | 262144 | 1 | 3.228e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.833360128048312 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2146159120246878, dt = 0.0015992103045261129
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.31 us (2.2%)
patch tree reduce : 1.75 us (0.5%)
gen split merge : 906.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.58 us (0.5%)
LB compute : 303.38 us (93.1%)
LB move op cnt : 0
LB apply : 4.29 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.53 us (68.3%)
Info: cfl dt = 0.0015991879518192573 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.1180e+05 | 262144 | 1 | 3.683e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.632365110358176 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.216215122329214, dt = 0.0015991879518192573
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.01 us (2.4%)
patch tree reduce : 1.72 us (0.6%)
gen split merge : 1.02 us (0.3%)
split / merge op : 0/0
apply split merge : 1.50 us (0.5%)
LB compute : 268.46 us (92.2%)
LB move op cnt : 0
LB apply : 4.52 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.05 us (67.0%)
Info: cfl dt = 0.0015991656512828693 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.5859e+05 | 262144 | 1 | 3.053e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.85589175004903 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2178143102810333, dt = 0.0015991656512828693
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.14 us (2.8%)
patch tree reduce : 1.81 us (0.7%)
gen split merge : 882.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.43 us (0.6%)
LB compute : 236.89 us (91.5%)
LB move op cnt : 0
LB apply : 4.29 us (1.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.43 us (63.9%)
Info: cfl dt = 0.0015991434429386557 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.3638e+05 | 262144 | 1 | 3.134e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.367804712209622 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.219413475932316, dt = 0.0015991434429386557
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.52 us (2.8%)
patch tree reduce : 1.69 us (0.6%)
gen split merge : 1.04 us (0.4%)
split / merge op : 0/0
apply split merge : 1.45 us (0.5%)
LB compute : 250.48 us (91.7%)
LB move op cnt : 0
LB apply : 4.27 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.45 us (68.3%)
Info: cfl dt = 0.001599121337115784 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.5142e+05 | 262144 | 1 | 3.079e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.697873017620438 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2210126193752548, dt = 0.001599121337115784
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.33 us (2.8%)
patch tree reduce : 2.09 us (0.8%)
gen split merge : 964.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.43 us (0.5%)
LB compute : 239.15 us (91.2%)
LB move op cnt : 0
LB apply : 4.53 us (1.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.63 us (66.9%)
Info: cfl dt = 0.0015990993617038271 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.0518e+05 | 262144 | 1 | 3.256e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.682333961554136 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2226117407123707, dt = 0.0015990993617038271
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.93 us (2.5%)
patch tree reduce : 1.88 us (0.7%)
gen split merge : 888.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.67 us (0.6%)
LB compute : 258.59 us (91.9%)
LB move op cnt : 0
LB apply : 4.70 us (1.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.39 us (64.0%)
Info: cfl dt = 0.0015990775158565623 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.3113e+05 | 262144 | 1 | 3.154e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.251958297309887 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2242108400740745, dt = 0.0015990775158565623
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.66 us (2.5%)
patch tree reduce : 1.66 us (0.6%)
gen split merge : 972.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.34 us (0.5%)
LB compute : 248.13 us (92.1%)
LB move op cnt : 0
LB apply : 4.18 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.76 us (63.9%)
Info: cfl dt = 0.0015990557522736737 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.1708e+05 | 262144 | 1 | 3.208e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.943041804717268 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.225809917589931, dt = 0.0015990557522736737
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.91 us (2.1%)
patch tree reduce : 2.06 us (0.6%)
gen split merge : 1.00 us (0.3%)
split / merge op : 0/0
apply split merge : 1.42 us (0.4%)
LB compute : 299.66 us (93.2%)
LB move op cnt : 0
LB apply : 3.84 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.10 us (67.4%)
Info: cfl dt = 0.0015990340342629749 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.4425e+05 | 262144 | 1 | 3.105e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.53935816491392 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2274089733422047, dt = 0.0015990340342629749
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.72 us (2.6%)
patch tree reduce : 1.89 us (0.7%)
gen split merge : 1.05 us (0.4%)
split / merge op : 0/0
apply split merge : 1.35 us (0.5%)
LB compute : 233.71 us (91.3%)
LB move op cnt : 0
LB apply : 4.29 us (1.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.43 us (65.7%)
Info: cfl dt = 0.0015990123389194833 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2980e+05 | 262144 | 1 | 3.159e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.221867243242645 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2290080073764675, dt = 0.0015990123389194833
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.86 us (2.3%)
patch tree reduce : 1.70 us (0.6%)
gen split merge : 907.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.57 us (0.5%)
LB compute : 275.50 us (92.5%)
LB move op cnt : 0
LB apply : 4.08 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.67 us (63.3%)
Info: cfl dt = 0.0015989906679599595 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.1142e+05 | 262144 | 1 | 3.231e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.81804400582178 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.230607019715387, dt = 0.0015989906679599595
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.20 us (2.7%)
patch tree reduce : 1.89 us (0.7%)
gen split merge : 1.01 us (0.4%)
split / merge op : 0/0
apply split merge : 1.41 us (0.5%)
LB compute : 240.26 us (91.4%)
LB move op cnt : 0
LB apply : 4.01 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.89 us (65.1%)
Info: cfl dt = 0.0015989690288897274 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2298e+05 | 262144 | 1 | 3.185e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.0716458816019 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.232206010383347, dt = 0.0015989690288897274
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.33 us (2.6%)
patch tree reduce : 1.62 us (0.6%)
gen split merge : 797.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.45 us (0.5%)
LB compute : 260.14 us (92.3%)
LB move op cnt : 0
LB apply : 4.10 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.70 us (70.4%)
Info: cfl dt = 0.0015989474208449681 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.1432e+05 | 262144 | 1 | 3.219e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.881301963929026 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2338049794122368, dt = 0.0015989474208449681
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.00 us (2.6%)
patch tree reduce : 1.85 us (0.7%)
gen split merge : 1.06 us (0.4%)
split / merge op : 0/0
apply split merge : 1.39 us (0.5%)
LB compute : 242.75 us (91.4%)
LB move op cnt : 0
LB apply : 4.50 us (1.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.38 us (66.6%)
Info: cfl dt = 0.0015989258287340247 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2065e+05 | 262144 | 1 | 3.194e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.019985439100886 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2354039268330816, dt = 0.0015989258287340247
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.22 us (2.5%)
patch tree reduce : 1.75 us (0.6%)
gen split merge : 1.01 us (0.4%)
split / merge op : 0/0
apply split merge : 1.56 us (0.6%)
LB compute : 261.11 us (92.0%)
LB move op cnt : 0
LB apply : 4.34 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.54 us (67.7%)
Info: cfl dt = 0.0015989042250975506 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.0681e+05 | 262144 | 1 | 3.249e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.71580441595153 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2370028526618158, dt = 0.0015989042250975506
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.11 us (2.6%)
patch tree reduce : 1.94 us (0.7%)
gen split merge : 1.05 us (0.4%)
split / merge op : 0/0
apply split merge : 1.69 us (0.6%)
LB compute : 251.88 us (91.6%)
LB move op cnt : 0
LB apply : 4.58 us (1.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.44 us (64.9%)
Info: cfl dt = 0.0015988825752216026 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.4941e+05 | 262144 | 1 | 3.086e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.65107005340879 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2386017568869132, dt = 0.0015988825752216026
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.88 us (2.2%)
patch tree reduce : 1.86 us (0.6%)
gen split merge : 848.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.48 us (0.5%)
LB compute : 291.59 us (93.0%)
LB move op cnt : 0
LB apply : 4.25 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.45 us (65.2%)
Info: cfl dt = 0.0015988608431945373 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.1270e+05 | 262144 | 1 | 3.226e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.84462368971247 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2402006394621348, dt = 0.0015988608431945373
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.61 us (2.2%)
patch tree reduce : 1.92 us (0.6%)
gen split merge : 1.10 us (0.3%)
split / merge op : 0/0
apply split merge : 1.47 us (0.4%)
LB compute : 307.01 us (90.5%)
LB move op cnt : 0
LB apply : 3.97 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.84 us (67.5%)
Info: cfl dt = 0.0015988389833441305 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.3069e+05 | 262144 | 1 | 3.156e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.239483625141357 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2417995003053293, dt = 0.0015988389833441305
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.91 us (2.1%)
patch tree reduce : 1.93 us (0.6%)
gen split merge : 962.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.47 us (0.5%)
LB compute : 299.78 us (93.2%)
LB move op cnt : 0
LB apply : 3.89 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.34 us (64.6%)
Info: cfl dt = 0.0015988169371420414 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2083e+05 | 262144 | 1 | 3.194e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.022781707669754 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2433983392886734, dt = 0.0015988169371420414
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.54 us (2.8%)
patch tree reduce : 1.67 us (0.6%)
gen split merge : 795.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.31 us (0.5%)
LB compute : 248.72 us (91.7%)
LB move op cnt : 0
LB apply : 4.35 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.37 us (63.2%)
Info: cfl dt = 0.0015987946898867811 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2763e+05 | 262144 | 1 | 3.167e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.171692627214412 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2449971562258155, dt = 0.0015987946898867811
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.22 us (2.7%)
patch tree reduce : 1.71 us (0.6%)
gen split merge : 1.04 us (0.4%)
split / merge op : 0/0
apply split merge : 1.41 us (0.5%)
LB compute : 243.64 us (91.8%)
LB move op cnt : 0
LB apply : 3.92 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.48 us (66.4%)
Info: cfl dt = 0.001598772230663934 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.1409e+05 | 262144 | 1 | 3.671e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.678584046717555 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2465959509157023, dt = 0.001598772230663934
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.72 us (2.6%)
patch tree reduce : 1.85 us (0.7%)
gen split merge : 949.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.34 us (0.5%)
LB compute : 232.27 us (91.4%)
LB move op cnt : 0
LB apply : 4.22 us (1.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.54 us (67.8%)
Info: cfl dt = 0.001598749545282541 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.1552e+05 | 262144 | 1 | 3.214e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.905326859102818 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2481947231463661, dt = 0.001598749545282541
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.24 us (2.7%)
patch tree reduce : 1.84 us (0.7%)
gen split merge : 879.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.45 us (0.5%)
LB compute : 242.75 us (91.6%)
LB move op cnt : 0
LB apply : 4.28 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.47 us (67.4%)
Info: cfl dt = 0.0015987266156288259 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3252e+05 | 262144 | 1 | 3.579e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.082722728349548 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2497934726916486, dt = 0.0015987266156288259
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.96 us (2.7%)
patch tree reduce : 2.00 us (0.8%)
gen split merge : 955.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.42 us (0.6%)
LB compute : 231.54 us (91.1%)
LB move op cnt : 0
LB apply : 4.44 us (1.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.48 us (66.6%)
Info: cfl dt = 0.0015987034725988265 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2140e+05 | 262144 | 1 | 3.191e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.033917861190655 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2513921993072774, dt = 0.0015987034725988265
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.81 us (2.4%)
patch tree reduce : 1.95 us (0.7%)
gen split merge : 1.14 us (0.4%)
split / merge op : 0/0
apply split merge : 1.52 us (0.5%)
LB compute : 257.50 us (92.1%)
LB move op cnt : 0
LB apply : 3.98 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.60 us (69.5%)
Info: cfl dt = 0.0015986802765475608 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2851e+05 | 262144 | 1 | 3.164e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.18974734296891 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2529909027798762, dt = 0.0015986802765475608
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.79 us (1.9%)
patch tree reduce : 2.00 us (0.6%)
gen split merge : 1.07 us (0.3%)
split / merge op : 0/0
apply split merge : 1.37 us (0.4%)
LB compute : 334.93 us (93.7%)
LB move op cnt : 0
LB apply : 4.08 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.74 us (70.7%)
Info: cfl dt = 0.0015986571101614666 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.5561e+05 | 262144 | 1 | 3.064e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.784573917438454 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2545895830564238, dt = 0.0015986571101614666
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.08 us (2.5%)
patch tree reduce : 2.01 us (0.7%)
gen split merge : 995.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.34 us (0.5%)
LB compute : 262.00 us (92.2%)
LB move op cnt : 0
LB apply : 4.53 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.44 us (65.6%)
Info: cfl dt = 0.0015986339484398684 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2129e+05 | 262144 | 1 | 3.192e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.03085076135804 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2561882401665851, dt = 0.0015986339484398684
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.33 us (2.4%)
patch tree reduce : 1.81 us (0.6%)
gen split merge : 1.05 us (0.3%)
split / merge op : 0/0
apply split merge : 1.55 us (0.5%)
LB compute : 280.57 us (92.8%)
LB move op cnt : 0
LB apply : 3.81 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.77 us (64.2%)
Info: cfl dt = 0.0015986107341049124 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.0801e+05 | 262144 | 1 | 3.703e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.543655359403289 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.257786874115025, dt = 0.0015986107341049124
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.28 us (2.5%)
patch tree reduce : 1.67 us (0.6%)
gen split merge : 914.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.36 us (0.5%)
LB compute : 274.87 us (92.6%)
LB move op cnt : 0
LB apply : 4.33 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.45 us (64.4%)
Info: cfl dt = 0.0015985874210525212 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.7656e+05 | 262144 | 1 | 3.376e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.048191788895963 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.25938548484913, dt = 0.0015985874210525212
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.93 us (2.3%)
patch tree reduce : 1.82 us (0.6%)
gen split merge : 927.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.67 us (0.6%)
LB compute : 280.02 us (92.6%)
LB move op cnt : 0
LB apply : 4.26 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.44 us (64.8%)
Info: cfl dt = 0.0015985639886740915 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2864e+05 | 262144 | 1 | 3.164e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.191246641275786 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2609840722701824, dt = 0.0015985639886740915
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.88 us (2.6%)
patch tree reduce : 2.05 us (0.8%)
gen split merge : 948.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.40 us (0.5%)
LB compute : 242.66 us (91.8%)
LB move op cnt : 0
LB apply : 3.78 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.76 us (64.1%)
Info: cfl dt = 0.0015985403926732495 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2787e+05 | 262144 | 1 | 3.166e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.174187109787766 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2625826362588566, dt = 0.0015985403926732495
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.09 us (2.2%)
patch tree reduce : 2.15 us (0.7%)
gen split merge : 1.01 us (0.3%)
split / merge op : 0/0
apply split merge : 1.57 us (0.5%)
LB compute : 306.04 us (93.0%)
LB move op cnt : 0
LB apply : 4.27 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.70 us (66.7%)
Info: cfl dt = 0.0015985165963730862 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.7856e+05 | 262144 | 1 | 3.367e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.091464776374046 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2641811766515298, dt = 0.0015985165963730862
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.67 us (2.4%)
patch tree reduce : 1.69 us (0.6%)
gen split merge : 1.12 us (0.4%)
split / merge op : 0/0
apply split merge : 1.66 us (0.6%)
LB compute : 260.47 us (92.1%)
LB move op cnt : 0
LB apply : 4.44 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.43 us (65.8%)
Info: cfl dt = 0.0015984925559749592 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.3715e+05 | 262144 | 1 | 3.131e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.377422952819053 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2657796932479028, dt = 0.0015984925559749592
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.04 us (2.5%)
patch tree reduce : 1.72 us (0.6%)
gen split merge : 987.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.39 us (0.5%)
LB compute : 255.93 us (91.8%)
LB move op cnt : 0
LB apply : 4.52 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.45 us (62.7%)
Info: cfl dt = 0.0015984681230449133 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.1985e+05 | 262144 | 1 | 3.197e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.997280872068778 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2673781858038777, dt = 0.0015984681230449133
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.31 us (2.3%)
patch tree reduce : 1.76 us (0.6%)
gen split merge : 1.06 us (0.4%)
split / merge op : 0/0
apply split merge : 1.57 us (0.6%)
LB compute : 256.32 us (92.1%)
LB move op cnt : 0
LB apply : 4.17 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.50 us (69.2%)
Info: cfl dt = 0.0015984433355301835 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2508e+05 | 262144 | 1 | 3.177e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.111745386881257 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2689766539269227, dt = 0.0015984433355301835
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.50 us (1.9%)
patch tree reduce : 1.77 us (0.5%)
gen split merge : 999.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.48 us (0.4%)
LB compute : 315.96 us (93.6%)
LB move op cnt : 0
LB apply : 4.09 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.75 us (69.5%)
Info: cfl dt = 0.0015984182648232856 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.8622e+05 | 262144 | 1 | 3.334e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.258621616808256 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.270575097262453, dt = 0.0015984182648232856
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.90 us (2.3%)
patch tree reduce : 1.86 us (0.6%)
gen split merge : 998.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.39 us (0.5%)
LB compute : 275.57 us (92.7%)
LB move op cnt : 0
LB apply : 3.93 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.85 us (62.2%)
Info: cfl dt = 0.0015983929906566313 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.1306e+05 | 262144 | 1 | 3.224e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.84748452316629 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2721735155272762, dt = 0.0015983929906566313
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.90 us (2.3%)
patch tree reduce : 1.66 us (0.6%)
gen split merge : 951.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.56 us (0.5%)
LB compute : 279.08 us (92.7%)
LB move op cnt : 0
LB apply : 4.13 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.52 us (66.7%)
Info: cfl dt = 0.0015983675889697112 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.2764e+05 | 262144 | 1 | 3.603e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.972018995234214 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2737719085179329, dt = 0.0015983675889697112
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.62 us (2.2%)
patch tree reduce : 1.83 us (0.6%)
gen split merge : 994.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.45 us (0.5%)
LB compute : 278.59 us (92.6%)
LB move op cnt : 0
LB apply : 4.44 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.44 us (66.2%)
Info: cfl dt = 0.0015983421262750755 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.2914e+05 | 262144 | 1 | 3.595e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.004702823809527 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2753702761069026, dt = 0.0015983421262750755
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.98 us (2.3%)
patch tree reduce : 1.95 us (0.6%)
gen split merge : 876.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.29 us (0.4%)
LB compute : 284.62 us (92.8%)
LB move op cnt : 0
LB apply : 4.10 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.14 us (69.1%)
Info: cfl dt = 0.0015983166576157741 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.4186e+05 | 262144 | 1 | 3.534e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.28373319806949 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2769686182331776, dt = 0.0015983166576157741
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.33 us (2.5%)
patch tree reduce : 1.82 us (0.6%)
gen split merge : 887.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.40 us (0.5%)
LB compute : 266.64 us (92.4%)
LB move op cnt : 0
LB apply : 3.89 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.49 us (67.1%)
Info: cfl dt = 0.0015982912297388026 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.1931e+05 | 262144 | 1 | 3.200e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.983424970632974 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2785669348907933, dt = 0.0015982912297388026
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.42 us (2.8%)
patch tree reduce : 1.80 us (0.7%)
gen split merge : 988.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.58 us (0.6%)
LB compute : 240.78 us (91.5%)
LB move op cnt : 0
LB apply : 3.90 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.38 us (63.9%)
Info: cfl dt = 0.0015982658771730193 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2868e+05 | 262144 | 1 | 3.163e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.188833915350852 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.280165226120532, dt = 0.0015982658771730193
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.35 us (2.8%)
patch tree reduce : 2.08 us (0.8%)
gen split merge : 965.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.49 us (0.6%)
LB compute : 241.89 us (91.4%)
LB move op cnt : 0
LB apply : 4.04 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.40 us (64.8%)
Info: cfl dt = 0.0015982406234760962 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2439e+05 | 262144 | 1 | 3.180e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.094369389023992 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.281763491997705, dt = 0.0015982406234760962
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.46 us (2.8%)
patch tree reduce : 2.03 us (0.8%)
gen split merge : 857.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.45 us (0.6%)
LB compute : 240.33 us (91.3%)
LB move op cnt : 0
LB apply : 4.38 us (1.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.50 us (67.8%)
Info: cfl dt = 0.0015982155788698757 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.3268e+05 | 262144 | 1 | 3.148e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.276078796417764 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.283361732621181, dt = 0.0015982155788698757
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.99 us (2.6%)
patch tree reduce : 1.90 us (0.7%)
gen split merge : 1.11 us (0.4%)
split / merge op : 0/0
apply split merge : 1.36 us (0.5%)
LB compute : 244.03 us (91.6%)
LB move op cnt : 0
LB apply : 4.13 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.44 us (65.9%)
Info: cfl dt = 0.0015981907780822362 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.1897e+05 | 262144 | 1 | 3.646e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.78011357042215 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2849599482000509, dt = 0.0015981907780822362
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.65 us (2.7%)
patch tree reduce : 1.87 us (0.7%)
gen split merge : 942.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.87 us (0.7%)
LB compute : 260.11 us (91.9%)
LB move op cnt : 0
LB apply : 4.10 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.47 us (64.7%)
Info: cfl dt = 0.001598166224029542 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.8867e+05 | 262144 | 1 | 3.324e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.309585751964413 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.286558138978133, dt = 0.001598166224029542
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.65 us (2.6%)
patch tree reduce : 1.88 us (0.6%)
gen split merge : 950.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.63 us (0.6%)
LB compute : 269.47 us (91.8%)
LB move op cnt : 0
LB apply : 4.66 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.49 us (66.5%)
Info: cfl dt = 0.0015981419117837951 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.8742e+05 | 262144 | 1 | 3.329e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.281813696981526 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2881563052021627, dt = 0.0015981419117837951
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.64 us (2.6%)
patch tree reduce : 1.79 us (0.7%)
gen split merge : 1.05 us (0.4%)
split / merge op : 0/0
apply split merge : 1.60 us (0.6%)
LB compute : 231.38 us (91.3%)
LB move op cnt : 0
LB apply : 3.99 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.49 us (67.2%)
Info: cfl dt = 0.0015981160195968653 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.5729e+05 | 262144 | 1 | 3.058e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.81506415443569 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2897544471139466, dt = 0.0015981160195968653
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.44 us (2.5%)
patch tree reduce : 1.74 us (0.7%)
gen split merge : 1.07 us (0.4%)
split / merge op : 0/0
apply split merge : 1.62 us (0.6%)
LB compute : 240.84 us (91.8%)
LB move op cnt : 0
LB apply : 3.88 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.52 us (67.4%)
Info: cfl dt = 0.0015980859256264073 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.9517e+05 | 262144 | 1 | 3.297e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.45145857232873 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2913525631335434, dt = 0.0015980859256264073
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.63 us (3.0%)
patch tree reduce : 1.82 us (0.7%)
gen split merge : 938.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.51 us (0.6%)
LB compute : 234.64 us (91.0%)
LB move op cnt : 0
LB apply : 4.18 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.34 us (64.9%)
Info: cfl dt = 0.001598055894353124 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3609e+05 | 262144 | 1 | 3.561e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.154612025737705 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2929506490591698, dt = 0.001598055894353124
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.35 us (2.3%)
patch tree reduce : 1.69 us (0.6%)
gen split merge : 902.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.48 us (0.5%)
LB compute : 255.60 us (92.3%)
LB move op cnt : 0
LB apply : 4.37 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.89 us (65.9%)
Info: cfl dt = 0.0015980260018797693 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2615e+05 | 262144 | 1 | 3.173e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.130580648728447 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.294548704953523, dt = 0.0015980260018797693
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.40 us (2.9%)
patch tree reduce : 1.92 us (0.7%)
gen split merge : 1.06 us (0.4%)
split / merge op : 0/0
apply split merge : 1.67 us (0.6%)
LB compute : 235.90 us (91.2%)
LB move op cnt : 0
LB apply : 4.29 us (1.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.52 us (67.6%)
Info: cfl dt = 0.001597996313089555 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.1073e+05 | 262144 | 1 | 3.688e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.59737433062234 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2961467309554027, dt = 0.001597996313089555
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.88 us (2.7%)
patch tree reduce : 1.96 us (0.8%)
gen split merge : 955.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.41 us (0.6%)
LB compute : 233.37 us (91.4%)
LB move op cnt : 0
LB apply : 4.20 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.52 us (67.3%)
Info: cfl dt = 0.001597966867476824 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2653e+05 | 262144 | 1 | 3.172e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.13826838533356 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2977447272684923, dt = 0.001597966867476824
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.07 us (2.8%)
patch tree reduce : 1.75 us (0.7%)
gen split merge : 986.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.59 us (0.6%)
LB compute : 234.45 us (91.6%)
LB move op cnt : 0
LB apply : 3.89 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.92 us (67.0%)
Info: cfl dt = 0.001597937679314035 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.4984e+05 | 262144 | 1 | 3.085e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.64959783820383 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2993426941359691, dt = 0.001597937679314035
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.11 us (2.6%)
patch tree reduce : 1.85 us (0.7%)
gen split merge : 926.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.45 us (0.5%)
LB compute : 247.73 us (91.5%)
LB move op cnt : 0
LB apply : 4.32 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.39 us (63.8%)
Info: cfl dt = 0.0015979087444250096 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.1426e+05 | 262144 | 1 | 3.219e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.86845230328582 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3009406318152832, dt = 0.0015979087444250096
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.05 us (2.6%)
patch tree reduce : 2.09 us (0.8%)
gen split merge : 1.08 us (0.4%)
split / merge op : 0/0
apply split merge : 1.49 us (0.6%)
LB compute : 247.68 us (91.5%)
LB move op cnt : 0
LB apply : 4.71 us (1.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.88 us (64.4%)
Info: cfl dt = 0.0015978800486052993 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.3069e+05 | 262144 | 1 | 3.156e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.228515411675513 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3025385405597083, dt = 0.0015978800486052993
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.88 us (2.6%)
patch tree reduce : 1.86 us (0.7%)
gen split merge : 1.03 us (0.4%)
split / merge op : 0/0
apply split merge : 1.56 us (0.6%)
LB compute : 242.17 us (91.6%)
LB move op cnt : 0
LB apply : 4.28 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.49 us (67.4%)
Info: cfl dt = 0.0015978515751901225 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.3388e+05 | 262144 | 1 | 3.144e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.298292209893447 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3041364206083137, dt = 0.0015978515751901225
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.28 us (2.5%)
patch tree reduce : 1.71 us (0.6%)
gen split merge : 1.11 us (0.4%)
split / merge op : 0/0
apply split merge : 1.44 us (0.5%)
LB compute : 275.06 us (92.6%)
LB move op cnt : 0
LB apply : 4.11 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.44 us (63.9%)
Info: cfl dt = 0.001597823311788021 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.1941e+05 | 262144 | 1 | 3.199e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.980423376229155 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.305734272183504, dt = 0.001597823311788021
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.14 us (2.7%)
patch tree reduce : 1.97 us (0.7%)
gen split merge : 785.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.26 us (0.5%)
LB compute : 243.90 us (91.6%)
LB move op cnt : 0
LB apply : 4.20 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.47 us (67.0%)
Info: cfl dt = 0.0015977952339882033 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2120e+05 | 262144 | 1 | 3.192e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.019292663103272 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3073320954952918, dt = 0.0015977952339882033
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.28 us (2.6%)
patch tree reduce : 2.02 us (0.7%)
gen split merge : 930.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.65 us (0.6%)
LB compute : 256.59 us (91.7%)
LB move op cnt : 0
LB apply : 4.49 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.51 us (66.3%)
Info: cfl dt = 0.0015977673333006388 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2778e+05 | 262144 | 1 | 3.167e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.16345623566833 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3089298907292801, dt = 0.0015977673333006388
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.11 us (2.3%)
patch tree reduce : 1.83 us (0.6%)
gen split merge : 916.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.40 us (0.5%)
LB compute : 286.95 us (92.8%)
LB move op cnt : 0
LB apply : 4.34 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.48 us (65.3%)
Info: cfl dt = 0.0015977396225173683 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.6263e+05 | 262144 | 1 | 3.039e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.927928482481484 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3105276580625809, dt = 0.0015977396225173683
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.77 us (2.4%)
patch tree reduce : 1.71 us (0.6%)
gen split merge : 1.08 us (0.4%)
split / merge op : 0/0
apply split merge : 1.30 us (0.5%)
LB compute : 256.82 us (92.2%)
LB move op cnt : 0
LB apply : 4.04 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.48 us (63.7%)
Info: cfl dt = 0.0015977121307942587 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.8586e+05 | 262144 | 1 | 3.336e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.242956371339318 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3121253976850982, dt = 0.0015977121307942587
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.47 us (2.4%)
patch tree reduce : 1.98 us (0.7%)
gen split merge : 938.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.41 us (0.5%)
LB compute : 251.03 us (92.1%)
LB move op cnt : 0
LB apply : 4.28 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.58 us (67.9%)
Info: cfl dt = 0.001597684970760976 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.6436e+05 | 262144 | 1 | 3.430e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.77103875664152 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3137231098158924, dt = 0.001597684970760976
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.29 us (2.1%)
patch tree reduce : 1.96 us (0.6%)
gen split merge : 10.44 us (3.5%)
split / merge op : 0/0
apply split merge : 1.56 us (0.5%)
LB compute : 269.43 us (89.4%)
LB move op cnt : 0
LB apply : 4.21 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.65 us (68.9%)
Info: cfl dt = 0.001597658339027815 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2677e+05 | 262144 | 1 | 3.171e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.14001460324308 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3153207947866534, dt = 0.001597658339027815
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.88 us (2.1%)
patch tree reduce : 1.68 us (0.5%)
gen split merge : 962.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.62 us (0.5%)
LB compute : 306.25 us (93.2%)
LB move op cnt : 0
LB apply : 4.54 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.52 us (64.8%)
Info: cfl dt = 0.0015976322241093974 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.1346e+05 | 262144 | 1 | 3.674e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.653728245512372 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3169184531256812, dt = 0.0015976322241093974
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 16.45 us (5.5%)
patch tree reduce : 2.02 us (0.7%)
gen split merge : 889.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.52 us (0.5%)
LB compute : 267.17 us (89.3%)
LB move op cnt : 0
LB apply : 4.33 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.43 us (65.9%)
Info: cfl dt = 0.0015976065868807089 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2180e+05 | 262144 | 1 | 3.190e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.030333473008515 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3185160853497906, dt = 0.0015976065868807089
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.53 us (2.3%)
patch tree reduce : 1.92 us (0.6%)
gen split merge : 893.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.57 us (0.5%)
LB compute : 306.77 us (93.0%)
LB move op cnt : 0
LB apply : 4.28 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.49 us (64.7%)
Info: cfl dt = 0.001597581381663017 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.0120e+05 | 262144 | 1 | 3.272e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.57822508903201 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3201136919366714, dt = 0.001597581381663017
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.06 us (2.4%)
patch tree reduce : 1.90 us (0.7%)
gen split merge : 1.12 us (0.4%)
split / merge op : 0/0
apply split merge : 1.49 us (0.5%)
LB compute : 266.67 us (92.1%)
LB move op cnt : 0
LB apply : 4.17 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.45 us (66.0%)
Info: cfl dt = 0.0015975565709150485 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 6.8352e+05 | 262144 | 1 | 3.835e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.996015760765488 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3217112733183345, dt = 0.001205393348332251
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.11 us (2.5%)
patch tree reduce : 1.90 us (0.7%)
gen split merge : 1.05 us (0.4%)
split / merge op : 0/0
apply split merge : 1.45 us (0.5%)
LB compute : 262.45 us (92.2%)
LB move op cnt : 0
LB apply : 4.31 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.41 us (63.6%)
Info: cfl dt = 0.001597541286008514 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.9931e+05 | 262144 | 1 | 3.280e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.231474430961207 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 288.666043133 (s) [Godunov][rank=0]
Info: dump to _to_trash/ramses_kh/periodic_0011.vtk [VTK Dump][rank=0]
- took 39.10 ms, bandwidth = 1.05 GB/s
amr::Godunov: t = 1.3229166666666667, dt = 0.001597541286008514
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.82 us (2.6%)
patch tree reduce : 1.73 us (0.6%)
gen split merge : 1.10 us (0.4%)
split / merge op : 0/0
apply split merge : 1.59 us (0.5%)
LB compute : 276.93 us (92.1%)
LB move op cnt : 0
LB apply : 4.55 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.73 us (71.9%)
Info: cfl dt = 0.001597516400529528 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.6606e+05 | 262144 | 1 | 3.422e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.806413736931844 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3245142079526753, dt = 0.001597516400529528
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.21 us (2.8%)
patch tree reduce : 1.95 us (0.7%)
gen split merge : 1.23 us (0.5%)
split / merge op : 0/0
apply split merge : 1.40 us (0.5%)
LB compute : 237.44 us (91.2%)
LB move op cnt : 0
LB apply : 4.15 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.35 us (63.6%)
Info: cfl dt = 0.0015974913642355624 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.1179e+05 | 262144 | 1 | 3.683e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.615704540897896 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3261117243532048, dt = 0.0015974913642355624
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.98 us (2.2%)
patch tree reduce : 1.71 us (0.5%)
gen split merge : 1.24 us (0.4%)
split / merge op : 0/0
apply split merge : 1.37 us (0.4%)
LB compute : 294.99 us (93.1%)
LB move op cnt : 0
LB apply : 4.26 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.42 us (65.3%)
Info: cfl dt = 0.0015974666477622014 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.1346e+05 | 262144 | 1 | 3.223e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.845799995567614 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3277092157174404, dt = 0.0015974666477622014
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.86 us (2.3%)
patch tree reduce : 1.68 us (0.6%)
gen split merge : 1.19 us (0.4%)
split / merge op : 0/0
apply split merge : 1.29 us (0.4%)
LB compute : 278.37 us (92.7%)
LB move op cnt : 0
LB apply : 4.07 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.49 us (66.5%)
Info: cfl dt = 0.0015974425466652087 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.5348e+05 | 262144 | 1 | 3.071e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.723483751370203 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3293066823652027, dt = 0.0015974425466652087
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.76 us (2.4%)
patch tree reduce : 2.16 us (0.8%)
gen split merge : 1.01 us (0.4%)
split / merge op : 0/0
apply split merge : 1.54 us (0.5%)
LB compute : 262.12 us (92.1%)
LB move op cnt : 0
LB apply : 4.33 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.61 us (67.3%)
Info: cfl dt = 0.001597419197160476 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.6282e+05 | 262144 | 1 | 3.038e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.928157131179002 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3309041249118678, dt = 0.001597419197160476
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.02 us (2.2%)
patch tree reduce : 1.71 us (0.5%)
gen split merge : 964.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.58 us (0.5%)
LB compute : 294.53 us (92.7%)
LB move op cnt : 0
LB apply : 4.66 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.60 us (65.6%)
Info: cfl dt = 0.0015973965812758457 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2130e+05 | 262144 | 1 | 3.192e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.017006513894668 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3325015441090282, dt = 0.0015973965812758457
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.84 us (2.3%)
patch tree reduce : 1.82 us (0.6%)
gen split merge : 1.10 us (0.4%)
split / merge op : 0/0
apply split merge : 1.40 us (0.5%)
LB compute : 279.32 us (92.7%)
LB move op cnt : 0
LB apply : 4.06 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.45 us (66.6%)
Info: cfl dt = 0.0015973745585718246 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2206e+05 | 262144 | 1 | 3.189e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.033406593424754 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.334098940690304, dt = 0.0015973745585718246
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.54 us (2.7%)
patch tree reduce : 1.70 us (0.6%)
gen split merge : 1.00 us (0.4%)
split / merge op : 0/0
apply split merge : 1.25 us (0.4%)
LB compute : 260.30 us (92.2%)
LB move op cnt : 0
LB apply : 4.19 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.53 us (67.5%)
Info: cfl dt = 0.0015973529279309517 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.1939e+05 | 262144 | 1 | 3.199e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.974720703334597 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3356963152488759, dt = 0.0015973529279309517
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.16 us (2.6%)
patch tree reduce : 1.95 us (0.7%)
gen split merge : 944.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.49 us (0.5%)
LB compute : 249.01 us (91.6%)
LB move op cnt : 0
LB apply : 4.08 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.76 us (64.7%)
Info: cfl dt = 0.001597331467041781 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2201e+05 | 262144 | 1 | 3.189e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.031801351161974 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3372936681768068, dt = 0.001597331467041781
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.87 us (2.4%)
patch tree reduce : 1.85 us (0.6%)
gen split merge : 1.01 us (0.4%)
split / merge op : 0/0
apply split merge : 1.52 us (0.5%)
LB compute : 262.04 us (92.1%)
LB move op cnt : 0
LB apply : 4.13 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.70 us (70.3%)
Info: cfl dt = 0.0015973099988697223 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2571e+05 | 262144 | 1 | 3.175e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.112674617000334 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3388909996438487, dt = 0.0015973099988697223
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.14 us (2.3%)
patch tree reduce : 1.75 us (0.6%)
gen split merge : 1.01 us (0.3%)
split / merge op : 0/0
apply split merge : 1.63 us (0.5%)
LB compute : 286.95 us (92.8%)
LB move op cnt : 0
LB apply : 4.07 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.90 us (64.6%)
Info: cfl dt = 0.0015972884917960979 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.1641e+05 | 262144 | 1 | 3.211e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.908584930393904 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3404883096427185, dt = 0.0015972884917960979
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.09 us (2.2%)
patch tree reduce : 2.02 us (0.6%)
gen split merge : 921.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.31 us (0.4%)
LB compute : 300.17 us (93.1%)
LB move op cnt : 0
LB apply : 4.11 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.45 us (64.6%)
Info: cfl dt = 0.0015972667989670604 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.4414e+05 | 262144 | 1 | 3.105e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.516470926598384 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3420855981345146, dt = 0.0015972667989670604
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.64 us (2.0%)
patch tree reduce : 1.75 us (0.5%)
gen split merge : 1.08 us (0.3%)
split / merge op : 0/0
apply split merge : 1.48 us (0.5%)
LB compute : 302.15 us (93.1%)
LB move op cnt : 0
LB apply : 4.38 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.49 us (65.4%)
Info: cfl dt = 0.0015972448348949284 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.3441e+05 | 262144 | 1 | 3.142e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.30278910545844 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3436828649334815, dt = 0.0015972448348949284
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.93 us (2.1%)
patch tree reduce : 1.65 us (0.5%)
gen split merge : 738.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.35 us (0.4%)
LB compute : 302.61 us (93.4%)
LB move op cnt : 0
LB apply : 4.00 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.55 us (65.0%)
Info: cfl dt = 0.0015972225672000742 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.0892e+05 | 262144 | 1 | 3.241e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.743525273690054 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3452801097683764, dt = 0.0015972225672000742
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.99 us (2.2%)
patch tree reduce : 1.88 us (0.6%)
gen split merge : 873.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.29 us (0.4%)
LB compute : 288.80 us (92.8%)
LB move op cnt : 0
LB apply : 4.17 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.79 us (64.7%)
Info: cfl dt = 0.0015972000034877101 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.1315e+05 | 262144 | 1 | 3.224e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.83595151061657 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3468773323355765, dt = 0.0015972000034877101
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.27 us (2.3%)
patch tree reduce : 1.84 us (0.6%)
gen split merge : 947.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.50 us (0.5%)
LB compute : 290.66 us (92.5%)
LB move op cnt : 0
LB apply : 4.35 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.49 us (66.5%)
Info: cfl dt = 0.0015971771723601326 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.3042e+05 | 262144 | 1 | 3.157e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.214560826038202 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3484745323390641, dt = 0.0015971771723601326
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.39 us (2.8%)
patch tree reduce : 1.82 us (0.7%)
gen split merge : 1.05 us (0.4%)
split / merge op : 0/0
apply split merge : 1.43 us (0.5%)
LB compute : 243.03 us (91.5%)
LB move op cnt : 0
LB apply : 4.25 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.60 us (66.9%)
Info: cfl dt = 0.001597154104618465 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.1716e+05 | 262144 | 1 | 3.208e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.92346684020213 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3500717095114243, dt = 0.001597154104618465
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.52 us (2.8%)
patch tree reduce : 1.64 us (0.6%)
gen split merge : 991.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.29 us (0.5%)
LB compute : 244.74 us (91.7%)
LB move op cnt : 0
LB apply : 4.22 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.42 us (65.8%)
Info: cfl dt = 0.0015971308218286659 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.1096e+05 | 262144 | 1 | 3.232e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.787343146340675 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3516688636160428, dt = 0.0015971308218286659
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.90 us (2.2%)
patch tree reduce : 1.69 us (0.5%)
gen split merge : 940.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.66 us (0.5%)
LB compute : 296.00 us (93.1%)
LB move op cnt : 0
LB apply : 3.77 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.58 us (66.2%)
Info: cfl dt = 0.0015971073285945723 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.1717e+05 | 262144 | 1 | 3.208e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.923193587463714 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3532659944378715, dt = 0.0015971073285945723
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.16 us (2.2%)
patch tree reduce : 1.79 us (0.6%)
gen split merge : 1.23 us (0.4%)
split / merge op : 0/0
apply split merge : 1.30 us (0.5%)
LB compute : 256.11 us (92.3%)
LB move op cnt : 0
LB apply : 4.15 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.47 us (65.3%)
Info: cfl dt = 0.0015970835881557244 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.5684e+05 | 262144 | 1 | 3.464e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.59973566221203 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.354863101766466, dt = 0.0015970835881557244
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.89 us (2.7%)
patch tree reduce : 1.69 us (0.7%)
gen split merge : 1.11 us (0.4%)
split / merge op : 0/0
apply split merge : 1.45 us (0.6%)
LB compute : 235.74 us (91.4%)
LB move op cnt : 0
LB apply : 4.22 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.37 us (65.8%)
Info: cfl dt = 0.0015970595471966427 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.6370e+05 | 262144 | 1 | 3.433e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.74998897714445 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3564601853546219, dt = 0.0015970595471966427
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.97 us (2.4%)
patch tree reduce : 2.05 us (0.7%)
gen split merge : 920.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 10.02 us (3.4%)
LB compute : 259.64 us (89.1%)
LB move op cnt : 0
LB apply : 4.51 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.45 us (66.8%)
Info: cfl dt = 0.001597035160199711 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.3725e+05 | 262144 | 1 | 3.131e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.36273238994096 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3580572449018184, dt = 0.001597035160199711
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.56 us (2.9%)
patch tree reduce : 1.75 us (0.7%)
gen split merge : 1.01 us (0.4%)
split / merge op : 0/0
apply split merge : 1.51 us (0.6%)
LB compute : 233.34 us (91.1%)
LB move op cnt : 0
LB apply : 4.35 us (1.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.47 us (65.9%)
Info: cfl dt = 0.001597010385354242 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.1381e+05 | 262144 | 1 | 3.221e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.848428217017815 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3596542800620182, dt = 0.001597010385354242
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.52 us (2.1%)
patch tree reduce : 1.96 us (0.6%)
gen split merge : 865.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.38 us (0.4%)
LB compute : 289.60 us (93.0%)
LB move op cnt : 0
LB apply : 4.21 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.60 us (69.9%)
Info: cfl dt = 0.001596985191017247 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.6832e+05 | 262144 | 1 | 3.412e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.85058798525505 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3612512904473724, dt = 0.001596985191017247
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.75 us (2.3%)
patch tree reduce : 1.83 us (0.6%)
gen split merge : 970.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.45 us (0.5%)
LB compute : 271.05 us (92.5%)
LB move op cnt : 0
LB apply : 3.98 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.46 us (63.8%)
Info: cfl dt = 0.001596959549376827 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2198e+05 | 262144 | 1 | 3.189e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.026993172478253 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3628482756383895, dt = 0.001596959549376827
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.80 us (2.5%)
patch tree reduce : 1.86 us (0.7%)
gen split merge : 990.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.37 us (0.5%)
LB compute : 246.83 us (91.8%)
LB move op cnt : 0
LB apply : 4.13 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.44 us (67.3%)
Info: cfl dt = 0.001596933432428499 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.1877e+05 | 262144 | 1 | 3.202e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.956378661632826 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3644452351877663, dt = 0.001596933432428499
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.95 us (2.5%)
patch tree reduce : 1.74 us (0.6%)
gen split merge : 1.16 us (0.4%)
split / merge op : 0/0
apply split merge : 1.37 us (0.5%)
LB compute : 254.29 us (91.9%)
LB move op cnt : 0
LB apply : 4.41 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.42 us (65.8%)
Info: cfl dt = 0.0015969068111643507 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2547e+05 | 262144 | 1 | 3.176e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.10311095098677 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3660421686201947, dt = 0.0015969068111643507
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.19 us (2.2%)
patch tree reduce : 1.66 us (0.5%)
gen split merge : 1.01 us (0.3%)
split / merge op : 0/0
apply split merge : 1.45 us (0.5%)
LB compute : 299.73 us (93.2%)
LB move op cnt : 0
LB apply : 3.99 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.58 us (67.7%)
Info: cfl dt = 0.0015968796568413353 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2223e+05 | 262144 | 1 | 3.188e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.031656563327036 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.367639075431359, dt = 0.0015968796568413353
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.70 us (2.1%)
patch tree reduce : 1.84 us (0.6%)
gen split merge : 1.02 us (0.3%)
split / merge op : 0/0
apply split merge : 1.52 us (0.5%)
LB compute : 298.19 us (93.2%)
LB move op cnt : 0
LB apply : 4.08 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.56 us (65.9%)
Info: cfl dt = 0.0015968519432212253 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.1770e+05 | 262144 | 1 | 3.206e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.931931086027593 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3692359550882003, dt = 0.0015968519432212253
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.49 us (2.3%)
patch tree reduce : 1.68 us (0.6%)
gen split merge : 994.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.48 us (0.5%)
LB compute : 266.08 us (92.6%)
LB move op cnt : 0
LB apply : 4.08 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.76 us (64.8%)
Info: cfl dt = 0.0015968236473442392 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.4081e+05 | 262144 | 1 | 3.118e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.438580454580705 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3708328070314215, dt = 0.0015968236473442392
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.58 us (2.2%)
patch tree reduce : 1.77 us (0.6%)
gen split merge : 916.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.17 us (0.4%)
LB compute : 274.06 us (90.3%)
LB move op cnt : 0
LB apply : 3.96 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.70 us (65.8%)
Info: cfl dt = 0.0015967947492751653 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2443e+05 | 262144 | 1 | 3.180e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.07904946570421 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3724296306787658, dt = 0.0015967947492751653
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.49 us (2.2%)
patch tree reduce : 1.93 us (0.6%)
gen split merge : 1.02 us (0.3%)
split / merge op : 0/0
apply split merge : 1.47 us (0.5%)
LB compute : 276.02 us (92.7%)
LB move op cnt : 0
LB apply : 4.10 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.52 us (65.8%)
Info: cfl dt = 0.0015967652310769933 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.2092e+05 | 262144 | 1 | 3.636e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.808689307537664 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.374026425428041, dt = 0.0015967652310769933
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.61 us (2.1%)
patch tree reduce : 1.75 us (0.6%)
gen split merge : 1.04 us (0.3%)
split / merge op : 0/0
apply split merge : 1.52 us (0.5%)
LB compute : 285.73 us (92.8%)
LB move op cnt : 0
LB apply : 4.20 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.47 us (64.1%)
Info: cfl dt = 0.0015967350756569826 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2336e+05 | 262144 | 1 | 3.184e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.054756538948514 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.375623190659118, dt = 0.0015967350756569826
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.48 us (2.1%)
patch tree reduce : 1.62 us (0.5%)
gen split merge : 887.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.72 us (0.6%)
LB compute : 283.67 us (93.0%)
LB move op cnt : 0
LB apply : 3.94 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.39 us (64.7%)
Info: cfl dt = 0.0015967042664610633 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.1878e+05 | 262144 | 1 | 3.202e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.954165773065515 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.377219925734775, dt = 0.0015967042664610633
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.65 us (2.5%)
patch tree reduce : 1.65 us (0.6%)
gen split merge : 954.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.39 us (0.5%)
LB compute : 246.91 us (91.8%)
LB move op cnt : 0
LB apply : 4.40 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.49 us (67.7%)
Info: cfl dt = 0.001596672788316712 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 6.8471e+05 | 262144 | 1 | 3.829e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.01395241915173 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.378816630001236, dt = 0.001596672788316712
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.06 us (2.4%)
patch tree reduce : 1.92 us (0.7%)
gen split merge : 1.01 us (0.3%)
split / merge op : 0/0
apply split merge : 1.43 us (0.5%)
LB compute : 267.59 us (92.2%)
LB move op cnt : 0
LB apply : 4.21 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.51 us (64.9%)
Info: cfl dt = 0.001596640625389737 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2133e+05 | 262144 | 1 | 3.192e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.0093466833135 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3804133027895529, dt = 0.001596640625389737
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.89 us (2.3%)
patch tree reduce : 1.76 us (0.6%)
gen split merge : 1.06 us (0.4%)
split / merge op : 0/0
apply split merge : 1.41 us (0.5%)
LB compute : 274.96 us (92.7%)
LB move op cnt : 0
LB apply : 4.20 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.41 us (62.9%)
Info: cfl dt = 0.0015966077627863145 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2192e+05 | 262144 | 1 | 3.189e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.02179197959377 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3820099434149427, dt = 0.0015966077627863145
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.57 us (2.1%)
patch tree reduce : 1.85 us (0.6%)
gen split merge : 1.01 us (0.3%)
split / merge op : 0/0
apply split merge : 1.44 us (0.5%)
LB compute : 294.55 us (93.0%)
LB move op cnt : 0
LB apply : 4.15 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.58 us (67.5%)
Info: cfl dt = 0.0015965741923818055 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2558e+05 | 262144 | 1 | 3.175e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.101771092898478 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.383606551177729, dt = 0.0015965741923818055
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.72 us (2.3%)
patch tree reduce : 1.93 us (0.7%)
gen split merge : 1.07 us (0.4%)
split / merge op : 0/0
apply split merge : 1.48 us (0.5%)
LB compute : 265.96 us (92.3%)
LB move op cnt : 0
LB apply : 3.96 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.50 us (65.2%)
Info: cfl dt = 0.0015965399158959631 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2026e+05 | 262144 | 1 | 3.196e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.984672874989784 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3852031253701107, dt = 0.0015965399158959631
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.85 us (2.4%)
patch tree reduce : 1.69 us (0.6%)
gen split merge : 909.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.32 us (0.5%)
LB compute : 268.25 us (92.6%)
LB move op cnt : 0
LB apply : 4.06 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.41 us (65.2%)
Info: cfl dt = 0.001596504947564527 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2154e+05 | 262144 | 1 | 3.191e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.012451306424357 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3867996652860066, dt = 0.001596504947564527
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.93 us (2.6%)
patch tree reduce : 1.73 us (0.7%)
gen split merge : 1.12 us (0.4%)
split / merge op : 0/0
apply split merge : 1.35 us (0.5%)
LB compute : 244.70 us (91.8%)
LB move op cnt : 0
LB apply : 4.08 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.72 us (63.8%)
Info: cfl dt = 0.0015964693143896195 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.4150e+05 | 262144 | 1 | 3.115e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.449685835580553 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3883961702335712, dt = 0.0015964693143896195
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.69 us (2.5%)
patch tree reduce : 1.83 us (0.7%)
gen split merge : 991.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.39 us (0.5%)
LB compute : 242.51 us (91.6%)
LB move op cnt : 0
LB apply : 4.34 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.45 us (66.0%)
Info: cfl dt = 0.0015964330534576831 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2162e+05 | 262144 | 1 | 3.191e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.013259993134962 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.389992639547961, dt = 0.0015964330534576831
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.94 us (2.5%)
patch tree reduce : 1.82 us (0.6%)
gen split merge : 1.32 us (0.5%)
split / merge op : 0/0
apply split merge : 1.54 us (0.5%)
LB compute : 258.46 us (91.8%)
LB move op cnt : 0
LB apply : 4.42 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.45 us (65.1%)
Info: cfl dt = 0.0015963962057305781 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.1409e+05 | 262144 | 1 | 3.220e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.84792132265015 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3915890726014186, dt = 0.0015963962057305781
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.33 us (2.3%)
patch tree reduce : 1.64 us (0.5%)
gen split merge : 912.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.53 us (0.5%)
LB compute : 290.05 us (92.9%)
LB move op cnt : 0
LB apply : 4.17 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.52 us (67.7%)
Info: cfl dt = 0.0015963588116160053 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.6896e+05 | 262144 | 1 | 3.017e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 19.050431912714565 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3931854688071492, dt = 0.0015963588116160053
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.06 us (2.7%)
patch tree reduce : 1.73 us (0.7%)
gen split merge : 1.07 us (0.4%)
split / merge op : 0/0
apply split merge : 1.50 us (0.6%)
LB compute : 242.02 us (91.5%)
LB move op cnt : 0
LB apply : 4.42 us (1.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.38 us (62.2%)
Info: cfl dt = 0.0015963209087687638 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.3076e+05 | 262144 | 1 | 3.155e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.212523657213435 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3947818276187651, dt = 0.0015963209087687638
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.30 us (2.1%)
patch tree reduce : 1.91 us (0.6%)
gen split merge : 1.17 us (0.4%)
split / merge op : 0/0
apply split merge : 1.37 us (0.5%)
LB compute : 280.89 us (93.0%)
LB move op cnt : 0
LB apply : 3.92 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.39 us (63.8%)
Info: cfl dt = 0.0015962825312260316 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.3717e+05 | 262144 | 1 | 3.131e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.352586341682127 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.396378148527534, dt = 0.0015962825312260316
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.52 us (2.6%)
patch tree reduce : 1.99 us (0.8%)
gen split merge : 1.07 us (0.4%)
split / merge op : 0/0
apply split merge : 1.38 us (0.5%)
LB compute : 234.04 us (91.6%)
LB move op cnt : 0
LB apply : 3.95 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.38 us (65.3%)
Info: cfl dt = 0.0015962437100303856 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.1607e+05 | 262144 | 1 | 3.212e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.889642139155118 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.39797443105876, dt = 0.0015962437100303856
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.52 us (2.2%)
patch tree reduce : 1.85 us (0.6%)
gen split merge : 969.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.61 us (0.5%)
LB compute : 277.83 us (92.6%)
LB move op cnt : 0
LB apply : 4.41 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.45 us (66.6%)
Info: cfl dt = 0.001596204474820481 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 6.9787e+05 | 262144 | 1 | 3.756e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.297952107963315 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3995706747687904, dt = 0.001596204474820481
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.71 us (2.2%)
patch tree reduce : 1.77 us (0.6%)
gen split merge : 1.11 us (0.4%)
split / merge op : 0/0
apply split merge : 1.47 us (0.5%)
LB compute : 280.10 us (92.8%)
LB move op cnt : 0
LB apply : 4.10 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.70 us (64.4%)
Info: cfl dt = 0.001596164855839259 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.2918e+05 | 262144 | 1 | 3.595e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.983951641927385 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.401166879243611, dt = 0.001596164855839259
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.61 us (2.6%)
patch tree reduce : 1.94 us (0.8%)
gen split merge : 909.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.38 us (0.5%)
LB compute : 233.38 us (91.3%)
LB move op cnt : 0
LB apply : 4.55 us (1.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.41 us (65.1%)
Info: cfl dt = 0.0015961248873926767 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.1667e+05 | 262144 | 1 | 3.658e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.709307465270928 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4027630440994503, dt = 0.0015961248873926767
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.78 us (2.6%)
patch tree reduce : 1.98 us (0.8%)
gen split merge : 934.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.14 us (0.4%)
LB compute : 236.89 us (91.6%)
LB move op cnt : 0
LB apply : 4.23 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.39 us (65.8%)
Info: cfl dt = 0.0015960846046578793 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 6.8772e+05 | 262144 | 1 | 3.812e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.074492995903322 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4043591689868429, dt = 0.0015960846046578793
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.93 us (2.1%)
patch tree reduce : 1.69 us (0.6%)
gen split merge : 700.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.34 us (0.5%)
LB compute : 263.88 us (93.0%)
LB move op cnt : 0
LB apply : 4.05 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.52 us (66.9%)
Info: cfl dt = 0.0015960440469291897 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3621e+05 | 262144 | 1 | 3.561e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.13696247935904 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4059552535915008, dt = 0.0015960440469291897
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.03 us (2.7%)
patch tree reduce : 1.79 us (0.7%)
gen split merge : 1.04 us (0.4%)
split / merge op : 0/0
apply split merge : 1.54 us (0.6%)
LB compute : 237.79 us (91.5%)
LB move op cnt : 0
LB apply : 4.10 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.46 us (66.2%)
Info: cfl dt = 0.001596003258617692 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2239e+05 | 262144 | 1 | 3.188e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.025364770927272 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.40755129763843, dt = 0.001596003258617692
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.43 us (2.5%)
patch tree reduce : 1.90 us (0.7%)
gen split merge : 897.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.39 us (0.5%)
LB compute : 232.82 us (91.5%)
LB move op cnt : 0
LB apply : 4.11 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.41 us (65.0%)
Info: cfl dt = 0.0015959622897416515 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 6.7829e+05 | 262144 | 1 | 3.865e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.866686839109649 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4091473008970476, dt = 0.0015959622897416515
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.63 us (3.0%)
patch tree reduce : 1.98 us (0.8%)
gen split merge : 1.06 us (0.4%)
split / merge op : 0/0
apply split merge : 1.37 us (0.5%)
LB compute : 228.00 us (90.7%)
LB move op cnt : 0
LB apply : 4.79 us (1.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.51 us (68.3%)
Info: cfl dt = 0.0015959211945845236 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.2798e+05 | 262144 | 1 | 3.601e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.955364454963942 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4107432631867893, dt = 0.0015959211945845236
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.85 us (2.4%)
patch tree reduce : 1.83 us (0.6%)
gen split merge : 1.00 us (0.3%)
split / merge op : 0/0
apply split merge : 1.36 us (0.5%)
LB compute : 266.81 us (92.5%)
LB move op cnt : 0
LB apply : 4.15 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.55 us (67.4%)
Info: cfl dt = 0.0015958800296107132 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.8069e+05 | 262144 | 1 | 3.358e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.110013079860398 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.412339184381374, dt = 0.0015958800296107132
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.77 us (2.6%)
patch tree reduce : 1.87 us (0.7%)
gen split merge : 999.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.22 us (0.5%)
LB compute : 240.60 us (91.6%)
LB move op cnt : 0
LB apply : 3.99 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.93 us (65.3%)
Info: cfl dt = 0.0015958388513965546 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.3409e+05 | 262144 | 1 | 3.143e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.279945067583757 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4139350644109847, dt = 0.0015958388513965546
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.03 us (2.3%)
patch tree reduce : 1.75 us (0.6%)
gen split merge : 1.00 us (0.3%)
split / merge op : 0/0
apply split merge : 1.45 us (0.5%)
LB compute : 287.13 us (92.6%)
LB move op cnt : 0
LB apply : 4.63 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.52 us (66.9%)
Info: cfl dt = 0.0015957977154716536 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2137e+05 | 262144 | 1 | 3.192e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.00070669379452 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4155309032623813, dt = 0.0015957977154716536
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.72 us (2.5%)
patch tree reduce : 1.76 us (0.7%)
gen split merge : 1.01 us (0.4%)
split / merge op : 0/0
apply split merge : 1.49 us (0.6%)
LB compute : 245.53 us (92.0%)
LB move op cnt : 0
LB apply : 4.22 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.44 us (64.8%)
Info: cfl dt = 0.0015957566764063357 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.6204e+05 | 262144 | 1 | 3.440e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.699994317508843 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.417126700977853, dt = 0.0015957566764063357
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.79 us (2.4%)
patch tree reduce : 1.62 us (0.6%)
gen split merge : 916.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.71 us (0.6%)
LB compute : 248.87 us (88.7%)
LB move op cnt : 0
LB apply : 13.51 us (4.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.62 us (67.8%)
Info: cfl dt = 0.001595715788406231 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2113e+05 | 262144 | 1 | 3.192e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.99445031717661 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4187224576542594, dt = 0.001595715788406231
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.78 us (2.3%)
patch tree reduce : 1.72 us (0.6%)
gen split merge : 892.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.51 us (0.5%)
LB compute : 275.23 us (92.8%)
LB move op cnt : 0
LB apply : 4.05 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.48 us (67.1%)
Info: cfl dt = 0.0015956751055150459 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2166e+05 | 262144 | 1 | 3.190e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.005767480212953 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4203181734426658, dt = 0.0015956751055150459
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.48 us (2.5%)
patch tree reduce : 1.67 us (0.6%)
gen split merge : 910.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.40 us (0.5%)
LB compute : 242.06 us (91.8%)
LB move op cnt : 0
LB apply : 4.52 us (1.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.40 us (64.1%)
Info: cfl dt = 0.0015956346808672387 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2253e+05 | 262144 | 1 | 3.187e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.024244218087375 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4219138485481808, dt = 0.0015956346808672387
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.20 us (2.3%)
patch tree reduce : 1.87 us (0.7%)
gen split merge : 1.12 us (0.4%)
split / merge op : 0/0
apply split merge : 1.66 us (0.6%)
LB compute : 243.47 us (91.8%)
LB move op cnt : 0
LB apply : 4.30 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.35 us (65.0%)
Info: cfl dt = 0.0015955945659434628 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.7876e+05 | 262144 | 1 | 3.366e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.064754317264732 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.423509483229048, dt = 0.0015955945659434628
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.66 us (2.6%)
patch tree reduce : 1.72 us (0.7%)
gen split merge : 963.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.62 us (0.6%)
LB compute : 234.92 us (91.6%)
LB move op cnt : 0
LB apply : 4.07 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.41 us (64.8%)
Info: cfl dt = 0.0015955548093980298 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.2609e+05 | 262144 | 1 | 3.610e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.91021924736716 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4251050777949914, dt = 0.0015955548093980298
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.51 us (2.4%)
patch tree reduce : 1.76 us (0.7%)
gen split merge : 826.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.56 us (0.6%)
LB compute : 244.17 us (91.9%)
LB move op cnt : 0
LB apply : 4.19 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.72 us (64.5%)
Info: cfl dt = 0.0015955154554980883 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2679e+05 | 262144 | 1 | 3.171e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.116312260148483 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4267006326043894, dt = 0.0015955154554980883
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.38 us (2.6%)
patch tree reduce : 1.86 us (0.7%)
gen split merge : 806.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.58 us (0.6%)
LB compute : 263.23 us (92.1%)
LB move op cnt : 0
LB apply : 4.18 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.67 us (70.4%)
Info: cfl dt = 0.0015954765426481805 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.8470e+05 | 262144 | 1 | 3.341e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.193712159485163 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4282961480598875, dt = 0.0015954765426481805
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.89 us (2.3%)
patch tree reduce : 1.72 us (0.6%)
gen split merge : 1.03 us (0.3%)
split / merge op : 0/0
apply split merge : 1.44 us (0.5%)
LB compute : 277.96 us (92.7%)
LB move op cnt : 0
LB apply : 4.10 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.44 us (64.9%)
Info: cfl dt = 0.001595438102376508 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.1618e+05 | 262144 | 1 | 3.212e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.882860694313564 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4298916246025357, dt = 0.001595438102376508
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.13 us (2.1%)
patch tree reduce : 1.78 us (0.6%)
gen split merge : 839.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.51 us (0.5%)
LB compute : 264.77 us (92.3%)
LB move op cnt : 0
LB apply : 4.25 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.65 us (67.5%)
Info: cfl dt = 0.00159540015902693 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2152e+05 | 262144 | 1 | 3.191e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.999618697626165 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4314870627049123, dt = 0.00159540015902693
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.95 us (2.4%)
patch tree reduce : 1.82 us (0.6%)
gen split merge : 921.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.73 us (0.6%)
LB compute : 270.48 us (92.3%)
LB move op cnt : 0
LB apply : 4.46 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.49 us (65.6%)
Info: cfl dt = 0.0015953627298465711 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.0120e+05 | 262144 | 1 | 3.272e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.553966175466087 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4330824628639394, dt = 0.0015953627298465711
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.07 us (2.0%)
patch tree reduce : 1.96 us (0.7%)
gen split merge : 693.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.19 us (0.4%)
LB compute : 280.02 us (93.2%)
LB move op cnt : 0
LB apply : 4.38 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.90 us (65.3%)
Info: cfl dt = 0.0015953258253560752 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.9502e+05 | 262144 | 1 | 3.297e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.41801323120369 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.434677825593786, dt = 0.0015953258253560752
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.75 us (2.3%)
patch tree reduce : 1.67 us (0.6%)
gen split merge : 859.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.38 us (0.5%)
LB compute : 268.09 us (92.6%)
LB move op cnt : 0
LB apply : 4.29 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.67 us (62.6%)
Info: cfl dt = 0.0015952894515179072 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3590e+05 | 262144 | 1 | 3.562e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.122388603753983 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.436273151419142, dt = 0.0015952894515179072
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.99 us (2.4%)
patch tree reduce : 1.75 us (0.6%)
gen split merge : 994.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.38 us (0.5%)
LB compute : 267.46 us (92.4%)
LB move op cnt : 0
LB apply : 4.00 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.65 us (68.0%)
Info: cfl dt = 0.0015952536263584122 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.6432e+05 | 262144 | 1 | 3.430e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.744710867564574 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.43786844087066, dt = 0.0015952536263584122
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.74 us (2.6%)
patch tree reduce : 1.68 us (0.6%)
gen split merge : 994.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.41 us (0.5%)
LB compute : 239.41 us (91.6%)
LB move op cnt : 0
LB apply : 4.34 us (1.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.63 us (66.8%)
Info: cfl dt = 0.0015952183509550086 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.1406e+05 | 262144 | 1 | 3.220e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.833915023056264 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4394636944970183, dt = 0.0015952183509550086
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.64 us (2.6%)
patch tree reduce : 1.69 us (0.7%)
gen split merge : 1.04 us (0.4%)
split / merge op : 0/0
apply split merge : 1.61 us (0.6%)
LB compute : 238.66 us (91.8%)
LB move op cnt : 0
LB apply : 3.89 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.79 us (65.0%)
Info: cfl dt = 0.0015951836037136086 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.5885e+05 | 262144 | 1 | 3.455e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.624017790758636 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4410589128479734, dt = 0.0015951836037136086
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.65 us (2.3%)
patch tree reduce : 1.64 us (0.6%)
gen split merge : 1.08 us (0.4%)
split / merge op : 0/0
apply split merge : 1.52 us (0.5%)
LB compute : 268.33 us (92.6%)
LB move op cnt : 0
LB apply : 3.97 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.53 us (67.3%)
Info: cfl dt = 0.0015951491898046873 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.4995e+05 | 262144 | 1 | 3.495e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.42873426397091 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.442654096451687, dt = 0.0015951491898046873
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.32 us (2.8%)
patch tree reduce : 1.91 us (0.7%)
gen split merge : 951.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.57 us (0.6%)
LB compute : 241.82 us (91.3%)
LB move op cnt : 0
LB apply : 4.23 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.46 us (67.4%)
Info: cfl dt = 0.0015951151424895874 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.6869e+05 | 262144 | 1 | 3.410e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.838999505852595 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4442492456414917, dt = 0.0015951151424895874
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.28 us (2.4%)
patch tree reduce : 1.90 us (0.6%)
gen split merge : 937.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.35 us (0.5%)
LB compute : 276.23 us (92.5%)
LB move op cnt : 0
LB apply : 3.94 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.44 us (64.3%)
Info: cfl dt = 0.0015950815015249524 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2103e+05 | 262144 | 1 | 3.193e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.985147792501778 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4458443607839813, dt = 0.0015950815015249524
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.07 us (2.4%)
patch tree reduce : 1.82 us (0.6%)
gen split merge : 997.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.47 us (0.5%)
LB compute : 274.47 us (92.5%)
LB move op cnt : 0
LB apply : 4.16 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.45 us (64.5%)
Info: cfl dt = 0.0015950482974442359 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.9960e+05 | 262144 | 1 | 3.278e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.515372501443114 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4474394422855061, dt = 0.0015950482974442359
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.03 us (2.5%)
patch tree reduce : 1.96 us (0.7%)
gen split merge : 937.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.49 us (0.5%)
LB compute : 258.06 us (92.0%)
LB move op cnt : 0
LB apply : 4.44 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.43 us (66.7%)
Info: cfl dt = 0.0015950155545393634 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.4744e+05 | 262144 | 1 | 3.093e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.562909078347204 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4490344905829504, dt = 0.0015950155545393634
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.04 us (2.4%)
patch tree reduce : 2.25 us (0.8%)
gen split merge : 940.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.30 us (0.4%)
LB compute : 274.60 us (92.4%)
LB move op cnt : 0
LB apply : 4.36 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.40 us (64.6%)
Info: cfl dt = 0.0015949832940181665 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2613e+05 | 262144 | 1 | 3.173e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.09574101740748 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4506295061374899, dt = 0.0015949832940181665
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.79 us (2.3%)
patch tree reduce : 1.91 us (0.6%)
gen split merge : 1.05 us (0.4%)
split / merge op : 0/0
apply split merge : 1.37 us (0.5%)
LB compute : 277.13 us (92.7%)
LB move op cnt : 0
LB apply : 4.12 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.40 us (65.2%)
Info: cfl dt = 0.001594951529473891 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3424e+05 | 262144 | 1 | 3.570e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.08259124635892 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.452224489431508, dt = 0.001594951529473891
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.42 us (2.3%)
patch tree reduce : 1.91 us (0.7%)
gen split merge : 850.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.65 us (0.6%)
LB compute : 260.92 us (92.4%)
LB move op cnt : 0
LB apply : 3.87 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.47 us (65.7%)
Info: cfl dt = 0.0015949202733950276 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.1609e+05 | 262144 | 1 | 3.212e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.875191112617014 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.453819440960982, dt = 0.0013888923723515134
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.56 us (2.3%)
patch tree reduce : 1.71 us (0.6%)
gen split merge : 1.04 us (0.4%)
split / merge op : 0/0
apply split merge : 1.62 us (0.6%)
LB compute : 263.78 us (92.4%)
LB move op cnt : 0
LB apply : 4.25 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.32 us (64.3%)
Info: cfl dt = 0.001594894679573488 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.8120e+05 | 262144 | 1 | 3.356e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.900157736743262 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 316.524421538 (s) [Godunov][rank=0]
Info: dump to _to_trash/ramses_kh/periodic_0012.vtk [VTK Dump][rank=0]
- took 39.54 ms, bandwidth = 1.03 GB/s
amr::Godunov: t = 1.4552083333333334, dt = 0.001594894679573488
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.67 us (2.4%)
patch tree reduce : 1.97 us (0.6%)
gen split merge : 997.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.41 us (0.4%)
LB compute : 299.43 us (93.0%)
LB move op cnt : 0
LB apply : 4.02 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.39 us (65.2%)
Info: cfl dt = 0.001594863225902596 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.6656e+05 | 262144 | 1 | 3.420e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.789686965980966 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4568032280129068, dt = 0.001594863225902596
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.74 us (2.5%)
patch tree reduce : 1.75 us (0.7%)
gen split merge : 864.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.42 us (0.5%)
LB compute : 242.31 us (91.4%)
LB move op cnt : 0
LB apply : 4.18 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.42 us (65.6%)
Info: cfl dt = 0.0015948322735937325 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.3433e+05 | 262144 | 1 | 3.142e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.273666186852182 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4583980912388095, dt = 0.0015948322735937325
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.67 us (2.6%)
patch tree reduce : 1.80 us (0.6%)
gen split merge : 991.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.48 us (0.5%)
LB compute : 275.12 us (92.4%)
LB move op cnt : 0
LB apply : 4.17 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.52 us (66.1%)
Info: cfl dt = 0.0015948022568394885 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2093e+05 | 262144 | 1 | 3.193e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.979789533597977 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4599929235124032, dt = 0.0015948022568394885
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.76 us (2.1%)
patch tree reduce : 1.86 us (0.6%)
gen split merge : 885.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.47 us (0.5%)
LB compute : 294.18 us (92.8%)
LB move op cnt : 0
LB apply : 4.18 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.88 us (65.5%)
Info: cfl dt = 0.0015947733337951413 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3825e+05 | 262144 | 1 | 3.551e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.16862577138275 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4615877257692427, dt = 0.0015947733337951413
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.57 us (2.2%)
patch tree reduce : 1.71 us (0.6%)
gen split merge : 877.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.27 us (0.4%)
LB compute : 274.72 us (92.9%)
LB move op cnt : 0
LB apply : 4.02 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.38 us (62.7%)
Info: cfl dt = 0.0015947454972698458 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2274e+05 | 262144 | 1 | 3.186e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.018835339742687 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4631824991030378, dt = 0.0015947454972698458
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.49 us (2.4%)
patch tree reduce : 1.80 us (0.7%)
gen split merge : 838.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.39 us (0.5%)
LB compute : 249.01 us (91.7%)
LB move op cnt : 0
LB apply : 4.62 us (1.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.63 us (70.0%)
Info: cfl dt = 0.0015947186330669675 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.1683e+05 | 262144 | 1 | 3.209e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.888934861815585 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4647772446003076, dt = 0.0015947186330669675
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.12 us (2.4%)
patch tree reduce : 1.80 us (0.6%)
gen split merge : 1.13 us (0.4%)
split / merge op : 0/0
apply split merge : 1.56 us (0.5%)
LB compute : 278.03 us (92.5%)
LB move op cnt : 0
LB apply : 4.12 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.53 us (66.2%)
Info: cfl dt = 0.0015946925747072492 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.1009e+05 | 262144 | 1 | 3.236e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.741104803848913 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4663719632333745, dt = 0.0015946925747072492
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.80 us (2.2%)
patch tree reduce : 1.79 us (0.6%)
gen split merge : 1.04 us (0.3%)
split / merge op : 0/0
apply split merge : 1.32 us (0.4%)
LB compute : 289.33 us (92.8%)
LB move op cnt : 0
LB apply : 4.55 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.57 us (68.9%)
Info: cfl dt = 0.0015946671507559235 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 6.7663e+05 | 262144 | 1 | 3.874e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.818010741701343 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4679666558080817, dt = 0.0015946671507559235
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.68 us (2.0%)
patch tree reduce : 1.75 us (0.5%)
gen split merge : 860.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.45 us (0.4%)
LB compute : 310.58 us (93.6%)
LB move op cnt : 0
LB apply : 4.25 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.05 us (65.5%)
Info: cfl dt = 0.0015946422183869442 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.1950e+05 | 262144 | 1 | 3.199e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.946572601666443 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4695613229588376, dt = 0.0015946422183869442
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.57 us (2.5%)
patch tree reduce : 1.87 us (0.6%)
gen split merge : 1.18 us (0.4%)
split / merge op : 0/0
apply split merge : 1.53 us (0.5%)
LB compute : 284.69 us (92.6%)
LB move op cnt : 0
LB apply : 4.20 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.58 us (66.8%)
Info: cfl dt = 0.001594617683602119 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.1909e+05 | 262144 | 1 | 3.200e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.937306839728873 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4711559651772246, dt = 0.001594617683602119
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.29 us (2.5%)
patch tree reduce : 1.88 us (0.6%)
gen split merge : 1.15 us (0.4%)
split / merge op : 0/0
apply split merge : 1.34 us (0.5%)
LB compute : 273.20 us (92.3%)
LB move op cnt : 0
LB apply : 4.37 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.45 us (64.1%)
Info: cfl dt = 0.001594593502809023 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.1574e+05 | 262144 | 1 | 3.214e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.863749293222014 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4727505828608267, dt = 0.001594593502809023
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.09 us (2.7%)
patch tree reduce : 1.93 us (0.7%)
gen split merge : 1.06 us (0.4%)
split / merge op : 0/0
apply split merge : 1.31 us (0.5%)
LB compute : 240.05 us (91.7%)
LB move op cnt : 0
LB apply : 3.87 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.87 us (66.4%)
Info: cfl dt = 0.0015945696776763277 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2217e+05 | 262144 | 1 | 3.188e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.004198393943796 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4743451763636357, dt = 0.0015945696776763277
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.99 us (2.2%)
patch tree reduce : 1.61 us (0.5%)
gen split merge : 999.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.23 us (0.4%)
LB compute : 292.89 us (93.2%)
LB move op cnt : 0
LB apply : 4.19 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.58 us (68.2%)
Info: cfl dt = 0.001594546262000383 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.1375e+05 | 262144 | 1 | 3.221e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.81962010471793 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.475939746041312, dt = 0.001594546262000383
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.80 us (2.4%)
patch tree reduce : 1.79 us (0.6%)
gen split merge : 1.01 us (0.4%)
split / merge op : 0/0
apply split merge : 1.42 us (0.5%)
LB compute : 261.26 us (92.2%)
LB move op cnt : 0
LB apply : 4.32 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.46 us (66.1%)
Info: cfl dt = 0.0015945233493087347 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.8404e+05 | 262144 | 1 | 3.343e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.168784899836403 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4775342923033123, dt = 0.0015945233493087347
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.06 us (2.3%)
patch tree reduce : 1.93 us (0.6%)
gen split merge : 1.06 us (0.4%)
split / merge op : 0/0
apply split merge : 1.51 us (0.5%)
LB compute : 278.62 us (92.4%)
LB move op cnt : 0
LB apply : 4.27 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.46 us (65.8%)
Info: cfl dt = 0.0015944988179841305 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2746e+05 | 262144 | 1 | 3.168e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.119275063955254 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.479128815652621, dt = 0.0015944988179841305
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.42 us (2.2%)
patch tree reduce : 1.91 us (0.6%)
gen split merge : 1.06 us (0.4%)
split / merge op : 0/0
apply split merge : 1.26 us (0.4%)
LB compute : 275.17 us (92.8%)
LB move op cnt : 0
LB apply : 4.23 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.47 us (67.1%)
Info: cfl dt = 0.0015944662681038058 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.6077e+05 | 262144 | 1 | 3.446e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.658554540901292 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4807233144706051, dt = 0.0015944662681038058
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.49 us (2.4%)
patch tree reduce : 1.89 us (0.6%)
gen split merge : 976.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.72 us (0.6%)
LB compute : 284.17 us (92.4%)
LB move op cnt : 0
LB apply : 4.19 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.54 us (67.4%)
Info: cfl dt = 0.0015944339563569486 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.0826e+05 | 262144 | 1 | 3.243e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.698145151162787 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.482317780738709, dt = 0.0015944339563569486
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.98 us (2.2%)
patch tree reduce : 1.95 us (0.6%)
gen split merge : 1.02 us (0.3%)
split / merge op : 0/0
apply split merge : 1.31 us (0.4%)
LB compute : 296.47 us (93.0%)
LB move op cnt : 0
LB apply : 4.02 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.44 us (63.7%)
Info: cfl dt = 0.0015944019551024098 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.8918e+05 | 262144 | 1 | 3.322e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.280030427518998 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4839122146950658, dt = 0.0015944019551024098
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.91 us (2.3%)
patch tree reduce : 1.65 us (0.5%)
gen split merge : 1.10 us (0.4%)
split / merge op : 0/0
apply split merge : 1.42 us (0.5%)
LB compute : 282.05 us (92.6%)
LB move op cnt : 0
LB apply : 4.47 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.44 us (66.4%)
Info: cfl dt = 0.0015943703274971133 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2367e+05 | 262144 | 1 | 3.183e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.034980003257427 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4855066166501683, dt = 0.0015943703274971133
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.08 us (2.4%)
patch tree reduce : 1.83 us (0.6%)
gen split merge : 1.02 us (0.3%)
split / merge op : 0/0
apply split merge : 1.39 us (0.5%)
LB compute : 274.82 us (92.3%)
LB move op cnt : 0
LB apply : 4.38 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.55 us (66.3%)
Info: cfl dt = 0.0015943391138626044 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2402e+05 | 262144 | 1 | 3.181e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.042101405880143 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4871009869776655, dt = 0.0015943391138626044
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.38 us (2.2%)
patch tree reduce : 1.80 us (0.5%)
gen split merge : 962.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.67 us (0.5%)
LB compute : 317.28 us (93.3%)
LB move op cnt : 0
LB apply : 4.20 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.45 us (66.8%)
Info: cfl dt = 0.0015943083267917603 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.8169e+05 | 262144 | 1 | 3.354e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.115059440175923 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.488695326091528, dt = 0.0015943083267917603
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.90 us (2.3%)
patch tree reduce : 1.74 us (0.6%)
gen split merge : 1.14 us (0.4%)
split / merge op : 0/0
apply split merge : 1.48 us (0.5%)
LB compute : 276.42 us (92.4%)
LB move op cnt : 0
LB apply : 4.29 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.38 us (64.2%)
Info: cfl dt = 0.0015942779520156326 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2632e+05 | 262144 | 1 | 3.172e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.091912538441896 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4902896344183199, dt = 0.0015942779520156326
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.88 us (2.1%)
patch tree reduce : 1.94 us (0.6%)
gen split merge : 1.11 us (0.3%)
split / merge op : 0/0
apply split merge : 1.43 us (0.4%)
LB compute : 310.93 us (93.3%)
LB move op cnt : 0
LB apply : 4.06 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.48 us (65.1%)
Info: cfl dt = 0.0015942479528685302 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.1717e+05 | 262144 | 1 | 3.208e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.891219332401096 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4918839123703356, dt = 0.0015942479528685302
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.64 us (2.5%)
patch tree reduce : 1.86 us (0.6%)
gen split merge : 974.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.44 us (0.5%)
LB compute : 281.72 us (92.3%)
LB move op cnt : 0
LB apply : 4.41 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.51 us (67.5%)
Info: cfl dt = 0.0015942182748646062 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.8442e+05 | 262144 | 1 | 3.342e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.17379995948012 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4934781603232041, dt = 0.0015942182748646062
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.86 us (2.4%)
patch tree reduce : 1.84 us (0.7%)
gen split merge : 1.02 us (0.4%)
split / merge op : 0/0
apply split merge : 1.55 us (0.5%)
LB compute : 260.64 us (92.0%)
LB move op cnt : 0
LB apply : 4.19 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.38 us (63.7%)
Info: cfl dt = 0.0015941888520156643 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.1083e+05 | 262144 | 1 | 3.233e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.75165928105015 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4950723785980686, dt = 0.0015941888520156643
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.24 us (2.7%)
patch tree reduce : 1.97 us (0.7%)
gen split merge : 1.14 us (0.4%)
split / merge op : 0/0
apply split merge : 1.57 us (0.6%)
LB compute : 246.43 us (91.5%)
LB move op cnt : 0
LB apply : 4.08 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.53 us (66.4%)
Info: cfl dt = 0.0015941596064340587 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.1874e+05 | 262144 | 1 | 3.202e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.924582729802097 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4966665674500843, dt = 0.0015941596064340587
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.83 us (2.6%)
patch tree reduce : 1.63 us (0.6%)
gen split merge : 1.04 us (0.4%)
split / merge op : 0/0
apply split merge : 1.37 us (0.5%)
LB compute : 238.74 us (91.7%)
LB move op cnt : 0
LB apply : 4.03 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.39 us (64.2%)
Info: cfl dt = 0.0015941304508293756 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2244e+05 | 262144 | 1 | 3.187e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.005232305287777 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4982607270565185, dt = 0.0015941304508293756
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.01 us (2.7%)
patch tree reduce : 1.65 us (0.6%)
gen split merge : 1.02 us (0.4%)
split / merge op : 0/0
apply split merge : 1.69 us (0.7%)
LB compute : 233.77 us (91.1%)
LB move op cnt : 0
LB apply : 4.59 us (1.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.79 us (64.6%)
Info: cfl dt = 0.0015941012931219244 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2043e+05 | 262144 | 1 | 3.195e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.96098555273241 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4998548575073478, dt = 0.0015941012931219244
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.41 us (2.1%)
patch tree reduce : 1.80 us (0.6%)
gen split merge : 1.03 us (0.3%)
split / merge op : 0/0
apply split merge : 1.43 us (0.5%)
LB compute : 280.54 us (92.8%)
LB move op cnt : 0
LB apply : 4.37 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.46 us (65.7%)
Info: cfl dt = 0.0015940720425314117 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.1919e+05 | 262144 | 1 | 3.200e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.933481508815852 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5014489588004698, dt = 0.0015940720425314117
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.67 us (2.3%)
patch tree reduce : 1.88 us (0.6%)
gen split merge : 1.01 us (0.3%)
split / merge op : 0/0
apply split merge : 1.53 us (0.5%)
LB compute : 268.87 us (92.6%)
LB move op cnt : 0
LB apply : 4.26 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.90 us (63.3%)
Info: cfl dt = 0.0015940426147407986 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.1589e+05 | 262144 | 1 | 3.213e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.860806154529623 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5030430308430012, dt = 0.0015940426147407986
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.34 us (2.8%)
patch tree reduce : 1.79 us (0.7%)
gen split merge : 1.01 us (0.4%)
split / merge op : 0/0
apply split merge : 1.57 us (0.6%)
LB compute : 242.90 us (91.6%)
LB move op cnt : 0
LB apply : 4.11 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.48 us (65.8%)
Info: cfl dt = 0.0015940129348716043 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.1941e+05 | 262144 | 1 | 3.199e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.937584610407946 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.504637073457742, dt = 0.0015940129348716043
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.52 us (2.0%)
patch tree reduce : 1.74 us (0.5%)
gen split merge : 899.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.81 us (0.5%)
LB compute : 307.97 us (93.4%)
LB move op cnt : 0
LB apply : 4.04 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.49 us (66.1%)
Info: cfl dt = 0.001593982938212931 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.0855e+05 | 262144 | 1 | 3.242e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.69946955270026 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5062310863926136, dt = 0.001593982938212931
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.90 us (2.4%)
patch tree reduce : 1.85 us (0.6%)
gen split merge : 1.24 us (0.4%)
split / merge op : 0/0
apply split merge : 1.50 us (0.5%)
LB compute : 266.02 us (92.1%)
LB move op cnt : 0
LB apply : 4.00 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.41 us (64.3%)
Info: cfl dt = 0.0015939525640558856 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.1716e+05 | 262144 | 1 | 3.208e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.887742477388116 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5078250693308266, dt = 0.0015939525640558856
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.87 us (2.3%)
patch tree reduce : 1.81 us (0.6%)
gen split merge : 943.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.54 us (0.5%)
LB compute : 276.99 us (92.5%)
LB move op cnt : 0
LB apply : 4.35 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.44 us (66.1%)
Info: cfl dt = 0.001593921760136384 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2901e+05 | 262144 | 1 | 3.162e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.14667812474251 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5094190218948824, dt = 0.001593921760136384
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.67 us (2.3%)
patch tree reduce : 1.83 us (0.6%)
gen split merge : 917.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.68 us (0.6%)
LB compute : 262.29 us (92.3%)
LB move op cnt : 0
LB apply : 4.20 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.54 us (66.8%)
Info: cfl dt = 0.0015938904830636994 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.9953e+05 | 262144 | 1 | 3.279e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.500977140077733 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5110129436550188, dt = 0.0015938904830636994
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.63 us (2.3%)
patch tree reduce : 1.88 us (0.6%)
gen split merge : 1.01 us (0.4%)
split / merge op : 0/0
apply split merge : 1.43 us (0.5%)
LB compute : 266.54 us (92.1%)
LB move op cnt : 0
LB apply : 4.65 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.35 us (64.7%)
Info: cfl dt = 0.0015938586957651647 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.0581e+05 | 262144 | 1 | 3.253e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.638211692920496 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5126068341380825, dt = 0.0015938586957651647
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.38 us (2.8%)
patch tree reduce : 1.79 us (0.7%)
gen split merge : 1.06 us (0.4%)
split / merge op : 0/0
apply split merge : 1.54 us (0.6%)
LB compute : 240.88 us (91.3%)
LB move op cnt : 0
LB apply : 4.50 us (1.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.51 us (67.5%)
Info: cfl dt = 0.0015938263641188223 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.1423e+05 | 262144 | 1 | 3.220e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.82213376930964 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5142006928338476, dt = 0.0015938263641188223
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.69 us (2.2%)
patch tree reduce : 1.67 us (0.5%)
gen split merge : 969.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.41 us (0.5%)
LB compute : 282.19 us (92.9%)
LB move op cnt : 0
LB apply : 4.41 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.62 us (66.2%)
Info: cfl dt = 0.0015937934541244184 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.1110e+05 | 262144 | 1 | 3.232e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.75325669422197 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5157945191979665, dt = 0.0015937934541244184
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.34 us (2.3%)
patch tree reduce : 1.69 us (0.6%)
gen split merge : 1.03 us (0.4%)
split / merge op : 0/0
apply split merge : 1.63 us (0.6%)
LB compute : 257.33 us (92.2%)
LB move op cnt : 0
LB apply : 4.15 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.52 us (66.3%)
Info: cfl dt = 0.0015937599303736368 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.1215e+05 | 262144 | 1 | 3.228e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.775928902188305 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5173883126520908, dt = 0.0015937599303736368
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.50 us (2.4%)
patch tree reduce : 1.94 us (0.6%)
gen split merge : 896.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.86 us (0.6%)
LB compute : 294.19 us (92.7%)
LB move op cnt : 0
LB apply : 4.13 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.51 us (65.9%)
Info: cfl dt = 0.0015937257898329762 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.1925e+05 | 262144 | 1 | 3.200e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.93085052488325 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5189820725824645, dt = 0.0015937257898329762
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.31 us (2.4%)
patch tree reduce : 1.71 us (0.6%)
gen split merge : 988.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.87 us (0.6%)
LB compute : 276.82 us (92.5%)
LB move op cnt : 0
LB apply : 3.79 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.45 us (65.2%)
Info: cfl dt = 0.0015936910435340227 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.1520e+05 | 262144 | 1 | 3.216e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.841798634487912 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5205757983722976, dt = 0.0015936910435340227
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.39 us (2.6%)
patch tree reduce : 1.80 us (0.6%)
gen split merge : 865.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.40 us (0.5%)
LB compute : 258.77 us (92.0%)
LB move op cnt : 0
LB apply : 4.45 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.44 us (64.4%)
Info: cfl dt = 0.001593655636733416 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2680e+05 | 262144 | 1 | 3.171e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.09529306628851 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5221694894158317, dt = 0.001593655636733416
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.61 us (2.5%)
patch tree reduce : 1.83 us (0.7%)
gen split merge : 1.12 us (0.4%)
split / merge op : 0/0
apply split merge : 1.42 us (0.5%)
LB compute : 243.05 us (91.7%)
LB move op cnt : 0
LB apply : 4.13 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.38 us (64.5%)
Info: cfl dt = 0.0015936194964937176 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.1797e+05 | 262144 | 1 | 3.205e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.901651481028672 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5237631450525653, dt = 0.0015936194964937176
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.69 us (2.9%)
patch tree reduce : 1.81 us (0.7%)
gen split merge : 1.04 us (0.4%)
split / merge op : 0/0
apply split merge : 1.49 us (0.6%)
LB compute : 241.95 us (91.3%)
LB move op cnt : 0
LB apply : 4.21 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.50 us (67.1%)
Info: cfl dt = 0.0015935825462048588 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.1492e+05 | 262144 | 1 | 3.217e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.83461391853753 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5253567645490589, dt = 0.0015935825462048588
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.42 us (2.5%)
patch tree reduce : 1.74 us (0.6%)
gen split merge : 1.03 us (0.3%)
split / merge op : 0/0
apply split merge : 1.39 us (0.5%)
LB compute : 277.69 us (92.5%)
LB move op cnt : 0
LB apply : 4.47 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.42 us (64.8%)
Info: cfl dt = 0.0015935447174811406 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.1508e+05 | 262144 | 1 | 3.216e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.837700569602756 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5269503470952637, dt = 0.0015935447174811406
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.11 us (2.7%)
patch tree reduce : 1.94 us (0.7%)
gen split merge : 1.01 us (0.4%)
split / merge op : 0/0
apply split merge : 1.43 us (0.5%)
LB compute : 243.36 us (91.5%)
LB move op cnt : 0
LB apply : 4.41 us (1.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.62 us (68.9%)
Info: cfl dt = 0.0015935059571496838 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.3517e+05 | 262144 | 1 | 3.139e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.276787760104483 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5285438918127447, dt = 0.0015935059571496838
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.15 us (2.4%)
patch tree reduce : 1.72 us (0.6%)
gen split merge : 939.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.43 us (0.5%)
LB compute : 282.24 us (92.9%)
LB move op cnt : 0
LB apply : 3.77 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.51 us (66.1%)
Info: cfl dt = 0.0015934662295274092 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.3285e+05 | 262144 | 1 | 3.148e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.22561427181328 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5301373977698944, dt = 0.0015934662295274092
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.95 us (2.1%)
patch tree reduce : 1.86 us (0.6%)
gen split merge : 1.04 us (0.3%)
split / merge op : 0/0
apply split merge : 1.49 us (0.5%)
LB compute : 308.68 us (93.2%)
LB move op cnt : 0
LB apply : 4.52 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.36 us (63.7%)
Info: cfl dt = 0.001593425514978418 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2087e+05 | 262144 | 1 | 3.193e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.963148662489804 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5317308639994218, dt = 0.001593425514978418
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.66 us (2.2%)
patch tree reduce : 1.82 us (0.6%)
gen split merge : 1.03 us (0.3%)
split / merge op : 0/0
apply split merge : 1.61 us (0.5%)
LB compute : 281.65 us (92.7%)
LB move op cnt : 0
LB apply : 4.35 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.47 us (65.0%)
Info: cfl dt = 0.0015933838059443558 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.7542e+05 | 262144 | 1 | 3.381e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.968073839348634 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5333242895144001, dt = 0.0015933838059443558
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.56 us (2.2%)
patch tree reduce : 2.11 us (0.7%)
gen split merge : 1.25 us (0.4%)
split / merge op : 0/0
apply split merge : 1.41 us (0.5%)
LB compute : 271.56 us (92.4%)
LB move op cnt : 0
LB apply : 4.32 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.41 us (65.5%)
Info: cfl dt = 0.0015933411021386479 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.1156e+05 | 262144 | 1 | 3.684e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.570188817275355 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5349176733203445, dt = 0.0015933411021386479
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.08 us (2.5%)
patch tree reduce : 1.89 us (0.7%)
gen split merge : 951.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.57 us (0.6%)
LB compute : 259.12 us (91.8%)
LB move op cnt : 0
LB apply : 4.32 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.49 us (65.7%)
Info: cfl dt = 0.0015932974064978222 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.3943e+05 | 262144 | 1 | 3.123e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.36765319012905 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5365110144224832, dt = 0.0015932974064978222
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.57 us (2.2%)
patch tree reduce : 1.84 us (0.6%)
gen split merge : 1.05 us (0.4%)
split / merge op : 0/0
apply split merge : 1.52 us (0.5%)
LB compute : 274.51 us (92.6%)
LB move op cnt : 0
LB apply : 4.41 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.44 us (66.3%)
Info: cfl dt = 0.0015932527229285513 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2882e+05 | 262144 | 1 | 3.163e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.135006499273683 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.538104311828981, dt = 0.0015932527229285513
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.02 us (2.5%)
patch tree reduce : 2.03 us (0.7%)
gen split merge : 1.03 us (0.4%)
split / merge op : 0/0
apply split merge : 1.24 us (0.4%)
LB compute : 254.29 us (91.9%)
LB move op cnt : 0
LB apply : 4.25 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.40 us (65.6%)
Info: cfl dt = 0.0015932070556863693 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.9418e+05 | 262144 | 1 | 3.301e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.376601753755562 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5396975645519095, dt = 0.0015932070556863693
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.77 us (2.4%)
patch tree reduce : 1.93 us (0.7%)
gen split merge : 980.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.48 us (0.5%)
LB compute : 259.45 us (92.2%)
LB move op cnt : 0
LB apply : 3.97 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.42 us (64.4%)
Info: cfl dt = 0.0015931604104602935 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2046e+05 | 262144 | 1 | 3.195e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.951246005107656 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5412907716075959, dt = 0.0015931604104602935
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.62 us (2.3%)
patch tree reduce : 1.96 us (0.7%)
gen split merge : 1.01 us (0.4%)
split / merge op : 0/0
apply split merge : 1.48 us (0.5%)
LB compute : 261.07 us (92.3%)
LB move op cnt : 0
LB apply : 4.19 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.71 us (69.7%)
Info: cfl dt = 0.00159311279611975 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2393e+05 | 262144 | 1 | 3.182e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.026640368897834 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.542883932018056, dt = 0.00159311279611975
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.32 us (2.3%)
patch tree reduce : 1.70 us (0.6%)
gen split merge : 1.02 us (0.4%)
split / merge op : 0/0
apply split merge : 1.48 us (0.5%)
LB compute : 255.49 us (92.1%)
LB move op cnt : 0
LB apply : 4.91 us (1.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.33 us (62.8%)
Info: cfl dt = 0.0015930642259050715 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.1827e+05 | 262144 | 1 | 3.204e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.902266513852148 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5444770448141758, dt = 0.0015930642259050715
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.15 us (2.4%)
patch tree reduce : 2.00 us (0.7%)
gen split merge : 1.00 us (0.3%)
split / merge op : 0/0
apply split merge : 1.53 us (0.5%)
LB compute : 278.55 us (92.5%)
LB move op cnt : 0
LB apply : 4.17 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.48 us (66.7%)
Info: cfl dt = 0.0015930147174948567 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.1887e+05 | 262144 | 1 | 3.201e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.91470532924834 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5460701090400808, dt = 0.0015930147174948567
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.00 us (2.7%)
patch tree reduce : 1.61 us (0.6%)
gen split merge : 918.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.45 us (0.6%)
LB compute : 237.25 us (91.6%)
LB move op cnt : 0
LB apply : 4.19 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.41 us (65.0%)
Info: cfl dt = 0.0015929642923424114 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2493e+05 | 262144 | 1 | 3.178e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.04667335830391 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5476631237575758, dt = 0.0015929642923424114
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.93 us (2.6%)
patch tree reduce : 1.97 us (0.7%)
gen split merge : 932.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.22 us (0.5%)
LB compute : 248.78 us (91.9%)
LB move op cnt : 0
LB apply : 3.97 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.97 us (66.0%)
Info: cfl dt = 0.0015929129749010188 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.1197e+05 | 262144 | 1 | 3.228e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.762707129313686 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5492560880499182, dt = 0.0015929129749010188
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.80 us (2.2%)
patch tree reduce : 1.66 us (0.5%)
gen split merge : 1.00 us (0.3%)
split / merge op : 0/0
apply split merge : 1.41 us (0.5%)
LB compute : 290.63 us (92.9%)
LB move op cnt : 0
LB apply : 4.44 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.57 us (67.1%)
Info: cfl dt = 0.0015928607920823153 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2002e+05 | 262144 | 1 | 3.197e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.938242956912937 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5508490010248193, dt = 0.0015928607920823153
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.19 us (2.2%)
patch tree reduce : 1.82 us (0.6%)
gen split merge : 930.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.49 us (0.4%)
LB compute : 307.58 us (93.0%)
LB move op cnt : 0
LB apply : 4.20 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.53 us (66.1%)
Info: cfl dt = 0.0015928077733925146 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.5236e+05 | 262144 | 1 | 3.076e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.644938334727062 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5524418618169016, dt = 0.0015928077733925146
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.30 us (2.8%)
patch tree reduce : 1.60 us (0.6%)
gen split merge : 900.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.44 us (0.5%)
LB compute : 241.70 us (91.5%)
LB move op cnt : 0
LB apply : 4.61 us (1.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.44 us (64.5%)
Info: cfl dt = 0.0015927539506330663 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.1221e+05 | 262144 | 1 | 3.228e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.766208174455983 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.554034669590294, dt = 0.0015927539506330663
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.24 us (2.7%)
patch tree reduce : 1.96 us (0.7%)
gen split merge : 1.03 us (0.4%)
split / merge op : 0/0
apply split merge : 1.39 us (0.5%)
LB compute : 246.41 us (91.7%)
LB move op cnt : 0
LB apply : 4.00 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.64 us (68.1%)
Info: cfl dt = 0.001592699358407336 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2873e+05 | 262144 | 1 | 3.163e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.12703312079487 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.555627423540927, dt = 0.001592699358407336
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.69 us (3.0%)
patch tree reduce : 1.94 us (0.8%)
gen split merge : 855.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.12 us (0.4%)
LB compute : 232.22 us (91.1%)
LB move op cnt : 0
LB apply : 4.32 us (1.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.57 us (68.5%)
Info: cfl dt = 0.0015926440393029268 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.1033e+05 | 262144 | 1 | 3.235e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.72387903979799 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5572201228993345, dt = 0.0015926440393029268
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.81 us (2.2%)
patch tree reduce : 1.72 us (0.6%)
gen split merge : 911.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.67 us (0.5%)
LB compute : 289.81 us (92.9%)
LB move op cnt : 0
LB apply : 3.98 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.36 us (64.7%)
Info: cfl dt = 0.0015925880433467871 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.1732e+05 | 262144 | 1 | 3.207e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.876136305987234 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5588127669386376, dt = 0.0015925880433467871
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.85 us (2.3%)
patch tree reduce : 1.71 us (0.6%)
gen split merge : 1.00 us (0.3%)
split / merge op : 0/0
apply split merge : 1.28 us (0.4%)
LB compute : 270.47 us (92.6%)
LB move op cnt : 0
LB apply : 3.90 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.72 us (69.2%)
Info: cfl dt = 0.0015925314258052657 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.9911e+05 | 262144 | 1 | 3.280e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.4772002241751 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5604053549819843, dt = 0.0015925314258052657
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.61 us (2.9%)
patch tree reduce : 1.89 us (0.7%)
gen split merge : 1.00 us (0.4%)
split / merge op : 0/0
apply split merge : 1.46 us (0.6%)
LB compute : 235.37 us (91.0%)
LB move op cnt : 0
LB apply : 4.64 us (1.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.45 us (66.7%)
Info: cfl dt = 0.0015924742472393622 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.1614e+05 | 262144 | 1 | 3.212e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.848947153940376 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5619978864077895, dt = 0.0015924742472393622
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.60 us (2.4%)
patch tree reduce : 1.91 us (0.6%)
gen split merge : 1.05 us (0.3%)
split / merge op : 0/0
apply split merge : 1.46 us (0.5%)
LB compute : 294.11 us (92.8%)
LB move op cnt : 0
LB apply : 4.15 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.65 us (69.5%)
Info: cfl dt = 0.0015924165729947048 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.1444e+05 | 262144 | 1 | 3.219e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.811291844658566 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5635903606550288, dt = 0.0015924165729947048
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.36 us (2.7%)
patch tree reduce : 1.71 us (0.6%)
gen split merge : 1.04 us (0.4%)
split / merge op : 0/0
apply split merge : 1.36 us (0.5%)
LB compute : 250.93 us (91.7%)
LB move op cnt : 0
LB apply : 4.26 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.55 us (68.1%)
Info: cfl dt = 0.001592358471339297 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2134e+05 | 262144 | 1 | 3.192e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.96153197386124 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5651827772280236, dt = 0.001592358471339297
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.59 us (2.2%)
patch tree reduce : 1.65 us (0.6%)
gen split merge : 1.13 us (0.4%)
split / merge op : 0/0
apply split merge : 1.48 us (0.5%)
LB compute : 273.82 us (92.7%)
LB move op cnt : 0
LB apply : 4.00 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.42 us (65.4%)
Info: cfl dt = 0.0015923000107649673 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.1872e+05 | 262144 | 1 | 3.202e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.90351851373194 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5667751356993629, dt = 0.0015923000107649673
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.99 us (2.3%)
patch tree reduce : 1.96 us (0.7%)
gen split merge : 1.00 us (0.3%)
split / merge op : 0/0
apply split merge : 1.54 us (0.5%)
LB compute : 277.08 us (92.5%)
LB move op cnt : 0
LB apply : 4.30 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.71 us (68.4%)
Info: cfl dt = 0.0015922412571130564 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.3662e+05 | 262144 | 1 | 3.133e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.29422947847127 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5683674357101278, dt = 0.0015922412571130564
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.61 us (2.4%)
patch tree reduce : 1.93 us (0.7%)
gen split merge : 1.06 us (0.4%)
split / merge op : 0/0
apply split merge : 1.37 us (0.5%)
LB compute : 253.34 us (92.0%)
LB move op cnt : 0
LB apply : 4.26 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.52 us (67.6%)
Info: cfl dt = 0.0015921822709948025 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.1816e+05 | 262144 | 1 | 3.204e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.889879667831483 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5699596769672408, dt = 0.0015921822709948025
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.67 us (2.3%)
patch tree reduce : 1.74 us (0.6%)
gen split merge : 1.05 us (0.4%)
split / merge op : 0/0
apply split merge : 1.47 us (0.5%)
LB compute : 262.26 us (92.3%)
LB move op cnt : 0
LB apply : 4.40 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.55 us (66.9%)
Info: cfl dt = 0.0015921231059621544 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.1988e+05 | 262144 | 1 | 3.197e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.92691571526746 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5715518592382356, dt = 0.0015921231059621544
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.33 us (2.8%)
patch tree reduce : 1.66 us (0.6%)
gen split merge : 966.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.62 us (0.6%)
LB compute : 241.69 us (91.5%)
LB move op cnt : 0
LB apply : 4.11 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.38 us (65.5%)
Info: cfl dt = 0.0015920638077376746 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 6.1457e+05 | 262144 | 1 | 4.265e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.437355524404781 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5731439823441977, dt = 0.0015920638077376746
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.59 us (2.1%)
patch tree reduce : 1.71 us (0.6%)
gen split merge : 723.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.50 us (0.5%)
LB compute : 286.78 us (93.1%)
LB move op cnt : 0
LB apply : 3.92 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.55 us (68.0%)
Info: cfl dt = 0.0015920044140318014 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.1900e+05 | 262144 | 1 | 3.201e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.90637604447488 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5747360461519353, dt = 0.0015920044140318014
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.76 us (2.3%)
patch tree reduce : 1.91 us (0.6%)
gen split merge : 1.06 us (0.4%)
split / merge op : 0/0
apply split merge : 1.52 us (0.5%)
LB compute : 277.56 us (92.6%)
LB move op cnt : 0
LB apply : 4.15 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.46 us (66.8%)
Info: cfl dt = 0.0015919449547474058 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.9572e+05 | 262144 | 1 | 3.294e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.396695833869533 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5763280505659671, dt = 0.0015919449547474058
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.44 us (2.5%)
patch tree reduce : 1.67 us (0.6%)
gen split merge : 901.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.39 us (0.5%)
LB compute : 276.19 us (92.3%)
LB move op cnt : 0
LB apply : 4.76 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.56 us (65.0%)
Info: cfl dt = 0.0015918854525264268 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.6804e+05 | 262144 | 1 | 3.413e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.790909110831265 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5779199955207146, dt = 0.0015918854525264268
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.45 us (2.5%)
patch tree reduce : 1.70 us (0.6%)
gen split merge : 1.06 us (0.4%)
split / merge op : 0/0
apply split merge : 1.24 us (0.4%)
LB compute : 275.69 us (92.5%)
LB move op cnt : 0
LB apply : 3.97 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.90 us (65.8%)
Info: cfl dt = 0.0015918259237131622 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 6.9187e+05 | 262144 | 1 | 3.789e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.125064583054415 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5795118809732411, dt = 0.0015918259237131622
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.97 us (2.0%)
patch tree reduce : 1.72 us (0.5%)
gen split merge : 957.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.53 us (0.4%)
LB compute : 321.87 us (93.6%)
LB move op cnt : 0
LB apply : 4.26 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.52 us (67.7%)
Info: cfl dt = 0.001591766379735805 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 6.9609e+05 | 262144 | 1 | 3.766e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.216886680880323 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5811037068969542, dt = 0.001591766379735805
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.86 us (2.3%)
patch tree reduce : 1.70 us (0.6%)
gen split merge : 956.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.65 us (0.6%)
LB compute : 271.17 us (92.4%)
LB move op cnt : 0
LB apply : 4.35 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.95 us (63.6%)
Info: cfl dt = 0.0015917068287792584 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.0216e+05 | 262144 | 1 | 3.268e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.534860054308876 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.58269547327669, dt = 0.0015917068287792584
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.98 us (2.2%)
patch tree reduce : 1.88 us (0.6%)
gen split merge : 1.06 us (0.3%)
split / merge op : 0/0
apply split merge : 1.48 us (0.5%)
LB compute : 289.89 us (92.9%)
LB move op cnt : 0
LB apply : 4.23 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.52 us (66.3%)
Info: cfl dt = 0.0015916472775084412 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2680e+05 | 262144 | 1 | 3.171e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.072722369634715 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5842871801054692, dt = 0.0015916472775084412
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.96 us (2.5%)
patch tree reduce : 1.66 us (0.6%)
gen split merge : 1.01 us (0.4%)
split / merge op : 0/0
apply split merge : 1.63 us (0.6%)
LB compute : 251.70 us (91.8%)
LB move op cnt : 0
LB apply : 4.54 us (1.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.43 us (65.1%)
Info: cfl dt = 0.001591587732813977 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2398e+05 | 262144 | 1 | 3.181e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.010447554230915 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5858788273829776, dt = 0.001591587732813977
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.91 us (2.7%)
patch tree reduce : 1.78 us (0.7%)
gen split merge : 929.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.51 us (0.6%)
LB compute : 235.88 us (91.4%)
LB move op cnt : 0
LB apply : 4.40 us (1.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.69 us (69.7%)
Info: cfl dt = 0.0015915282082583494 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.3968e+05 | 262144 | 1 | 3.122e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.353006270076854 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5874704151157915, dt = 2.958488420845562e-05
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.53 us (2.4%)
patch tree reduce : 1.80 us (0.7%)
gen split merge : 998.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.48 us (0.5%)
LB compute : 249.57 us (92.0%)
LB move op cnt : 0
LB apply : 4.26 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.56 us (68.7%)
Info: cfl dt = 0.0015915268568731417 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.5881e+05 | 262144 | 1 | 3.052e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.3489230287038431 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 344.42775018400005 (s) [Godunov][rank=0]
Info: dump to _to_trash/ramses_kh/periodic_0013.vtk [VTK Dump][rank=0]
- took 39.35 ms, bandwidth = 1.04 GB/s
amr::Godunov: t = 1.5875, dt = 0.0015915268568731417
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.41 us (2.3%)
patch tree reduce : 1.85 us (0.6%)
gen split merge : 938.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.35 us (0.4%)
LB compute : 292.59 us (92.8%)
LB move op cnt : 0
LB apply : 4.46 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.71 us (68.2%)
Info: cfl dt = 0.0015914671761291658 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 6.9204e+05 | 262144 | 1 | 3.788e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.125436069566058 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.589091526856873, dt = 0.0015914671761291658
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.58 us (1.9%)
patch tree reduce : 1.75 us (0.5%)
gen split merge : 1.12 us (0.3%)
split / merge op : 0/0
apply split merge : 1.44 us (0.4%)
LB compute : 320.66 us (93.5%)
LB move op cnt : 0
LB apply : 4.51 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.90 us (65.3%)
Info: cfl dt = 0.001591407681628507 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3834e+05 | 262144 | 1 | 3.550e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.136868552118592 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5906829940330023, dt = 0.001591407681628507
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.67 us (1.9%)
patch tree reduce : 1.66 us (0.5%)
gen split merge : 976.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.59 us (0.5%)
LB compute : 322.52 us (93.7%)
LB move op cnt : 0
LB apply : 4.04 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.58 us (68.3%)
Info: cfl dt = 0.001591348311316017 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2103e+05 | 262144 | 1 | 3.193e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.943251461560248 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5922744017146309, dt = 0.001591348311316017
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.99 us (2.4%)
patch tree reduce : 1.85 us (0.6%)
gen split merge : 1.10 us (0.4%)
split / merge op : 0/0
apply split merge : 1.62 us (0.5%)
LB compute : 273.91 us (92.4%)
LB move op cnt : 0
LB apply : 4.18 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.35 us (63.3%)
Info: cfl dt = 0.0015912890731586962 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2274e+05 | 262144 | 1 | 3.186e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.98002508799283 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5938657500259468, dt = 0.0015912890731586962
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.99 us (2.3%)
patch tree reduce : 1.78 us (0.6%)
gen split merge : 988.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.37 us (0.5%)
LB compute : 281.46 us (92.8%)
LB move op cnt : 0
LB apply : 4.16 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.42 us (62.6%)
Info: cfl dt = 0.001591229978032674 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.3166e+05 | 262144 | 1 | 3.152e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.174190621805746 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5954570390991054, dt = 0.001591229978032674
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.43 us (2.1%)
patch tree reduce : 1.89 us (0.6%)
gen split merge : 936.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.37 us (0.5%)
LB compute : 281.50 us (92.9%)
LB move op cnt : 0
LB apply : 4.22 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.52 us (66.2%)
Info: cfl dt = 0.0015911710421292037 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.5070e+05 | 262144 | 1 | 3.082e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.589724993734308 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5970482690771381, dt = 0.0015911710421292037
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.74 us (2.5%)
patch tree reduce : 1.99 us (0.7%)
gen split merge : 1.04 us (0.4%)
split / merge op : 0/0
apply split merge : 1.52 us (0.6%)
LB compute : 248.24 us (92.0%)
LB move op cnt : 0
LB apply : 3.90 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.45 us (64.4%)
Info: cfl dt = 0.0015911122806988311 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.1401e+05 | 262144 | 1 | 3.671e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.602131242938762 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5986394401192674, dt = 0.0015911122806988311
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.62 us (2.6%)
patch tree reduce : 1.87 us (0.7%)
gen split merge : 937.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.42 us (0.6%)
LB compute : 230.32 us (91.3%)
LB move op cnt : 0
LB apply : 4.31 us (1.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.88 us (65.4%)
Info: cfl dt = 0.0015910537040566418 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.3087e+05 | 262144 | 1 | 3.155e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.154964228267623 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6002305523999663, dt = 0.0015910537040566418
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.93 us (2.3%)
patch tree reduce : 1.67 us (0.6%)
gen split merge : 722.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.67 us (0.6%)
LB compute : 278.94 us (92.6%)
LB move op cnt : 0
LB apply : 4.53 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.45 us (64.4%)
Info: cfl dt = 0.0015909953168694877 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3496e+05 | 262144 | 1 | 3.567e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.058663265714312 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.601821606104023, dt = 0.0015909953168694877
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.58 us (2.1%)
patch tree reduce : 1.68 us (0.5%)
gen split merge : 896.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.53 us (0.5%)
LB compute : 295.27 us (93.2%)
LB move op cnt : 0
LB apply : 4.08 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.42 us (63.8%)
Info: cfl dt = 0.0015909371202782018 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.6173e+05 | 262144 | 1 | 3.441e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.643051671481384 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6034126014208925, dt = 0.0015909371202782018
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.55 us (1.9%)
patch tree reduce : 1.80 us (0.5%)
gen split merge : 1.26 us (0.4%)
split / merge op : 0/0
apply split merge : 1.35 us (0.4%)
LB compute : 323.46 us (93.6%)
LB move op cnt : 0
LB apply : 4.20 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.57 us (67.0%)
Info: cfl dt = 0.0015908791155161534 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 6.9109e+05 | 262144 | 1 | 3.793e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.099146473281774 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6050035385411707, dt = 0.0015908791155161534
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.55 us (2.0%)
patch tree reduce : 1.87 us (0.6%)
gen split merge : 1.04 us (0.3%)
split / merge op : 0/0
apply split merge : 1.38 us (0.4%)
LB compute : 300.39 us (93.3%)
LB move op cnt : 0
LB apply : 3.93 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.37 us (64.2%)
Info: cfl dt = 0.0015908213075947343 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2651e+05 | 262144 | 1 | 3.172e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.05705652474852 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6065944176566869, dt = 0.0015908213075947343
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.53 us (2.4%)
patch tree reduce : 1.62 us (0.6%)
gen split merge : 1.22 us (0.4%)
split / merge op : 0/0
apply split merge : 1.35 us (0.5%)
LB compute : 255.29 us (92.1%)
LB move op cnt : 0
LB apply : 4.16 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.47 us (65.9%)
Info: cfl dt = 0.0015907637080012852 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2108e+05 | 262144 | 1 | 3.193e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.937835572014926 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6081852389642817, dt = 0.0015907637080012852
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.36 us (2.5%)
patch tree reduce : 1.82 us (0.7%)
gen split merge : 762.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.32 us (0.5%)
LB compute : 236.97 us (91.7%)
LB move op cnt : 0
LB apply : 4.57 us (1.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.76 us (63.8%)
Info: cfl dt = 0.0015907063358996825 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.1473e+05 | 262144 | 1 | 3.218e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.798401959897205 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.609776002672283, dt = 0.0015907063358996825
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.74 us (2.5%)
patch tree reduce : 1.82 us (0.7%)
gen split merge : 994.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.53 us (0.6%)
LB compute : 247.40 us (91.4%)
LB move op cnt : 0
LB apply : 4.36 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.52 us (67.6%)
Info: cfl dt = 0.0015906492177947705 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2552e+05 | 262144 | 1 | 3.175e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.03355655351081 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6113667090081827, dt = 0.0015906492177947705
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.99 us (2.6%)
patch tree reduce : 1.81 us (0.7%)
gen split merge : 904.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.44 us (0.5%)
LB compute : 242.53 us (91.7%)
LB move op cnt : 0
LB apply : 4.36 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.42 us (65.5%)
Info: cfl dt = 0.001590592385958255 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.1124e+05 | 262144 | 1 | 3.231e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.720968475480284 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6129573582259775, dt = 0.001590592385958255
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.98 us (2.7%)
patch tree reduce : 1.81 us (0.7%)
gen split merge : 938.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.78 us (0.7%)
LB compute : 240.54 us (91.6%)
LB move op cnt : 0
LB apply : 3.95 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.81 us (66.0%)
Info: cfl dt = 0.0015905358760676415 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2413e+05 | 262144 | 1 | 3.181e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.001747227644117 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6145479506119358, dt = 0.0015905358760676415
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.24 us (2.7%)
patch tree reduce : 1.68 us (0.6%)
gen split merge : 944.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.30 us (0.5%)
LB compute : 246.25 us (91.6%)
LB move op cnt : 0
LB apply : 4.35 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.40 us (62.8%)
Info: cfl dt = 0.001590479724650708 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.1975e+05 | 262144 | 1 | 3.198e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.905618647336823 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6161384864880035, dt = 0.001590479724650708
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.97 us (2.5%)
patch tree reduce : 2.00 us (0.7%)
gen split merge : 985.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.66 us (0.6%)
LB compute : 260.11 us (92.0%)
LB move op cnt : 0
LB apply : 4.50 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.47 us (65.8%)
Info: cfl dt = 0.001590423966663734 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.3037e+05 | 262144 | 1 | 3.157e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.13684787829339 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6177289662126542, dt = 0.001590423966663734
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.62 us (2.9%)
patch tree reduce : 2.02 us (0.8%)
gen split merge : 939.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.35 us (0.5%)
LB compute : 238.57 us (91.2%)
LB move op cnt : 0
LB apply : 4.56 us (1.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.33 us (63.2%)
Info: cfl dt = 0.0015903686347135443 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 6.7704e+05 | 262144 | 1 | 3.872e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.787409131721962 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.619319390179318, dt = 0.0015903686347135443
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.87 us (2.3%)
patch tree reduce : 1.87 us (0.6%)
gen split merge : 953.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.54 us (0.5%)
LB compute : 274.58 us (92.6%)
LB move op cnt : 0
LB apply : 4.06 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.39 us (63.9%)
Info: cfl dt = 0.0015903137557810444 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 6.9899e+05 | 262144 | 1 | 3.750e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.266240855677536 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6209097588140315, dt = 0.0015903137557810444
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.40 us (2.3%)
patch tree reduce : 1.87 us (0.7%)
gen split merge : 1.22 us (0.4%)
split / merge op : 0/0
apply split merge : 1.41 us (0.5%)
LB compute : 257.99 us (92.0%)
LB move op cnt : 0
LB apply : 4.34 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.92 us (65.9%)
Info: cfl dt = 0.0015902593499170926 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.6620e+05 | 262144 | 1 | 3.421e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.733609882677865 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6225000725698127, dt = 0.0015902593499170926
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.68 us (2.3%)
patch tree reduce : 1.93 us (0.7%)
gen split merge : 1.03 us (0.4%)
split / merge op : 0/0
apply split merge : 1.39 us (0.5%)
LB compute : 266.98 us (92.5%)
LB move op cnt : 0
LB apply : 4.39 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.56 us (68.5%)
Info: cfl dt = 0.0015902054314758324 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.5986e+05 | 262144 | 1 | 3.450e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.594449807602103 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6240903319197297, dt = 0.0015902054314758324
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.57 us (2.5%)
patch tree reduce : 1.95 us (0.7%)
gen split merge : 911.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.42 us (0.5%)
LB compute : 239.52 us (91.6%)
LB move op cnt : 0
LB apply : 4.33 us (1.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.45 us (65.2%)
Info: cfl dt = 0.0015901520100239084 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2278e+05 | 262144 | 1 | 3.186e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.96794262506484 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6256805373512055, dt = 0.0015901520100239084
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.38 us (2.5%)
patch tree reduce : 1.89 us (0.7%)
gen split merge : 1.03 us (0.4%)
split / merge op : 0/0
apply split merge : 1.35 us (0.5%)
LB compute : 237.39 us (91.8%)
LB move op cnt : 0
LB apply : 3.89 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.43 us (65.1%)
Info: cfl dt = 0.0015900990913423343 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2062e+05 | 262144 | 1 | 3.194e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.92018038451569 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6272706893612294, dt = 0.0015900990913423343
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.02 us (2.7%)
patch tree reduce : 1.82 us (0.7%)
gen split merge : 1.02 us (0.4%)
split / merge op : 0/0
apply split merge : 1.42 us (0.5%)
LB compute : 238.37 us (91.2%)
LB move op cnt : 0
LB apply : 4.62 us (1.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.41 us (65.0%)
Info: cfl dt = 0.001590046678478888 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.5375e+05 | 262144 | 1 | 3.070e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.643135686937043 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6288607884525719, dt = 0.001590046678478888
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.79 us (2.2%)
patch tree reduce : 1.69 us (0.5%)
gen split merge : 833.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.48 us (0.5%)
LB compute : 285.65 us (92.9%)
LB move op cnt : 0
LB apply : 4.25 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.55 us (65.7%)
Info: cfl dt = 0.001589994772302053 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2053e+05 | 262144 | 1 | 3.195e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.917087152166378 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6304508351310507, dt = 0.001589994772302053
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.11 us (2.8%)
patch tree reduce : 1.72 us (0.7%)
gen split merge : 941.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.61 us (0.6%)
LB compute : 234.59 us (91.2%)
LB move op cnt : 0
LB apply : 4.41 us (1.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.32 us (63.5%)
Info: cfl dt = 0.0015899433722952098 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.9388e+05 | 262144 | 1 | 3.302e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.334475115780656 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6320408299033529, dt = 0.0015899433722952098
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.34 us (2.5%)
patch tree reduce : 1.68 us (0.7%)
gen split merge : 1.10 us (0.4%)
split / merge op : 0/0
apply split merge : 1.42 us (0.6%)
LB compute : 233.08 us (91.5%)
LB move op cnt : 0
LB apply : 4.37 us (1.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.34 us (65.3%)
Info: cfl dt = 0.0015898925694677617 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3502e+05 | 262144 | 1 | 3.566e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.04891559641347 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.633630773275648, dt = 0.0015898925694677617
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.93 us (2.7%)
patch tree reduce : 1.86 us (0.7%)
gen split merge : 1.09 us (0.4%)
split / merge op : 0/0
apply split merge : 1.34 us (0.5%)
LB compute : 237.56 us (91.4%)
LB move op cnt : 0
LB apply : 4.35 us (1.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.51 us (65.4%)
Info: cfl dt = 0.0015898423063823387 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.9093e+05 | 262144 | 1 | 3.314e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.269138953039793 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6352206658451158, dt = 0.0015898423063823387
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.57 us (2.5%)
patch tree reduce : 1.89 us (0.6%)
gen split merge : 1.16 us (0.4%)
split / merge op : 0/0
apply split merge : 1.42 us (0.5%)
LB compute : 276.05 us (92.2%)
LB move op cnt : 0
LB apply : 4.61 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.44 us (64.6%)
Info: cfl dt = 0.001589792548670384 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2314e+05 | 262144 | 1 | 3.185e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.971749579500262 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.636810508151498, dt = 0.001589792548670384
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.55 us (2.9%)
patch tree reduce : 1.75 us (0.7%)
gen split merge : 950.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.66 us (0.6%)
LB compute : 234.21 us (91.3%)
LB move op cnt : 0
LB apply : 4.06 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.38 us (65.1%)
Info: cfl dt = 0.0015897432723103353 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.6850e+05 | 262144 | 1 | 3.411e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.77825552662116 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6384003007001684, dt = 0.0015897432723103353
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.78 us (2.4%)
patch tree reduce : 1.70 us (0.6%)
gen split merge : 998.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.30 us (0.4%)
LB compute : 266.45 us (92.4%)
LB move op cnt : 0
LB apply : 4.04 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.38 us (63.9%)
Info: cfl dt = 0.0015896944572158264 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.7179e+05 | 262144 | 1 | 3.397e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.84949365768404 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6399900439724788, dt = 0.0015896944572158264
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.05 us (2.8%)
patch tree reduce : 1.85 us (0.7%)
gen split merge : 1.03 us (0.4%)
split / merge op : 0/0
apply split merge : 1.49 us (0.6%)
LB compute : 232.71 us (91.0%)
LB move op cnt : 0
LB apply : 4.74 us (1.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.39 us (64.2%)
Info: cfl dt = 0.0015896461547985317 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.0888e+05 | 262144 | 1 | 3.241e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.658829406692973 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6415797384296946, dt = 0.0015896461547985317
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.20 us (2.2%)
patch tree reduce : 1.73 us (0.6%)
gen split merge : 795.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.11 us (0.4%)
LB compute : 262.39 us (92.9%)
LB move op cnt : 0
LB apply : 3.98 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.02 us (66.6%)
Info: cfl dt = 0.0015895984085979426 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.9555e+05 | 262144 | 1 | 3.295e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.36723355762915 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6431693845844932, dt = 0.0015895984085979426
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.50 us (2.0%)
patch tree reduce : 1.48 us (0.5%)
gen split merge : 1.15 us (0.4%)
split / merge op : 0/0
apply split merge : 1.21 us (0.4%)
LB compute : 258.75 us (92.8%)
LB move op cnt : 0
LB apply : 3.96 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.48 us (65.4%)
Info: cfl dt = 0.001589551209594974 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.7036e+05 | 262144 | 1 | 3.403e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.816759450127932 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.644758982993091, dt = 0.001589551209594974
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.65 us (2.5%)
patch tree reduce : 1.87 us (0.7%)
gen split merge : 971.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.37 us (0.5%)
LB compute : 249.32 us (91.9%)
LB move op cnt : 0
LB apply : 4.36 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.46 us (66.7%)
Info: cfl dt = 0.0015895045301006561 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.7777e+05 | 262144 | 1 | 3.370e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.978103813169906 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.646348534202686, dt = 0.0015895045301006561
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.09 us (2.7%)
patch tree reduce : 1.76 us (0.7%)
gen split merge : 970.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.31 us (0.5%)
LB compute : 237.21 us (91.4%)
LB move op cnt : 0
LB apply : 4.33 us (1.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.42 us (64.7%)
Info: cfl dt = 0.0015894583365969814 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2069e+05 | 262144 | 1 | 3.194e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.91452109887451 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6479380387327867, dt = 0.0015894583365969814
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.65 us (2.5%)
patch tree reduce : 1.70 us (0.6%)
gen split merge : 894.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.55 us (0.6%)
LB compute : 249.09 us (92.0%)
LB move op cnt : 0
LB apply : 4.01 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.45 us (65.3%)
Info: cfl dt = 0.0015894125999430244 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.5139e+05 | 262144 | 1 | 3.079e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.583942076070844 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6495274970693836, dt = 0.0015894125999430244
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.42 us (2.9%)
patch tree reduce : 1.75 us (0.7%)
gen split merge : 826.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.44 us (0.6%)
LB compute : 235.19 us (91.4%)
LB move op cnt : 0
LB apply : 4.13 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.44 us (63.8%)
Info: cfl dt = 0.0015893672934366332 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.1832e+05 | 262144 | 1 | 3.203e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.861755836333703 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6511169096693266, dt = 0.0015893672934366332
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.83 us (2.5%)
patch tree reduce : 1.63 us (0.6%)
gen split merge : 917.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.83 us (0.7%)
LB compute : 246.81 us (91.7%)
LB move op cnt : 0
LB apply : 4.23 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.79 us (64.6%)
Info: cfl dt = 0.001589322388745958 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.1686e+05 | 262144 | 1 | 3.209e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.82933704920699 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6527062769627632, dt = 0.001589322388745958
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.39 us (2.4%)
patch tree reduce : 1.85 us (0.6%)
gen split merge : 955.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.48 us (0.5%)
LB compute : 278.57 us (92.3%)
LB move op cnt : 0
LB apply : 4.42 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.49 us (64.2%)
Info: cfl dt = 0.0015892778535022446 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.1346e+05 | 262144 | 1 | 3.674e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.572075057508897 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6542955993515092, dt = 0.0015892778535022446
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.65 us (2.1%)
patch tree reduce : 1.81 us (0.6%)
gen split merge : 863.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.37 us (0.4%)
LB compute : 291.24 us (93.2%)
LB move op cnt : 0
LB apply : 3.78 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.75 us (63.0%)
Info: cfl dt = 0.001589233649414269 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.1485e+05 | 262144 | 1 | 3.217e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.78446825896579 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6558848772050114, dt = 0.001589233649414269
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.79 us (2.2%)
patch tree reduce : 1.82 us (0.6%)
gen split merge : 949.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.41 us (0.5%)
LB compute : 290.63 us (93.0%)
LB move op cnt : 0
LB apply : 4.43 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 10.20 us (90.5%)
Info: cfl dt = 0.00158918973264957 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.1162e+05 | 262144 | 1 | 3.230e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.713364271262947 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6574741108544258, dt = 0.00158918973264957
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.47 us (2.3%)
patch tree reduce : 1.65 us (0.6%)
gen split merge : 847.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.67 us (0.6%)
LB compute : 256.51 us (92.1%)
LB move op cnt : 0
LB apply : 4.87 us (1.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.45 us (64.8%)
Info: cfl dt = 0.001589146053909854 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2019e+05 | 262144 | 1 | 3.196e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.90004147279745 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6590633005870754, dt = 0.001589146053909854
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.87 us (2.6%)
patch tree reduce : 1.83 us (0.7%)
gen split merge : 1.00 us (0.4%)
split / merge op : 0/0
apply split merge : 1.39 us (0.5%)
LB compute : 241.64 us (91.9%)
LB move op cnt : 0
LB apply : 4.01 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.73 us (64.3%)
Info: cfl dt = 0.0015891025585169744 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.5374e+05 | 262144 | 1 | 3.071e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.63173539115473 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6606524466409853, dt = 0.0015891025585169744
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.52 us (2.5%)
patch tree reduce : 1.92 us (0.6%)
gen split merge : 974.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.38 us (0.5%)
LB compute : 276.47 us (92.4%)
LB move op cnt : 0
LB apply : 4.31 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.41 us (65.1%)
Info: cfl dt = 0.001589059183607506 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2044e+05 | 262144 | 1 | 3.195e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.904368937910668 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6622415491995024, dt = 0.001589059183607506
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.57 us (2.3%)
patch tree reduce : 1.65 us (0.6%)
gen split merge : 1.14 us (0.4%)
split / merge op : 0/0
apply split merge : 1.51 us (0.5%)
LB compute : 257.99 us (92.2%)
LB move op cnt : 0
LB apply : 4.12 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.45 us (66.4%)
Info: cfl dt = 0.0015890158599363505 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2158e+05 | 262144 | 1 | 3.191e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.92885509248297 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6638306083831098, dt = 0.0015890158599363505
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.94 us (2.7%)
patch tree reduce : 1.73 us (0.7%)
gen split merge : 998.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.43 us (0.5%)
LB compute : 238.82 us (91.5%)
LB move op cnt : 0
LB apply : 4.32 us (1.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.43 us (66.8%)
Info: cfl dt = 0.0015889725390866207 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.1286e+05 | 262144 | 1 | 3.225e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.73796993289332 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6654196242430461, dt = 0.0015889725390866207
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.81 us (2.3%)
patch tree reduce : 1.70 us (0.6%)
gen split merge : 958.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.43 us (0.5%)
LB compute : 274.10 us (92.6%)
LB move op cnt : 0
LB apply : 4.37 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.45 us (64.1%)
Info: cfl dt = 0.0015889292251410776 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2341e+05 | 262144 | 1 | 3.184e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.967825210030806 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6670085967821326, dt = 0.0015889292251410776
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.80 us (2.6%)
patch tree reduce : 1.83 us (0.7%)
gen split merge : 994.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.32 us (0.5%)
LB compute : 244.75 us (91.8%)
LB move op cnt : 0
LB apply : 4.27 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.49 us (67.2%)
Info: cfl dt = 0.0015888859185134367 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2593e+05 | 262144 | 1 | 3.174e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.02220942263732 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6685975260072736, dt = 0.0015888859185134367
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.64 us (2.2%)
patch tree reduce : 1.86 us (0.6%)
gen split merge : 988.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.24 us (0.4%)
LB compute : 277.73 us (92.8%)
LB move op cnt : 0
LB apply : 4.03 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.37 us (65.0%)
Info: cfl dt = 0.0015888425827464685 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.1282e+05 | 262144 | 1 | 3.225e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.735821800648026 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.670186411925787, dt = 0.0015888425827464685
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.52 us (2.9%)
patch tree reduce : 1.71 us (0.7%)
gen split merge : 1.12 us (0.4%)
split / merge op : 0/0
apply split merge : 1.46 us (0.6%)
LB compute : 233.22 us (90.8%)
LB move op cnt : 0
LB apply : 4.87 us (1.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.34 us (64.1%)
Info: cfl dt = 0.0015887991583559784 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.3078e+05 | 262144 | 1 | 3.155e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.127196246760125 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6717752545085334, dt = 0.0015887991583559784
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.47 us (2.3%)
patch tree reduce : 1.71 us (0.6%)
gen split merge : 1.16 us (0.4%)
split / merge op : 0/0
apply split merge : 1.46 us (0.5%)
LB compute : 257.29 us (92.4%)
LB move op cnt : 0
LB apply : 3.97 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.47 us (65.6%)
Info: cfl dt = 0.0015887555663731277 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.1913e+05 | 262144 | 1 | 3.200e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.872533640754696 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6733640536668895, dt = 0.0015887555663731277
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.21 us (2.8%)
patch tree reduce : 1.68 us (0.7%)
gen split merge : 974.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.57 us (0.6%)
LB compute : 236.09 us (91.3%)
LB move op cnt : 0
LB apply : 4.49 us (1.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.84 us (65.2%)
Info: cfl dt = 0.0015887117126455186 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 6.0761e+05 | 262144 | 1 | 4.314e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.256993650271728 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6749528092332626, dt = 0.0015887117126455186
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.83 us (2.3%)
patch tree reduce : 1.83 us (0.6%)
gen split merge : 995.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.31 us (0.4%)
LB compute : 273.36 us (92.4%)
LB move op cnt : 0
LB apply : 4.42 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.61 us (68.2%)
Info: cfl dt = 0.0015886674935914735 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 6.1965e+05 | 262144 | 1 | 4.231e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.519276752636864 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.676541520945908, dt = 0.0015886674935914735
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.34 us (2.4%)
patch tree reduce : 1.75 us (0.6%)
gen split merge : 962.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.70 us (0.6%)
LB compute : 281.56 us (92.6%)
LB move op cnt : 0
LB apply : 4.05 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.15 us (61.1%)
Info: cfl dt = 0.0015886228034629993 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 6.6367e+05 | 262144 | 1 | 3.950e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.47933798362742 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6781301884394995, dt = 0.0015886228034629993
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.02 us (2.4%)
patch tree reduce : 1.94 us (0.7%)
gen split merge : 1.08 us (0.4%)
split / merge op : 0/0
apply split merge : 1.48 us (0.5%)
LB compute : 271.63 us (92.4%)
LB move op cnt : 0
LB apply : 3.94 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.52 us (65.3%)
Info: cfl dt = 0.0015885775498870381 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2692e+05 | 262144 | 1 | 3.170e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.0403751616719 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6797188112429624, dt = 0.0015885775498870381
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.88 us (2.2%)
patch tree reduce : 1.95 us (0.6%)
gen split merge : 1.00 us (0.3%)
split / merge op : 0/0
apply split merge : 1.41 us (0.5%)
LB compute : 287.04 us (92.6%)
LB move op cnt : 0
LB apply : 4.29 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.74 us (66.6%)
Info: cfl dt = 0.0015885316484320886 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.1531e+05 | 262144 | 1 | 3.215e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.786624001981323 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6813073887928494, dt = 0.0015885316484320886
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.87 us (2.2%)
patch tree reduce : 1.66 us (0.5%)
gen split merge : 886.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.52 us (0.5%)
LB compute : 283.54 us (92.7%)
LB move op cnt : 0
LB apply : 4.25 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.50 us (65.7%)
Info: cfl dt = 0.0015884850222556194 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.1791e+05 | 262144 | 1 | 3.205e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.842933514632676 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6828959204412814, dt = 0.0015884850222556194
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.90 us (2.3%)
patch tree reduce : 1.77 us (0.6%)
gen split merge : 1.04 us (0.4%)
split / merge op : 0/0
apply split merge : 1.43 us (0.5%)
LB compute : 273.59 us (92.7%)
LB move op cnt : 0
LB apply : 4.08 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.44 us (65.7%)
Info: cfl dt = 0.0015884376027602003 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.1857e+05 | 262144 | 1 | 3.202e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.85666925444018 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.684484405463537, dt = 0.0015884376027602003
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.80 us (2.4%)
patch tree reduce : 1.69 us (0.6%)
gen split merge : 1.04 us (0.4%)
split / merge op : 0/0
apply split merge : 1.20 us (0.4%)
LB compute : 266.04 us (92.4%)
LB move op cnt : 0
LB apply : 4.41 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.51 us (67.5%)
Info: cfl dt = 0.001588389329976528 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2252e+05 | 262144 | 1 | 3.187e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.942349342688317 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6860728430662972, dt = 0.001588389329976528
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.56 us (2.4%)
patch tree reduce : 1.67 us (0.6%)
gen split merge : 963.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.34 us (0.5%)
LB compute : 255.97 us (92.2%)
LB move op cnt : 0
LB apply : 4.49 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.56 us (68.3%)
Info: cfl dt = 0.0015883401523641154 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.6234e+05 | 262144 | 1 | 3.439e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.629161362112427 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6876612323962739, dt = 0.0015883401523641154
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.33 us (2.3%)
patch tree reduce : 1.73 us (0.6%)
gen split merge : 997.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.43 us (0.5%)
LB compute : 251.81 us (92.3%)
LB move op cnt : 0
LB apply : 3.98 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.48 us (66.7%)
Info: cfl dt = 0.0015882900260828807 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2101e+05 | 262144 | 1 | 3.193e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.908332439494284 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.689249572548638, dt = 0.0015882900260828807
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.95 us (2.2%)
patch tree reduce : 1.99 us (0.6%)
gen split merge : 1.09 us (0.3%)
split / merge op : 0/0
apply split merge : 1.60 us (0.5%)
LB compute : 299.41 us (92.8%)
LB move op cnt : 0
LB apply : 4.26 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.50 us (66.6%)
Info: cfl dt = 0.0015882389505504112 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.3211e+05 | 262144 | 1 | 3.150e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.14986152496454 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.690837862574721, dt = 0.0015882389505504112
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.50 us (2.2%)
patch tree reduce : 1.83 us (0.6%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.58 us (0.5%)
LB compute : 275.69 us (92.6%)
LB move op cnt : 0
LB apply : 4.31 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.54 us (67.4%)
Info: cfl dt = 0.0015881869035424033 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2627e+05 | 262144 | 1 | 3.173e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.0218874614183 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6924261015252713, dt = 0.0015881869035424033
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.47 us (2.0%)
patch tree reduce : 1.77 us (0.5%)
gen split merge : 1.01 us (0.3%)
split / merge op : 0/0
apply split merge : 1.47 us (0.5%)
LB compute : 303.94 us (93.4%)
LB move op cnt : 0
LB apply : 4.16 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.37 us (64.6%)
Info: cfl dt = 0.0015881338193154998 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.0358e+05 | 262144 | 1 | 3.262e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.52645304642514 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6940142884288136, dt = 0.0015881338193154998
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.67 us (2.4%)
patch tree reduce : 1.65 us (0.6%)
gen split merge : 1.25 us (0.4%)
split / merge op : 0/0
apply split merge : 1.38 us (0.5%)
LB compute : 259.21 us (92.3%)
LB move op cnt : 0
LB apply : 4.21 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.48 us (66.2%)
Info: cfl dt = 0.0015880796266822409 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.4138e+05 | 262144 | 1 | 3.116e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.350347767966092 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6956024222481292, dt = 0.0015880796266822409
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.38 us (2.4%)
patch tree reduce : 1.83 us (0.7%)
gen split merge : 973.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.42 us (0.5%)
LB compute : 248.96 us (92.1%)
LB move op cnt : 0
LB apply : 4.08 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.03 us (67.0%)
Info: cfl dt = 0.0015880242698695197 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2436e+05 | 262144 | 1 | 3.180e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.978336982796773 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6971905018748115, dt = 0.0015880242698695197
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.60 us (2.4%)
patch tree reduce : 1.89 us (0.7%)
gen split merge : 879.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.54 us (0.6%)
LB compute : 248.52 us (91.7%)
LB move op cnt : 0
LB apply : 4.21 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.40 us (63.7%)
Info: cfl dt = 0.0015879677439613845 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.0396e+05 | 262144 | 1 | 3.724e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.351995419226288 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.698778526144681, dt = 0.0015879677439613845
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.76 us (2.1%)
patch tree reduce : 1.76 us (0.5%)
gen split merge : 1.01 us (0.3%)
split / merge op : 0/0
apply split merge : 1.61 us (0.5%)
LB compute : 306.02 us (93.3%)
LB move op cnt : 0
LB apply : 4.08 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.78 us (64.3%)
Info: cfl dt = 0.0015879099912156727 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.4945e+05 | 262144 | 1 | 3.498e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.3435246936968 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7003664938886425, dt = 0.0015879099912156727
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.05 us (2.3%)
patch tree reduce : 1.84 us (0.6%)
gen split merge : 973.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.36 us (0.4%)
LB compute : 281.49 us (92.8%)
LB move op cnt : 0
LB apply : 4.46 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.79 us (64.1%)
Info: cfl dt = 0.0015878509208028424 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2188e+05 | 262144 | 1 | 3.190e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.92235682085575 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7019544038798582, dt = 0.0015878509208028424
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.83 us (2.5%)
patch tree reduce : 1.73 us (0.6%)
gen split merge : 990.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.53 us (0.6%)
LB compute : 252.94 us (92.1%)
LB move op cnt : 0
LB apply : 3.86 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.58 us (67.5%)
Info: cfl dt = 0.0015877905164214153 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2277e+05 | 262144 | 1 | 3.186e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.941067559879233 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7035422548006611, dt = 0.0015877905164214153
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.64 us (2.4%)
patch tree reduce : 1.74 us (0.6%)
gen split merge : 890.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.39 us (0.5%)
LB compute : 254.57 us (92.1%)
LB move op cnt : 0
LB apply : 3.96 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.54 us (67.4%)
Info: cfl dt = 0.0015877288137113583 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.1442e+05 | 262144 | 1 | 3.219e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.75847558814077 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7051300453170826, dt = 0.0015877288137113583
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.40 us (2.2%)
patch tree reduce : 1.68 us (0.6%)
gen split merge : 932.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.70 us (0.6%)
LB compute : 267.16 us (92.6%)
LB move op cnt : 0
LB apply : 4.24 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.50 us (65.4%)
Info: cfl dt = 0.0015876658746308444 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.4894e+05 | 262144 | 1 | 3.500e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.329921444029917 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.706717774130794, dt = 0.0015876658746308444
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.96 us (2.5%)
patch tree reduce : 1.82 us (0.7%)
gen split merge : 881.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.34 us (0.5%)
LB compute : 255.22 us (92.1%)
LB move op cnt : 0
LB apply : 4.04 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.56 us (68.9%)
Info: cfl dt = 0.0015876017664143858 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.7810e+05 | 262144 | 1 | 3.369e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.96513446943446 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7083054400054247, dt = 0.0015876017664143858
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.70 us (2.1%)
patch tree reduce : 1.65 us (0.5%)
gen split merge : 902.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.51 us (0.5%)
LB compute : 292.25 us (93.1%)
LB move op cnt : 0
LB apply : 4.24 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.49 us (66.2%)
Info: cfl dt = 0.0015875365483246037 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.5935e+05 | 262144 | 1 | 3.452e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.555595855741533 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7098930417718392, dt = 0.0015875365483246037
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.71 us (2.1%)
patch tree reduce : 1.69 us (0.5%)
gen split merge : 980.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.46 us (0.5%)
LB compute : 291.62 us (93.1%)
LB move op cnt : 0
LB apply : 4.02 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.49 us (66.6%)
Info: cfl dt = 0.001587470266014295 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.4740e+05 | 262144 | 1 | 3.507e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.294431325873504 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7114805783201639, dt = 0.001587470266014295
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.65 us (2.4%)
patch tree reduce : 1.63 us (0.6%)
gen split merge : 1.21 us (0.4%)
split / merge op : 0/0
apply split merge : 1.32 us (0.5%)
LB compute : 256.48 us (92.2%)
LB move op cnt : 0
LB apply : 3.93 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.54 us (67.6%)
Info: cfl dt = 0.001587402952191479 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.5920e+05 | 262144 | 1 | 3.453e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.550980361169838 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7130680485861782, dt = 0.001587402952191479
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.59 us (2.6%)
patch tree reduce : 1.94 us (0.8%)
gen split merge : 840.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.46 us (0.6%)
LB compute : 236.05 us (91.4%)
LB move op cnt : 0
LB apply : 3.90 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.39 us (64.2%)
Info: cfl dt = 0.0015873346302292478 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2232e+05 | 262144 | 1 | 3.188e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.926354959843152 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7146554515383696, dt = 0.0015873346302292478
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.49 us (2.3%)
patch tree reduce : 1.83 us (0.7%)
gen split merge : 1.03 us (0.4%)
split / merge op : 0/0
apply split merge : 1.41 us (0.5%)
LB compute : 256.72 us (92.0%)
LB move op cnt : 0
LB apply : 4.43 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.50 us (68.1%)
Info: cfl dt = 0.0015872653095774577 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.4838e+05 | 262144 | 1 | 3.503e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.313634904087593 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.716242786168599, dt = 0.0015872653095774577
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.62 us (2.4%)
patch tree reduce : 1.52 us (0.6%)
gen split merge : 782.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.16 us (0.4%)
LB compute : 254.13 us (92.5%)
LB move op cnt : 0
LB apply : 4.13 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.61 us (67.9%)
Info: cfl dt = 0.0015871949758724556 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.5459e+05 | 262144 | 1 | 3.474e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.448473251580292 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7178300514781764, dt = 0.0015871949758724556
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.86 us (2.6%)
patch tree reduce : 1.90 us (0.8%)
gen split merge : 797.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.04 us (0.5%)
LB compute : 209.09 us (91.9%)
LB move op cnt : 0
LB apply : 3.54 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.12 us (69.0%)
Info: cfl dt = 0.00158712360405875 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.6363e+05 | 262144 | 1 | 3.433e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.644646931078714 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.719417246454049, dt = 0.00037442021261768765
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.09 us (2.4%)
patch tree reduce : 1.91 us (0.7%)
gen split merge : 1.07 us (0.4%)
split / merge op : 0/0
apply split merge : 1.44 us (0.5%)
LB compute : 267.89 us (92.5%)
LB move op cnt : 0
LB apply : 3.77 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.36 us (63.0%)
Info: cfl dt = 0.0015871063022382713 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.2220e+05 | 262144 | 1 | 3.630e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.7134585575067183 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 373.018772398 (s) [Godunov][rank=0]
Info: dump to _to_trash/ramses_kh/periodic_0014.vtk [VTK Dump][rank=0]
- took 40.01 ms, bandwidth = 1.02 GB/s
amr::Godunov: t = 1.7197916666666666, dt = 0.0015871063022382713
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.66 us (2.0%)
patch tree reduce : 1.64 us (0.5%)
gen split merge : 845.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.12 us (0.3%)
LB compute : 304.65 us (93.6%)
LB move op cnt : 0
LB apply : 4.55 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.83 us (71.4%)
Info: cfl dt = 0.001587031072596967 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2145e+05 | 262144 | 1 | 3.191e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.90390025489908 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.721378772968905, dt = 0.001587031072596967
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.94 us (2.6%)
patch tree reduce : 1.70 us (0.6%)
gen split merge : 967.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.39 us (0.5%)
LB compute : 240.81 us (91.7%)
LB move op cnt : 0
LB apply : 4.09 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.41 us (65.2%)
Info: cfl dt = 0.0015869557622058262 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2735e+05 | 262144 | 1 | 3.168e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.031712384495975 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.722965804041502, dt = 0.0015869557622058262
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.69 us (2.2%)
patch tree reduce : 1.89 us (0.6%)
gen split merge : 898.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.56 us (0.5%)
LB compute : 276.05 us (92.6%)
LB move op cnt : 0
LB apply : 4.48 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.40 us (62.6%)
Info: cfl dt = 0.0015868800335040335 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2166e+05 | 262144 | 1 | 3.190e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.906847294933687 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7245527598037078, dt = 0.0015868800335040335
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.87 us (2.4%)
patch tree reduce : 1.82 us (0.6%)
gen split merge : 1.03 us (0.4%)
split / merge op : 0/0
apply split merge : 1.59 us (0.6%)
LB compute : 263.50 us (92.2%)
LB move op cnt : 0
LB apply : 4.53 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.65 us (68.9%)
Info: cfl dt = 0.0015868038001032457 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2337e+05 | 262144 | 1 | 3.184e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.943331348612453 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7261396398372117, dt = 0.0015868038001032457
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.66 us (2.3%)
patch tree reduce : 1.77 us (0.6%)
gen split merge : 875.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.63 us (0.6%)
LB compute : 268.95 us (92.5%)
LB move op cnt : 0
LB apply : 4.04 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.53 us (66.7%)
Info: cfl dt = 0.0015867270964703584 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2632e+05 | 262144 | 1 | 3.172e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.0068038286964 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.727726443637315, dt = 0.0015867270964703584
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.83 us (2.5%)
patch tree reduce : 1.61 us (0.6%)
gen split merge : 1.28 us (0.5%)
split / merge op : 0/0
apply split merge : 1.44 us (0.5%)
LB compute : 250.38 us (91.7%)
LB move op cnt : 0
LB apply : 4.29 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.41 us (64.1%)
Info: cfl dt = 0.0015866501331849698 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2823e+05 | 262144 | 1 | 3.165e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.047376385782538 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7293131707337854, dt = 0.0015866501331849698
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.15 us (2.3%)
patch tree reduce : 1.72 us (0.6%)
gen split merge : 1.15 us (0.4%)
split / merge op : 0/0
apply split merge : 1.56 us (0.5%)
LB compute : 286.95 us (92.8%)
LB move op cnt : 0
LB apply : 4.11 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.57 us (66.3%)
Info: cfl dt = 0.0015865731387405381 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2149e+05 | 262144 | 1 | 3.191e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.8998138279812 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7308998208669704, dt = 0.0015865731387405381
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.72 us (2.4%)
patch tree reduce : 1.65 us (0.6%)
gen split merge : 966.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.69 us (0.6%)
LB compute : 263.92 us (92.3%)
LB move op cnt : 0
LB apply : 4.38 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.43 us (65.5%)
Info: cfl dt = 0.001586496117929906 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2660e+05 | 262144 | 1 | 3.171e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.01012327437685 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.732486394005711, dt = 0.001586496117929906
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.32 us (2.4%)
patch tree reduce : 1.80 us (0.7%)
gen split merge : 864.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.55 us (0.6%)
LB compute : 243.00 us (92.1%)
LB move op cnt : 0
LB apply : 3.81 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.46 us (65.9%)
Info: cfl dt = 0.0015864189578782282 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.3058e+05 | 262144 | 1 | 3.156e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.096080991366225 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7340728901236409, dt = 0.0015864189578782282
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.62 us (2.5%)
patch tree reduce : 1.71 us (0.6%)
gen split merge : 1.11 us (0.4%)
split / merge op : 0/0
apply split merge : 1.48 us (0.6%)
LB compute : 246.27 us (91.8%)
LB move op cnt : 0
LB apply : 4.47 us (1.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.46 us (67.2%)
Info: cfl dt = 0.0015863414688122275 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2910e+05 | 262144 | 1 | 3.162e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.062905421436145 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.735659309081519, dt = 0.0015863414688122275
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.62 us (2.1%)
patch tree reduce : 1.74 us (0.6%)
gen split merge : 1.12 us (0.4%)
split / merge op : 0/0
apply split merge : 1.46 us (0.5%)
LB compute : 288.14 us (92.9%)
LB move op cnt : 0
LB apply : 4.24 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.55 us (66.8%)
Info: cfl dt = 0.0015862634333217735 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2407e+05 | 262144 | 1 | 3.181e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.952430909686232 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7372456505503313, dt = 0.0015862634333217735
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.80 us (2.2%)
patch tree reduce : 1.66 us (0.5%)
gen split merge : 930.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.46 us (0.5%)
LB compute : 284.43 us (92.9%)
LB move op cnt : 0
LB apply : 4.29 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.43 us (64.8%)
Info: cfl dt = 0.0015861846534949867 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2876e+05 | 262144 | 1 | 3.163e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.053800191300006 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.738831913983653, dt = 0.0015861846534949867
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.20 us (2.2%)
patch tree reduce : 1.64 us (0.6%)
gen split merge : 1.17 us (0.4%)
split / merge op : 0/0
apply split merge : 1.45 us (0.5%)
LB compute : 256.66 us (92.2%)
LB move op cnt : 0
LB apply : 4.60 us (1.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.54 us (67.0%)
Info: cfl dt = 0.001586104986777074 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.1934e+05 | 262144 | 1 | 3.199e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.84772067007336 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.740418098637148, dt = 0.001586104986777074
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.05 us (2.4%)
patch tree reduce : 1.60 us (0.5%)
gen split merge : 1.03 us (0.4%)
split / merge op : 0/0
apply split merge : 1.59 us (0.5%)
LB compute : 272.53 us (92.4%)
LB move op cnt : 0
LB apply : 4.49 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.53 us (66.8%)
Info: cfl dt = 0.0015860243530605735 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2167e+05 | 262144 | 1 | 3.190e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.897517392857214 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7420042036239252, dt = 0.0015860243530605735
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.38 us (2.5%)
patch tree reduce : 1.89 us (0.7%)
gen split merge : 1.05 us (0.4%)
split / merge op : 0/0
apply split merge : 1.38 us (0.5%)
LB compute : 235.45 us (91.5%)
LB move op cnt : 0
LB apply : 4.41 us (1.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.43 us (64.6%)
Info: cfl dt = 0.0015859427393698478 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.0422e+05 | 262144 | 1 | 3.722e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.338461494370572 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7435902279769857, dt = 0.0015859427393698478
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.03 us (2.2%)
patch tree reduce : 1.86 us (0.6%)
gen split merge : 933.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.32 us (0.4%)
LB compute : 293.38 us (92.9%)
LB move op cnt : 0
LB apply : 4.08 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.44 us (64.4%)
Info: cfl dt = 0.0015858602106070831 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.3919e+05 | 262144 | 1 | 3.124e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.27717400912587 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7451761707163556, dt = 0.0015858602106070831
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.91 us (2.4%)
patch tree reduce : 1.95 us (0.7%)
gen split merge : 924.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.44 us (0.5%)
LB compute : 262.95 us (92.3%)
LB move op cnt : 0
LB apply : 3.81 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.48 us (67.5%)
Info: cfl dt = 0.001585776891122271 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.0899e+05 | 262144 | 1 | 3.240e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.618652812948007 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7467620309269627, dt = 0.001585776891122271
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.43 us (2.2%)
patch tree reduce : 1.99 us (0.7%)
gen split merge : 938.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.47 us (0.5%)
LB compute : 264.99 us (92.5%)
LB move op cnt : 0
LB apply : 4.00 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.49 us (66.5%)
Info: cfl dt = 0.0015856929304162157 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.1076e+05 | 262144 | 1 | 3.233e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.65614967036931 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.748347807818085, dt = 0.0015856929304162157
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.04 us (2.7%)
patch tree reduce : 1.93 us (0.7%)
gen split merge : 949.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.43 us (0.5%)
LB compute : 243.11 us (91.8%)
LB move op cnt : 0
LB apply : 4.00 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.64 us (69.9%)
Info: cfl dt = 0.0015856084919782074 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.9635e+05 | 262144 | 1 | 3.292e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.34149220612683 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.749933500748501, dt = 0.0015856084919782074
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.17 us (2.3%)
patch tree reduce : 1.80 us (0.6%)
gen split merge : 953.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.52 us (0.5%)
LB compute : 287.45 us (92.7%)
LB move op cnt : 0
LB apply : 4.38 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.53 us (64.3%)
Info: cfl dt = 0.0015855237061495361 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.1202e+05 | 262144 | 1 | 3.228e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.68181125436522 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7515191092404794, dt = 0.0015855237061495361
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.80 us (2.2%)
patch tree reduce : 11.43 us (3.7%)
gen split merge : 1.10 us (0.4%)
split / merge op : 0/0
apply split merge : 1.55 us (0.5%)
LB compute : 281.21 us (89.8%)
LB move op cnt : 0
LB apply : 4.11 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.50 us (65.6%)
Info: cfl dt = 0.0015854386913996905 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2366e+05 | 262144 | 1 | 3.183e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.934211116248665 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7531046329466289, dt = 0.0015854386913996905
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.43 us (2.4%)
patch tree reduce : 1.98 us (0.7%)
gen split merge : 851.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.32 us (0.5%)
LB compute : 245.02 us (92.0%)
LB move op cnt : 0
LB apply : 4.01 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.43 us (67.4%)
Info: cfl dt = 0.0015853535555037635 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2762e+05 | 262144 | 1 | 3.167e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.019410700617808 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7546900716380285, dt = 0.0015853535555037635
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.54 us (2.4%)
patch tree reduce : 1.85 us (0.7%)
gen split merge : 1.06 us (0.4%)
split / merge op : 0/0
apply split merge : 1.54 us (0.6%)
LB compute : 249.51 us (92.0%)
LB move op cnt : 0
LB apply : 3.95 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.47 us (65.3%)
Info: cfl dt = 0.0015852683860852947 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.1368e+05 | 262144 | 1 | 3.222e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.715003575821687 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7562754251935322, dt = 0.0015852683860852947
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.87 us (2.9%)
patch tree reduce : 1.84 us (0.7%)
gen split merge : 957.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.43 us (0.5%)
LB compute : 245.27 us (91.3%)
LB move op cnt : 0
LB apply : 4.35 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.66 us (70.0%)
Info: cfl dt = 0.0015851832239474934 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.1342e+05 | 262144 | 1 | 3.223e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.7084989355384 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7578606935796175, dt = 0.0015851832239474934
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.70 us (2.5%)
patch tree reduce : 1.75 us (0.7%)
gen split merge : 1.10 us (0.4%)
split / merge op : 0/0
apply split merge : 1.46 us (0.6%)
LB compute : 241.16 us (91.6%)
LB move op cnt : 0
LB apply : 4.09 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.45 us (65.3%)
Info: cfl dt = 0.0015850980373658668 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.3139e+05 | 262144 | 1 | 3.153e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.098637005113055 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.759445876803565, dt = 0.0015850980373658668
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.93 us (2.4%)
patch tree reduce : 1.82 us (0.6%)
gen split merge : 958.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.54 us (0.5%)
LB compute : 271.96 us (92.4%)
LB move op cnt : 0
LB apply : 4.23 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.79 us (62.9%)
Info: cfl dt = 0.0015850128270553994 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.1904e+05 | 262144 | 1 | 3.201e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.8287961312528 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.761030974840931, dt = 0.0015850128270553994
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.61 us (2.2%)
patch tree reduce : 1.70 us (0.6%)
gen split merge : 934.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.73 us (0.6%)
LB compute : 272.05 us (92.6%)
LB move op cnt : 0
LB apply : 4.25 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.39 us (64.9%)
Info: cfl dt = 0.0015849275712205297 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2211e+05 | 262144 | 1 | 3.189e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.894727603914134 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7626159876679863, dt = 0.0015849275712205297
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.68 us (2.3%)
patch tree reduce : 1.68 us (0.6%)
gen split merge : 1.15 us (0.4%)
split / merge op : 0/0
apply split merge : 1.61 us (0.6%)
LB compute : 270.79 us (92.5%)
LB move op cnt : 0
LB apply : 4.12 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.87 us (66.2%)
Info: cfl dt = 0.0015848422367242003 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2330e+05 | 262144 | 1 | 3.184e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.919719281565392 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7642009152392069, dt = 0.0015848422367242003
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.31 us (2.5%)
patch tree reduce : 1.66 us (0.7%)
gen split merge : 1.04 us (0.4%)
split / merge op : 0/0
apply split merge : 1.49 us (0.6%)
LB compute : 233.68 us (91.7%)
LB move op cnt : 0
LB apply : 4.14 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.39 us (66.0%)
Info: cfl dt = 0.0015847567907436957 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3455e+05 | 262144 | 1 | 3.569e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.98710598195544 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.765785757475931, dt = 0.0015847567907436957
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.26 us (2.0%)
patch tree reduce : 1.76 us (0.6%)
gen split merge : 954.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.38 us (0.4%)
LB compute : 286.26 us (93.2%)
LB move op cnt : 0
LB apply : 3.76 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.43 us (64.9%)
Info: cfl dt = 0.0015846712105739085 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.6071e+05 | 262144 | 1 | 3.046e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.73191560968287 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7673705142666747, dt = 0.0015846712105739085
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.90 us (2.6%)
patch tree reduce : 1.93 us (0.7%)
gen split merge : 834.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.55 us (0.6%)
LB compute : 242.93 us (91.6%)
LB move op cnt : 0
LB apply : 4.33 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.49 us (65.4%)
Info: cfl dt = 0.0015845854893256652 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2030e+05 | 262144 | 1 | 3.196e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.851442150272234 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7689551854772485, dt = 0.0015845854893256652
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.12 us (2.4%)
patch tree reduce : 1.82 us (0.6%)
gen split merge : 949.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.37 us (0.5%)
LB compute : 270.16 us (92.4%)
LB move op cnt : 0
LB apply : 4.08 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.46 us (66.1%)
Info: cfl dt = 0.0015844996399188992 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.3147e+05 | 262144 | 1 | 3.153e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.093603160091288 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7705397709665742, dt = 0.0015844996399188992
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.68 us (2.5%)
patch tree reduce : 1.63 us (0.6%)
gen split merge : 864.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.65 us (0.6%)
LB compute : 244.00 us (91.8%)
LB move op cnt : 0
LB apply : 4.61 us (1.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.89 us (65.2%)
Info: cfl dt = 0.0015844136947143778 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.1792e+05 | 262144 | 1 | 3.205e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.797682092121647 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.772124270606493, dt = 0.0015844136947143778
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.98 us (2.3%)
patch tree reduce : 1.77 us (0.6%)
gen split merge : 1.01 us (0.3%)
split / merge op : 0/0
apply split merge : 1.42 us (0.5%)
LB compute : 276.27 us (92.7%)
LB move op cnt : 0
LB apply : 4.14 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.37 us (63.4%)
Info: cfl dt = 0.001584327701612378 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3841e+05 | 262144 | 1 | 3.550e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.066875840488375 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7737086843012073, dt = 0.001584327701612378
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.75 us (2.4%)
patch tree reduce : 1.85 us (0.7%)
gen split merge : 1.02 us (0.4%)
split / merge op : 0/0
apply split merge : 1.28 us (0.5%)
LB compute : 255.67 us (92.1%)
LB move op cnt : 0
LB apply : 4.69 us (1.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.52 us (66.9%)
Info: cfl dt = 0.0015842417181715753 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2230e+05 | 262144 | 1 | 3.188e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.891137349141598 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7752930120028196, dt = 0.0015842417181715753
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.57 us (2.3%)
patch tree reduce : 1.85 us (0.7%)
gen split merge : 950.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.55 us (0.5%)
LB compute : 256.68 us (90.6%)
LB move op cnt : 0
LB apply : 8.74 us (3.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.51 us (65.9%)
Info: cfl dt = 0.0015841558057555236 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.1834e+05 | 262144 | 1 | 3.203e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.803995757292064 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7768772537209911, dt = 0.0015841558057555236
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.99 us (2.2%)
patch tree reduce : 1.73 us (0.6%)
gen split merge : 1.12 us (0.4%)
split / merge op : 0/0
apply split merge : 1.59 us (0.5%)
LB compute : 289.06 us (92.8%)
LB move op cnt : 0
LB apply : 4.11 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.48 us (66.6%)
Info: cfl dt = 0.0015840700245957108 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2524e+05 | 262144 | 1 | 3.177e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.953089991060995 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7784614095267466, dt = 0.0015840700245957108
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.48 us (2.5%)
patch tree reduce : 1.66 us (0.6%)
gen split merge : 1.05 us (0.4%)
split / merge op : 0/0
apply split merge : 1.69 us (0.6%)
LB compute : 238.26 us (91.7%)
LB move op cnt : 0
LB apply : 4.31 us (1.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.37 us (65.1%)
Info: cfl dt = 0.001583984429093736 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 6.6832e+05 | 262144 | 1 | 3.922e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.53847698896589 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7800454795513423, dt = 0.001583984429093736
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.19 us (2.3%)
patch tree reduce : 1.85 us (0.6%)
gen split merge : 866.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.53 us (0.5%)
LB compute : 289.76 us (92.8%)
LB move op cnt : 0
LB apply : 4.03 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.54 us (67.1%)
Info: cfl dt = 0.0015838990665825478 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2081e+05 | 262144 | 1 | 3.194e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.85482474751585 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.781629463980436, dt = 0.0015838990665825478
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.31 us (2.5%)
patch tree reduce : 1.75 us (0.6%)
gen split merge : 900.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.33 us (0.5%)
LB compute : 271.73 us (92.3%)
LB move op cnt : 0
LB apply : 4.57 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.39 us (65.1%)
Info: cfl dt = 0.0015838139740259752 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.1555e+05 | 262144 | 1 | 3.214e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.73939097421285 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7832133630470186, dt = 0.0015838139740259752
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.48 us (2.8%)
patch tree reduce : 1.65 us (0.6%)
gen split merge : 1.01 us (0.4%)
split / merge op : 0/0
apply split merge : 1.47 us (0.6%)
LB compute : 242.67 us (91.4%)
LB move op cnt : 0
LB apply : 4.35 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.51 us (66.2%)
Info: cfl dt = 0.001583729182867976 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.1031e+05 | 262144 | 1 | 3.235e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.62461567932928 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7847971770210447, dt = 0.001583729182867976
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.24 us (2.4%)
patch tree reduce : 1.82 us (0.6%)
gen split merge : 1.05 us (0.3%)
split / merge op : 0/0
apply split merge : 1.54 us (0.5%)
LB compute : 282.44 us (92.7%)
LB move op cnt : 0
LB apply : 4.22 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.42 us (64.4%)
Info: cfl dt = 0.0015836447219619387 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.5426e+05 | 262144 | 1 | 3.476e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.40448604737097 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7863809062039127, dt = 0.0015836447219619387
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.67 us (2.4%)
patch tree reduce : 1.73 us (0.6%)
gen split merge : 863.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.54 us (0.5%)
LB compute : 260.10 us (92.3%)
LB move op cnt : 0
LB apply : 4.45 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.62 us (67.8%)
Info: cfl dt = 0.0015835606193269412 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2995e+05 | 262144 | 1 | 3.159e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.049695748023527 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7879645509258746, dt = 0.0015835606193269412
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.44 us (2.8%)
patch tree reduce : 1.95 us (0.7%)
gen split merge : 991.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.43 us (0.5%)
LB compute : 239.93 us (91.2%)
LB move op cnt : 0
LB apply : 4.24 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.47 us (67.5%)
Info: cfl dt = 0.0015834769000961058 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.1807e+05 | 262144 | 1 | 3.204e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.790406469034554 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7895481115452014, dt = 0.0015834769000961058
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.07 us (2.7%)
patch tree reduce : 1.89 us (0.7%)
gen split merge : 845.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.35 us (0.5%)
LB compute : 240.61 us (91.3%)
LB move op cnt : 0
LB apply : 4.94 us (1.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.71 us (63.9%)
Info: cfl dt = 0.0015833935857472543 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.1856e+05 | 262144 | 1 | 3.202e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.800251678190563 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7911315884452976, dt = 0.0015833935857472543
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.67 us (2.2%)
patch tree reduce : 1.63 us (0.5%)
gen split merge : 1.28 us (0.4%)
split / merge op : 0/0
apply split merge : 1.43 us (0.5%)
LB compute : 276.20 us (92.6%)
LB move op cnt : 0
LB apply : 3.87 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.55 us (66.9%)
Info: cfl dt = 0.0015833106959922782 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.1438e+05 | 262144 | 1 | 3.219e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.708303511065438 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7927149820310448, dt = 0.0015833106959922782
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.20 us (2.5%)
patch tree reduce : 1.85 us (0.6%)
gen split merge : 983.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.48 us (0.5%)
LB compute : 265.12 us (92.4%)
LB move op cnt : 0
LB apply : 3.90 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.38 us (65.5%)
Info: cfl dt = 0.0015832282524374458 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2005e+05 | 262144 | 1 | 3.197e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.83075482356327 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7942982927270372, dt = 0.0015832282524374458
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.38 us (2.6%)
patch tree reduce : 1.79 us (0.6%)
gen split merge : 1.15 us (0.4%)
split / merge op : 0/0
apply split merge : 1.30 us (0.5%)
LB compute : 264.82 us (92.1%)
LB move op cnt : 0
LB apply : 4.08 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.50 us (67.2%)
Info: cfl dt = 0.0015831462816845606 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.1630e+05 | 262144 | 1 | 3.211e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.748178860015937 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7958815209794747, dt = 0.0015831462816845606
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.98 us (2.3%)
patch tree reduce : 1.71 us (0.6%)
gen split merge : 1.10 us (0.4%)
split / merge op : 0/0
apply split merge : 1.49 us (0.5%)
LB compute : 286.26 us (92.8%)
LB move op cnt : 0
LB apply : 4.27 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.53 us (67.9%)
Info: cfl dt = 0.0015830648375315833 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.7930e+05 | 262144 | 1 | 3.364e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.942889041062518 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7974646672611594, dt = 0.0015830648375315833
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.95 us (2.4%)
patch tree reduce : 1.81 us (0.6%)
gen split merge : 858.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.38 us (0.5%)
LB compute : 271.72 us (92.7%)
LB move op cnt : 0
LB apply : 4.04 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.72 us (69.9%)
Info: cfl dt = 0.00158298398380343 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.1441e+05 | 262144 | 1 | 3.219e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.705282066739343 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.799047732098691, dt = 0.00158298398380343
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.16 us (2.5%)
patch tree reduce : 1.96 us (0.7%)
gen split merge : 1.02 us (0.4%)
split / merge op : 0/0
apply split merge : 1.58 us (0.5%)
LB compute : 264.91 us (92.1%)
LB move op cnt : 0
LB apply : 4.18 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.79 us (65.0%)
Info: cfl dt = 0.0015829037762628768 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2596e+05 | 262144 | 1 | 3.174e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.955592396670347 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8006307160824946, dt = 0.0015829037762628768
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.59 us (2.2%)
patch tree reduce : 1.75 us (0.6%)
gen split merge : 1.14 us (0.4%)
split / merge op : 0/0
apply split merge : 1.34 us (0.5%)
LB compute : 273.22 us (92.7%)
LB move op cnt : 0
LB apply : 3.95 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.56 us (66.7%)
Info: cfl dt = 0.0015828242672142059 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2254e+05 | 262144 | 1 | 3.187e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.88016450972954 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8022136198587575, dt = 0.0015828242672142059
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.68 us (2.2%)
patch tree reduce : 1.92 us (0.6%)
gen split merge : 990.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.72 us (0.6%)
LB compute : 288.37 us (92.8%)
LB move op cnt : 0
LB apply : 4.11 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.47 us (66.3%)
Info: cfl dt = 0.0015827455087754018 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.1860e+05 | 262144 | 1 | 3.202e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.793677415634328 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8037964441259717, dt = 0.0015827455087754018
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.85 us (2.3%)
patch tree reduce : 1.63 us (0.5%)
gen split merge : 967.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.61 us (0.5%)
LB compute : 279.75 us (92.8%)
LB move op cnt : 0
LB apply : 3.99 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.56 us (68.0%)
Info: cfl dt = 0.001582667537379213 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.0247e+05 | 262144 | 1 | 3.267e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.44219566392026 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.805379189634747, dt = 0.001582667537379213
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.97 us (2.3%)
patch tree reduce : 1.65 us (0.5%)
gen split merge : 926.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.55 us (0.5%)
LB compute : 281.82 us (92.9%)
LB move op cnt : 0
LB apply : 3.92 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.75 us (71.0%)
Info: cfl dt = 0.0015825903951639199 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.1677e+05 | 262144 | 1 | 3.210e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.752168690192917 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8069618571721262, dt = 0.0015825903951639199
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.00 us (2.2%)
patch tree reduce : 1.76 us (0.5%)
gen split merge : 1.34 us (0.4%)
split / merge op : 0/0
apply split merge : 1.50 us (0.5%)
LB compute : 289.00 us (90.0%)
LB move op cnt : 0
LB apply : 4.22 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.61 us (67.0%)
Info: cfl dt = 0.001582514115653605 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.1792e+05 | 262144 | 1 | 3.205e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.77628683742523 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.80854444756729, dt = 0.001582514115653605
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.38 us (2.3%)
patch tree reduce : 1.67 us (0.5%)
gen split merge : 1.02 us (0.3%)
split / merge op : 0/0
apply split merge : 1.63 us (0.5%)
LB compute : 293.70 us (92.8%)
LB move op cnt : 0
LB apply : 4.27 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.57 us (66.1%)
Info: cfl dt = 0.001582438719197088 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2728e+05 | 262144 | 1 | 3.169e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.97885632252063 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8101269616829436, dt = 0.001582438719197088
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.77 us (2.1%)
patch tree reduce : 1.68 us (0.5%)
gen split merge : 1.02 us (0.3%)
split / merge op : 0/0
apply split merge : 1.55 us (0.5%)
LB compute : 296.72 us (93.2%)
LB move op cnt : 0
LB apply : 3.88 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.49 us (66.3%)
Info: cfl dt = 0.0015823642078576104 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.0509e+05 | 262144 | 1 | 3.256e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.4957039707011 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8117094004021408, dt = 0.0015823642078576104
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.50 us (2.5%)
patch tree reduce : 1.69 us (0.6%)
gen split merge : 995.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.32 us (0.4%)
LB compute : 277.10 us (92.3%)
LB move op cnt : 0
LB apply : 4.63 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.55 us (68.9%)
Info: cfl dt = 0.0015822905619909307 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2060e+05 | 262144 | 1 | 3.195e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.83211337829704 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8132917646099984, dt = 0.0015822905619909307
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.60 us (2.3%)
patch tree reduce : 1.82 us (0.6%)
gen split merge : 977.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.53 us (0.5%)
LB compute : 266.81 us (92.3%)
LB move op cnt : 0
LB apply : 4.03 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.55 us (67.2%)
Info: cfl dt = 0.0015822177600858368 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2184e+05 | 262144 | 1 | 3.190e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.85824037900669 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8148740551719893, dt = 0.0015822177600858368
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.75 us (2.1%)
patch tree reduce : 1.85 us (0.6%)
gen split merge : 1.03 us (0.3%)
split / merge op : 0/0
apply split merge : 1.52 us (0.5%)
LB compute : 292.27 us (92.9%)
LB move op cnt : 0
LB apply : 4.19 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.49 us (67.4%)
Info: cfl dt = 0.0015821458330701045 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.3059e+05 | 262144 | 1 | 3.156e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.047333912561694 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8164562729320752, dt = 0.0015821458330701045
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.13 us (2.1%)
patch tree reduce : 1.95 us (0.7%)
gen split merge : 1.03 us (0.3%)
split / merge op : 0/0
apply split merge : 1.48 us (0.5%)
LB compute : 273.29 us (92.6%)
LB move op cnt : 0
LB apply : 4.30 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.97 us (64.7%)
Info: cfl dt = 0.0015820746211568802 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.1735e+05 | 262144 | 1 | 3.207e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.75901457258728 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8180384187651453, dt = 0.0015820746211568802
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.37 us (2.1%)
patch tree reduce : 1.74 us (0.6%)
gen split merge : 887.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.52 us (0.5%)
LB compute : 286.97 us (93.2%)
LB move op cnt : 0
LB apply : 4.02 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.88 us (65.3%)
Info: cfl dt = 0.0015820040858815071 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.9011e+05 | 262144 | 1 | 3.318e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.16627980159598 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.819620493386302, dt = 0.0015820040858815071
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.04 us (2.5%)
patch tree reduce : 1.70 us (0.6%)
gen split merge : 966.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.60 us (0.6%)
LB compute : 261.52 us (92.1%)
LB move op cnt : 0
LB apply : 4.21 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.78 us (64.6%)
Info: cfl dt = 0.0015819342149161484 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2274e+05 | 262144 | 1 | 3.186e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.874432278034913 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8212024974721837, dt = 0.0015819342149161484
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.73 us (2.4%)
patch tree reduce : 1.72 us (0.6%)
gen split merge : 997.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.50 us (0.5%)
LB compute : 264.39 us (92.5%)
LB move op cnt : 0
LB apply : 3.86 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.93 us (65.4%)
Info: cfl dt = 0.0015818649547881796 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.4096e+05 | 262144 | 1 | 3.117e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.26957421478862 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8227844316870998, dt = 0.0015818649547881796
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.56 us (2.2%)
patch tree reduce : 1.81 us (0.6%)
gen split merge : 1.10 us (0.4%)
split / merge op : 0/0
apply split merge : 1.45 us (0.5%)
LB compute : 273.77 us (92.5%)
LB move op cnt : 0
LB apply : 4.06 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 10.95 us (90.8%)
Info: cfl dt = 0.0015817962397569143 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.1777e+05 | 262144 | 1 | 3.206e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.76492515400522 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8243662966418879, dt = 0.0015817962397569143
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.95 us (2.4%)
patch tree reduce : 1.88 us (0.7%)
gen split merge : 1.01 us (0.4%)
split / merge op : 0/0
apply split merge : 1.53 us (0.5%)
LB compute : 263.65 us (92.3%)
LB move op cnt : 0
LB apply : 4.03 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.45 us (66.5%)
Info: cfl dt = 0.0015817279924629478 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2251e+05 | 262144 | 1 | 3.187e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.86701455876391 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8259480928816447, dt = 0.0015817279924629478
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.30 us (2.1%)
patch tree reduce : 1.74 us (0.6%)
gen split merge : 998.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.27 us (0.4%)
LB compute : 278.25 us (92.9%)
LB move op cnt : 0
LB apply : 4.22 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.47 us (66.0%)
Info: cfl dt = 0.001581660124952271 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.0809e+05 | 262144 | 1 | 3.244e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.553204741395515 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8275298208741078, dt = 0.001581660124952271
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.90 us (2.3%)
patch tree reduce : 1.87 us (0.6%)
gen split merge : 956.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.70 us (0.6%)
LB compute : 283.97 us (92.6%)
LB move op cnt : 0
LB apply : 4.49 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.56 us (66.5%)
Info: cfl dt = 0.001581592559347961 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.1668e+05 | 262144 | 1 | 3.210e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.738853370692585 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.82911148099906, dt = 0.001581592559347961
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.27 us (2.4%)
patch tree reduce : 1.99 us (0.7%)
gen split merge : 1.00 us (0.3%)
split / merge op : 0/0
apply split merge : 1.51 us (0.5%)
LB compute : 279.59 us (92.4%)
LB move op cnt : 0
LB apply : 4.46 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.42 us (66.3%)
Info: cfl dt = 0.0015815252217648763 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3598e+05 | 262144 | 1 | 3.562e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.98535122282762 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.830693073558408, dt = 0.0015815252217648763
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.32 us (2.0%)
patch tree reduce : 1.70 us (0.5%)
gen split merge : 976.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.45 us (0.4%)
LB compute : 300.84 us (93.3%)
LB move op cnt : 0
LB apply : 4.12 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.53 us (67.5%)
Info: cfl dt = 0.0015814580416405712 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.2004e+05 | 262144 | 1 | 3.641e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.63847004353466 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8322745987801727, dt = 0.0015814580416405712
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.87 us (2.2%)
patch tree reduce : 1.93 us (0.6%)
gen split merge : 930.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.34 us (0.4%)
LB compute : 286.16 us (92.7%)
LB move op cnt : 0
LB apply : 4.25 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.58 us (68.6%)
Info: cfl dt = 0.0015813909588030556 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.5103e+05 | 262144 | 1 | 3.080e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.48264997674887 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8338560568218134, dt = 0.0015813909588030556
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.16 us (2.7%)
patch tree reduce : 1.63 us (0.6%)
gen split merge : 911.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.46 us (0.5%)
LB compute : 244.89 us (91.8%)
LB move op cnt : 0
LB apply : 4.33 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.57 us (66.5%)
Info: cfl dt = 0.0015813239295782195 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2895e+05 | 262144 | 1 | 3.162e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.002378308354047 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8354374477806166, dt = 0.0015813239295782195
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.48 us (2.2%)
patch tree reduce : 29.00 us (9.8%)
gen split merge : 1.03 us (0.3%)
split / merge op : 0/0
apply split merge : 1.60 us (0.5%)
LB compute : 245.41 us (83.3%)
LB move op cnt : 0
LB apply : 4.50 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.79 us (71.6%)
Info: cfl dt = 0.001581256929384904 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2523e+05 | 262144 | 1 | 3.177e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.920947464423136 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.837018771710195, dt = 0.001581256929384904
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.52 us (2.2%)
patch tree reduce : 1.69 us (0.6%)
gen split merge : 922.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.45 us (0.5%)
LB compute : 273.69 us (92.7%)
LB move op cnt : 0
LB apply : 4.32 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.64 us (70.1%)
Info: cfl dt = 0.001581189951230182 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.9128e+05 | 262144 | 1 | 3.313e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.182895055727315 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8386000286395798, dt = 0.001581189951230182
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.86 us (2.6%)
patch tree reduce : 1.87 us (0.7%)
gen split merge : 1.00 us (0.4%)
split / merge op : 0/0
apply split merge : 1.50 us (0.6%)
LB compute : 243.96 us (91.8%)
LB move op cnt : 0
LB apply : 4.17 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.49 us (68.3%)
Info: cfl dt = 0.0015811229999034815 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.7663e+05 | 262144 | 1 | 3.375e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.86390094516639 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.84018121859081, dt = 0.0015811229999034815
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.76 us (2.3%)
patch tree reduce : 1.73 us (0.6%)
gen split merge : 867.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.67 us (0.6%)
LB compute : 271.31 us (92.5%)
LB move op cnt : 0
LB apply : 4.46 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.41 us (67.1%)
Info: cfl dt = 0.0015810560678330737 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2057e+05 | 262144 | 1 | 3.195e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.817394309667677 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8417623415907134, dt = 0.0015810560678330737
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.29 us (2.4%)
patch tree reduce : 2.03 us (0.7%)
gen split merge : 1.09 us (0.4%)
split / merge op : 0/0
apply split merge : 1.49 us (0.5%)
LB compute : 277.50 us (92.4%)
LB move op cnt : 0
LB apply : 4.09 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.53 us (68.8%)
Info: cfl dt = 0.0015809891210397137 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2934e+05 | 262144 | 1 | 3.161e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.007064678724653 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8433433976585465, dt = 0.0015809891210397137
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.69 us (2.2%)
patch tree reduce : 1.68 us (0.5%)
gen split merge : 940.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.61 us (0.5%)
LB compute : 287.89 us (93.0%)
LB move op cnt : 0
LB apply : 4.25 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.50 us (65.7%)
Info: cfl dt = 0.0015809220888743872 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2364e+05 | 262144 | 1 | 3.183e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.88244064878708 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8449243867795861, dt = 0.0015809220888743872
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.71 us (2.1%)
patch tree reduce : 1.92 us (0.6%)
gen split merge : 1.05 us (0.3%)
split / merge op : 0/0
apply split merge : 1.45 us (0.5%)
LB compute : 292.84 us (93.0%)
LB move op cnt : 0
LB apply : 4.20 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.52 us (67.9%)
Info: cfl dt = 0.001580854879154291 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.8350e+05 | 262144 | 1 | 3.346e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.010408524117704 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8465053088684604, dt = 0.001580854879154291
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.67 us (2.0%)
patch tree reduce : 1.83 us (0.6%)
gen split merge : 1.02 us (0.3%)
split / merge op : 0/0
apply split merge : 1.35 us (0.4%)
LB compute : 305.94 us (93.5%)
LB move op cnt : 0
LB apply : 4.07 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.50 us (64.9%)
Info: cfl dt = 0.0015807874013534528 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.1070e+05 | 262144 | 1 | 3.234e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.599978273416575 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8480861637476147, dt = 0.0015807874013534528
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.12 us (2.4%)
patch tree reduce : 1.94 us (0.6%)
gen split merge : 915.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.49 us (0.5%)
LB compute : 278.80 us (92.5%)
LB move op cnt : 0
LB apply : 4.09 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.49 us (64.8%)
Info: cfl dt = 0.0015807195847624671 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2691e+05 | 262144 | 1 | 3.170e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.951299969353297 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.849666951148968, dt = 0.0015807195847624671
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.96 us (2.2%)
patch tree reduce : 1.91 us (0.6%)
gen split merge : 892.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.93 us (0.6%)
LB compute : 281.68 us (89.6%)
LB move op cnt : 0
LB apply : 13.91 us (4.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.46 us (66.4%)
Info: cfl dt = 0.0015806513836294329 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2009e+05 | 262144 | 1 | 3.197e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.802343834687388 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8512476707337304, dt = 0.0008356625996028821
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.91 us (2.2%)
patch tree reduce : 1.77 us (0.6%)
gen split merge : 975.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.63 us (0.5%)
LB compute : 296.26 us (93.1%)
LB move op cnt : 0
LB apply : 4.35 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.81 us (63.4%)
Info: cfl dt = 0.0015806232894894 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.1921e+05 | 262144 | 1 | 3.200e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9.401283686379571 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 400.734202219 (s) [Godunov][rank=0]
Info: dump to _to_trash/ramses_kh/periodic_0015.vtk [VTK Dump][rank=0]
- took 34.99 ms, bandwidth = 1.17 GB/s
amr::Godunov: t = 1.8520833333333333, dt = 0.0015806232894894
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.99 us (2.3%)
patch tree reduce : 1.76 us (0.5%)
gen split merge : 1.02 us (0.3%)
split / merge op : 0/0
apply split merge : 1.62 us (0.5%)
LB compute : 298.97 us (87.7%)
LB move op cnt : 0
LB apply : 22.54 us (6.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.58 us (67.6%)
Info: cfl dt = 0.0015805507457941795 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.5484e+05 | 262144 | 1 | 3.473e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.384951285889258 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8536639566228228, dt = 0.0015805507457941795
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.56 us (2.5%)
patch tree reduce : 1.97 us (0.6%)
gen split merge : 947.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.42 us (0.5%)
LB compute : 282.80 us (92.5%)
LB move op cnt : 0
LB apply : 4.09 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.46 us (65.5%)
Info: cfl dt = 0.0015804771659557696 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3655e+05 | 262144 | 1 | 3.559e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.987162794228423 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.855244507368617, dt = 0.0015804771659557696
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.91 us (2.7%)
patch tree reduce : 1.82 us (0.7%)
gen split merge : 1.00 us (0.4%)
split / merge op : 0/0
apply split merge : 1.85 us (0.7%)
LB compute : 238.05 us (91.4%)
LB move op cnt : 0
LB apply : 4.11 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.44 us (65.2%)
Info: cfl dt = 0.0015804039544034248 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.5833e+05 | 262144 | 1 | 3.054e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.629653195606053 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8568249845345728, dt = 0.0015804039544034248
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.16 us (2.7%)
patch tree reduce : 1.83 us (0.7%)
gen split merge : 844.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.48 us (0.6%)
LB compute : 239.07 us (91.5%)
LB move op cnt : 0
LB apply : 4.30 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.47 us (65.8%)
Info: cfl dt = 0.0015803317231266674 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.0474e+05 | 262144 | 1 | 3.720e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.295352406953837 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8584053884889762, dt = 0.0015803317231266674
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.84 us (2.6%)
patch tree reduce : 1.98 us (0.8%)
gen split merge : 824.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.46 us (0.6%)
LB compute : 241.31 us (91.5%)
LB move op cnt : 0
LB apply : 4.43 us (1.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.49 us (66.1%)
Info: cfl dt = 0.0015802606009600057 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.3254e+05 | 262144 | 1 | 3.149e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.068241119456168 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8599857202121028, dt = 0.0015802606009600057
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.72 us (2.2%)
patch tree reduce : 1.86 us (0.6%)
gen split merge : 1.05 us (0.3%)
split / merge op : 0/0
apply split merge : 1.62 us (0.5%)
LB compute : 281.81 us (92.8%)
LB move op cnt : 0
LB apply : 4.03 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.80 us (62.6%)
Info: cfl dt = 0.0015801904810615463 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.1794e+05 | 262144 | 1 | 3.205e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.750597504761245 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.861565980813063, dt = 0.0015801904810615463
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.84 us (2.2%)
patch tree reduce : 1.78 us (0.6%)
gen split merge : 1.21 us (0.4%)
split / merge op : 0/0
apply split merge : 1.43 us (0.5%)
LB compute : 284.49 us (92.9%)
LB move op cnt : 0
LB apply : 3.83 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.48 us (65.2%)
Info: cfl dt = 0.0015801211301293627 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2803e+05 | 262144 | 1 | 3.166e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.96870764101654 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8631461712941244, dt = 0.0015801211301293627
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.12 us (2.3%)
patch tree reduce : 2.06 us (0.7%)
gen split merge : 1.05 us (0.3%)
split / merge op : 0/0
apply split merge : 1.40 us (0.4%)
LB compute : 289.93 us (92.7%)
LB move op cnt : 0
LB apply : 4.44 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.45 us (66.4%)
Info: cfl dt = 0.0015800522603152541 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.1614e+05 | 262144 | 1 | 3.212e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.710011546913172 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8647262924242538, dt = 0.0015800522603152541
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.71 us (2.1%)
patch tree reduce : 1.88 us (0.6%)
gen split merge : 1.09 us (0.3%)
split / merge op : 0/0
apply split merge : 1.50 us (0.5%)
LB compute : 304.69 us (93.2%)
LB move op cnt : 0
LB apply : 4.38 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.03 us (67.3%)
Info: cfl dt = 0.0015799835648910476 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.0119e+05 | 262144 | 1 | 3.272e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.38471743881176 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8663063446845691, dt = 0.0015799835648910476
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.33 us (2.5%)
patch tree reduce : 1.98 us (0.7%)
gen split merge : 932.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.29 us (0.4%)
LB compute : 271.32 us (92.3%)
LB move op cnt : 0
LB apply : 3.82 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.49 us (65.4%)
Info: cfl dt = 0.0015799147390715704 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.3284e+05 | 262144 | 1 | 3.148e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.070769126391767 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8678863282494602, dt = 0.0015799147390715704
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.53 us (2.2%)
patch tree reduce : 1.67 us (0.6%)
gen split merge : 969.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.51 us (0.5%)
LB compute : 274.99 us (92.7%)
LB move op cnt : 0
LB apply : 4.36 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.50 us (65.8%)
Info: cfl dt = 0.0015798454978037915 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.6821e+05 | 262144 | 1 | 3.412e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.667737206510424 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8694662429885318, dt = 0.0015798454978037915
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.31 us (2.0%)
patch tree reduce : 1.74 us (0.5%)
gen split merge : 863.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.32 us (0.4%)
LB compute : 299.92 us (93.5%)
LB move op cnt : 0
LB apply : 4.08 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.59 us (67.6%)
Info: cfl dt = 0.0015797755957472578 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.1643e+05 | 262144 | 1 | 3.211e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.71305754787952 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8710460884863356, dt = 0.0015797755957472578
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.21 us (2.4%)
patch tree reduce : 1.88 us (0.6%)
gen split merge : 975.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.54 us (0.5%)
LB compute : 280.12 us (92.6%)
LB move op cnt : 0
LB apply : 4.12 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.36 us (63.1%)
Info: cfl dt = 0.0015797048664977333 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.8872e+05 | 262144 | 1 | 3.324e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.111186074519306 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8726258640820828, dt = 0.0015797048664977333
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.84 us (2.0%)
patch tree reduce : 1.95 us (0.6%)
gen split merge : 824.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.26 us (0.4%)
LB compute : 318.45 us (93.6%)
LB move op cnt : 0
LB apply : 4.48 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.54 us (66.9%)
Info: cfl dt = 0.001579633315408822 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 6.8026e+05 | 262144 | 1 | 3.854e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.757487926783453 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8742055689485806, dt = 0.001579633315408822
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.98 us (2.2%)
patch tree reduce : 1.83 us (0.6%)
gen split merge : 956.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.33 us (0.4%)
LB compute : 302.54 us (93.3%)
LB move op cnt : 0
LB apply : 4.08 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.58 us (67.9%)
Info: cfl dt = 0.0015795609701777585 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 6.7217e+05 | 262144 | 1 | 3.900e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.581355928658546 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8757852022639894, dt = 0.0015795609701777585
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.43 us (1.8%)
patch tree reduce : 1.92 us (0.5%)
gen split merge : 974.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.50 us (0.4%)
LB compute : 332.79 us (93.8%)
LB move op cnt : 0
LB apply : 4.35 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.61 us (67.0%)
Info: cfl dt = 0.0015794878618322922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.1248e+05 | 262144 | 1 | 3.226e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.62439386720533 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8773647632341672, dt = 0.0015794878618322922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.85 us (2.6%)
patch tree reduce : 1.94 us (0.7%)
gen split merge : 1.07 us (0.4%)
split / merge op : 0/0
apply split merge : 1.39 us (0.5%)
LB compute : 243.54 us (91.8%)
LB move op cnt : 0
LB apply : 4.04 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.84 us (64.9%)
Info: cfl dt = 0.0015794140291659502 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2857e+05 | 262144 | 1 | 3.164e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.972386224295732 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8789442510959995, dt = 0.0015794140291659502
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.16 us (2.2%)
patch tree reduce : 1.72 us (0.5%)
gen split merge : 898.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.28 us (0.4%)
LB compute : 308.48 us (93.4%)
LB move op cnt : 0
LB apply : 4.37 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.68 us (68.3%)
Info: cfl dt = 0.0015793395484693911 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2070e+05 | 262144 | 1 | 3.194e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.801032726474613 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8805236651251656, dt = 0.0015793395484693911
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.19 us (2.7%)
patch tree reduce : 1.97 us (0.7%)
gen split merge : 999.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.32 us (0.5%)
LB compute : 247.05 us (91.6%)
LB move op cnt : 0
LB apply : 4.37 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.37 us (63.9%)
Info: cfl dt = 0.0015792645326103555 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2532e+05 | 262144 | 1 | 3.176e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.900388734961616 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.882103004673635, dt = 0.0015792645326103555
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.31 us (2.5%)
patch tree reduce : 1.76 us (0.6%)
gen split merge : 877.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.54 us (0.5%)
LB compute : 268.62 us (92.2%)
LB move op cnt : 0
LB apply : 4.29 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.49 us (65.6%)
Info: cfl dt = 0.0015791891299893534 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.0057e+05 | 262144 | 1 | 3.274e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.362752419947515 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8836822692062452, dt = 0.0015791891299893534
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.35 us (2.0%)
patch tree reduce : 1.81 us (0.6%)
gen split merge : 951.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.31 us (0.4%)
LB compute : 288.85 us (93.1%)
LB move op cnt : 0
LB apply : 4.14 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.43 us (64.1%)
Info: cfl dt = 0.0015791135021103932 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2163e+05 | 262144 | 1 | 3.191e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.81865366901663 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8852614583362346, dt = 0.0015791135021103932
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.80 us (2.3%)
patch tree reduce : 1.83 us (0.6%)
gen split merge : 987.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.86 us (0.6%)
LB compute : 277.06 us (92.4%)
LB move op cnt : 0
LB apply : 4.08 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.37 us (64.3%)
Info: cfl dt = 0.0015790377921010294 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.1879e+05 | 262144 | 1 | 3.202e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.756058147308675 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.886840571838345, dt = 0.0015790377921010294
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.77 us (2.3%)
patch tree reduce : 1.74 us (0.6%)
gen split merge : 940.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.40 us (0.5%)
LB compute : 273.29 us (92.7%)
LB move op cnt : 0
LB apply : 4.31 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.78 us (63.9%)
Info: cfl dt = 0.001578962097834102 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2723e+05 | 262144 | 1 | 3.169e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.93841117309095 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.888419609630446, dt = 0.001578962097834102
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.71 us (2.2%)
patch tree reduce : 1.71 us (0.6%)
gen split merge : 1.01 us (0.3%)
split / merge op : 0/0
apply split merge : 1.59 us (0.5%)
LB compute : 283.54 us (92.9%)
LB move op cnt : 0
LB apply : 4.04 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.53 us (67.1%)
Info: cfl dt = 0.0015788864564034947 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3557e+05 | 262144 | 1 | 3.564e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.949914025567315 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8899985717282801, dt = 0.0015788864564034947
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.69 us (2.3%)
patch tree reduce : 1.68 us (0.6%)
gen split merge : 1.16 us (0.4%)
split / merge op : 0/0
apply split merge : 1.38 us (0.5%)
LB compute : 266.40 us (92.5%)
LB move op cnt : 0
LB apply : 3.94 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.45 us (64.6%)
Info: cfl dt = 0.001578810831956447 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2240e+05 | 262144 | 1 | 3.188e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.83186668111889 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8915774581846836, dt = 0.001578810831956447
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.58 us (2.2%)
patch tree reduce : 1.81 us (0.6%)
gen split merge : 954.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.61 us (0.5%)
LB compute : 278.73 us (92.8%)
LB move op cnt : 0
LB apply : 4.29 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.50 us (65.9%)
Info: cfl dt = 0.001578735150092831 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2020e+05 | 262144 | 1 | 3.196e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.78330237259758 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8931562690166401, dt = 0.001578735150092831
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.56 us (2.5%)
patch tree reduce : 2.02 us (0.8%)
gen split merge : 924.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.36 us (0.5%)
LB compute : 245.67 us (91.9%)
LB move op cnt : 0
LB apply : 4.15 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.46 us (66.0%)
Info: cfl dt = 0.0015786593261673094 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2381e+05 | 262144 | 1 | 3.182e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.860738442793664 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.894735004166733, dt = 0.0015786593261673094
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.15 us (2.6%)
patch tree reduce : 1.94 us (0.7%)
gen split merge : 1.02 us (0.4%)
split / merge op : 0/0
apply split merge : 1.65 us (0.6%)
LB compute : 252.54 us (91.7%)
LB move op cnt : 0
LB apply : 4.08 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.51 us (66.5%)
Info: cfl dt = 0.0015785832842373556 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2126e+05 | 262144 | 1 | 3.192e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.804550088099955 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8963136634929003, dt = 0.0015785832842373556
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.88 us (2.3%)
patch tree reduce : 1.82 us (0.6%)
gen split merge : 998.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.34 us (0.4%)
LB compute : 281.46 us (92.8%)
LB move op cnt : 0
LB apply : 4.15 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.60 us (66.3%)
Info: cfl dt = 0.0015785069791278928 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2834e+05 | 262144 | 1 | 3.165e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.95713475562945 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8978922467771377, dt = 0.0015785069791278928
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.94 us (2.3%)
patch tree reduce : 1.77 us (0.6%)
gen split merge : 861.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.42 us (0.5%)
LB compute : 280.86 us (92.7%)
LB move op cnt : 0
LB apply : 4.31 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.99 us (65.4%)
Info: cfl dt = 0.001578430449923564 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3524e+05 | 262144 | 1 | 3.565e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.938145764276324 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8994707537562656, dt = 0.001578430449923564
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.06 us (2.5%)
patch tree reduce : 1.85 us (0.7%)
gen split merge : 988.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.88 us (0.7%)
LB compute : 259.64 us (91.9%)
LB move op cnt : 0
LB apply : 4.64 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.48 us (65.2%)
Info: cfl dt = 0.0015783538091770322 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2032e+05 | 262144 | 1 | 3.196e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.781519983226787 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9010491842061892, dt = 0.0015783538091770322
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.65 us (2.1%)
patch tree reduce : 1.85 us (0.6%)
gen split merge : 1.01 us (0.3%)
split / merge op : 0/0
apply split merge : 1.35 us (0.4%)
LB compute : 288.65 us (92.9%)
LB move op cnt : 0
LB apply : 4.14 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.41 us (62.3%)
Info: cfl dt = 0.0015782774608375891 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.0760e+05 | 262144 | 1 | 3.246e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.504940970550603 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.902627538015366, dt = 0.0015782774608375891
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.72 us (2.1%)
patch tree reduce : 1.80 us (0.6%)
gen split merge : 964.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.32 us (0.4%)
LB compute : 300.87 us (93.3%)
LB move op cnt : 0
LB apply : 4.27 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.86 us (65.8%)
Info: cfl dt = 0.0015782015331111546 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.1155e+05 | 262144 | 1 | 3.230e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.589884376796167 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9042058154762036, dt = 0.0015782015331111546
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.98 us (2.7%)
patch tree reduce : 1.71 us (0.7%)
gen split merge : 968.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.38 us (0.5%)
LB compute : 240.72 us (91.7%)
LB move op cnt : 0
LB apply : 4.41 us (1.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.40 us (65.1%)
Info: cfl dt = 0.0015781258993824844 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2960e+05 | 262144 | 1 | 3.160e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.98026295067887 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9057840170093148, dt = 0.0015781258993824844
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.76 us (2.6%)
patch tree reduce : 1.95 us (0.7%)
gen split merge : 875.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.55 us (0.6%)
LB compute : 241.09 us (91.8%)
LB move op cnt : 0
LB apply : 4.12 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.39 us (65.9%)
Info: cfl dt = 0.0015780500849913292 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.3607e+05 | 262144 | 1 | 3.135e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.11950530290185 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9073621429086973, dt = 0.0015780500849913292
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.47 us (2.4%)
patch tree reduce : 1.65 us (0.5%)
gen split merge : 902.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.38 us (0.5%)
LB compute : 284.20 us (92.6%)
LB move op cnt : 0
LB apply : 4.33 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.56 us (66.3%)
Info: cfl dt = 0.0015779740528016344 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.1420e+05 | 262144 | 1 | 3.220e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.644724133157943 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9089401929936887, dt = 0.0015779740528016344
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.79 us (2.3%)
patch tree reduce : 1.94 us (0.7%)
gen split merge : 995.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.35 us (0.5%)
LB compute : 273.49 us (92.5%)
LB move op cnt : 0
LB apply : 3.98 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.35 us (62.6%)
Info: cfl dt = 0.001577897729433147 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.1879e+05 | 262144 | 1 | 3.202e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.743402320687288 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9105181670464904, dt = 0.001577897729433147
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.29 us (2.0%)
patch tree reduce : 1.75 us (0.6%)
gen split merge : 863.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.53 us (0.5%)
LB compute : 295.90 us (93.2%)
LB move op cnt : 0
LB apply : 3.97 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.37 us (64.0%)
Info: cfl dt = 0.0015778209900359954 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.6146e+05 | 262144 | 1 | 3.443e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.50015234019085 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9120960647759235, dt = 0.0015778209900359954
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.85 us (2.4%)
patch tree reduce : 2.02 us (0.7%)
gen split merge : 1.07 us (0.4%)
split / merge op : 0/0
apply split merge : 1.55 us (0.5%)
LB compute : 268.18 us (92.3%)
LB move op cnt : 0
LB apply : 4.19 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.42 us (64.2%)
Info: cfl dt = 0.0015777436935336046 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.2831e+05 | 262144 | 1 | 3.599e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.781092843004156 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9136738857659594, dt = 0.0015777436935336046
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.70 us (2.2%)
patch tree reduce : 1.71 us (0.6%)
gen split merge : 1.10 us (0.4%)
split / merge op : 0/0
apply split merge : 1.49 us (0.5%)
LB compute : 284.05 us (92.7%)
LB move op cnt : 0
LB apply : 4.33 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.49 us (67.1%)
Info: cfl dt = 0.0015776657051518681 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2175e+05 | 262144 | 1 | 3.190e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.804879057671016 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.915251629459493, dt = 0.0015776657051518681
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.91 us (2.7%)
patch tree reduce : 1.92 us (0.7%)
gen split merge : 957.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.38 us (0.5%)
LB compute : 234.20 us (91.1%)
LB move op cnt : 0
LB apply : 4.47 us (1.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.41 us (64.4%)
Info: cfl dt = 0.0015775869364822712 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.1427e+05 | 262144 | 1 | 3.219e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.641986365704284 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9168292951646448, dt = 0.0015775869364822712
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.96 us (2.3%)
patch tree reduce : 1.73 us (0.6%)
gen split merge : 1.00 us (0.3%)
split / merge op : 0/0
apply split merge : 1.81 us (0.6%)
LB compute : 282.51 us (92.7%)
LB move op cnt : 0
LB apply : 4.17 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.57 us (67.5%)
Info: cfl dt = 0.0015774929207565747 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.1807e+05 | 262144 | 1 | 3.204e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.723410016044546 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.918406882101127, dt = 0.0015774929207565747
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.25 us (2.8%)
patch tree reduce : 1.83 us (0.7%)
gen split merge : 965.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.23 us (0.5%)
LB compute : 240.14 us (91.5%)
LB move op cnt : 0
LB apply : 4.39 us (1.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.44 us (66.6%)
Info: cfl dt = 0.0015773791727278128 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.3076e+05 | 262144 | 1 | 3.155e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.997332512467697 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9199843750218837, dt = 0.0015773791727278128
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.17 us (2.5%)
patch tree reduce : 1.73 us (0.6%)
gen split merge : 995.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.66 us (0.6%)
LB compute : 262.46 us (92.0%)
LB move op cnt : 0
LB apply : 4.36 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.42 us (66.8%)
Info: cfl dt = 0.0015772642528392587 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.4945e+05 | 262144 | 1 | 3.086e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.40080486865796 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9215617541946115, dt = 0.0015772642528392587
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.75 us (2.5%)
patch tree reduce : 1.98 us (0.7%)
gen split merge : 841.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.50 us (0.6%)
LB compute : 237.89 us (88.4%)
LB move op cnt : 0
LB apply : 13.29 us (4.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.57 us (66.7%)
Info: cfl dt = 0.001577148327744611 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.4272e+05 | 262144 | 1 | 3.111e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.253728325026945 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9231390184474508, dt = 0.001577148327744611
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.13 us (2.5%)
patch tree reduce : 1.70 us (0.6%)
gen split merge : 943.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.49 us (0.5%)
LB compute : 260.34 us (92.1%)
LB move op cnt : 0
LB apply : 4.49 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.41 us (65.8%)
Info: cfl dt = 0.0015770316393149506 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 6.8422e+05 | 262144 | 1 | 3.831e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.819505495818708 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9247161667751955, dt = 0.0015770316393149506
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.60 us (2.0%)
patch tree reduce : 1.73 us (0.5%)
gen split merge : 954.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.30 us (0.4%)
LB compute : 303.06 us (93.4%)
LB move op cnt : 0
LB apply : 4.06 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.40 us (65.4%)
Info: cfl dt = 0.0015769144607263239 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.5088e+05 | 262144 | 1 | 3.081e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.427695596759516 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9262931984145104, dt = 0.0015769144607263239
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.47 us (2.1%)
patch tree reduce : 1.92 us (0.6%)
gen split merge : 1.07 us (0.3%)
split / merge op : 0/0
apply split merge : 1.61 us (0.5%)
LB compute : 287.64 us (92.8%)
LB move op cnt : 0
LB apply : 4.17 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.55 us (67.2%)
Info: cfl dt = 0.0015767970554532646 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.1847e+05 | 262144 | 1 | 3.203e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.72447401823004 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9278701128752367, dt = 0.0015767970554532646
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.57 us (2.4%)
patch tree reduce : 1.86 us (0.7%)
gen split merge : 1.09 us (0.4%)
split / merge op : 0/0
apply split merge : 1.34 us (0.5%)
LB compute : 250.10 us (91.9%)
LB move op cnt : 0
LB apply : 4.48 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.45 us (64.5%)
Info: cfl dt = 0.0015766796100187086 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2764e+05 | 262144 | 1 | 3.167e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.921756298873817 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.92944690993069, dt = 0.0015766796100187086
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.91 us (2.6%)
patch tree reduce : 1.93 us (0.7%)
gen split merge : 988.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.30 us (0.5%)
LB compute : 243.79 us (91.6%)
LB move op cnt : 0
LB apply : 4.12 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.62 us (67.0%)
Info: cfl dt = 0.0015765621228255023 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2268e+05 | 262144 | 1 | 3.186e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.813083240913347 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9310235895407086, dt = 0.0015765621228255023
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.58 us (2.5%)
patch tree reduce : 1.77 us (0.7%)
gen split merge : 1.01 us (0.4%)
split / merge op : 0/0
apply split merge : 1.51 us (0.6%)
LB compute : 237.72 us (91.6%)
LB move op cnt : 0
LB apply : 4.29 us (1.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.51 us (66.7%)
Info: cfl dt = 0.0015764445321348485 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.1591e+05 | 262144 | 1 | 3.213e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.665162699643957 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.932600151663534, dt = 0.0015764445321348485
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.75 us (2.2%)
patch tree reduce : 1.75 us (0.6%)
gen split merge : 982.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.57 us (0.5%)
LB compute : 278.72 us (92.7%)
LB move op cnt : 0
LB apply : 4.38 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.37 us (65.6%)
Info: cfl dt = 0.0015763269358672943 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.1767e+05 | 262144 | 1 | 3.206e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.701984020384025 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.934176596195669, dt = 0.0015763269358672943
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.15 us (2.2%)
patch tree reduce : 1.75 us (0.6%)
gen split merge : 1.05 us (0.3%)
split / merge op : 0/0
apply split merge : 1.39 us (0.4%)
LB compute : 295.94 us (93.0%)
LB move op cnt : 0
LB apply : 4.29 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.70 us (67.4%)
Info: cfl dt = 0.0015762095538758923 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.0601e+05 | 262144 | 1 | 3.252e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.448205592210282 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9357529231315362, dt = 0.0015762095538758923
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.95 us (2.2%)
patch tree reduce : 1.71 us (0.5%)
gen split merge : 1.10 us (0.4%)
split / merge op : 0/0
apply split merge : 1.43 us (0.5%)
LB compute : 288.44 us (92.9%)
LB move op cnt : 0
LB apply : 4.51 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.50 us (66.5%)
Info: cfl dt = 0.001576092661739618 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.1007e+05 | 262144 | 1 | 3.236e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.534685844216025 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.937329132685412, dt = 0.001576092661739618
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.63 us (2.5%)
patch tree reduce : 1.99 us (0.8%)
gen split merge : 956.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.34 us (0.5%)
LB compute : 243.62 us (91.7%)
LB move op cnt : 0
LB apply : 4.34 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.44 us (66.4%)
Info: cfl dt = 0.001575976525308858 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.0746e+05 | 262144 | 1 | 3.247e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.476912139760902 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9389052253471517, dt = 0.001575976525308858
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.93 us (2.6%)
patch tree reduce : 1.83 us (0.7%)
gen split merge : 989.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.55 us (0.6%)
LB compute : 241.73 us (91.6%)
LB move op cnt : 0
LB apply : 4.21 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.39 us (65.0%)
Info: cfl dt = 0.00157586135869243 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.5290e+05 | 262144 | 1 | 3.482e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.294840094108377 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9404812018724606, dt = 0.00157586135869243
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.75 us (2.4%)
patch tree reduce : 1.85 us (0.7%)
gen split merge : 1.12 us (0.4%)
split / merge op : 0/0
apply split merge : 1.58 us (0.6%)
LB compute : 261.03 us (92.1%)
LB move op cnt : 0
LB apply : 4.04 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.49 us (66.8%)
Info: cfl dt = 0.0015757472772909668 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2077e+05 | 262144 | 1 | 3.194e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.762356005383328 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9420570632311531, dt = 0.0015757472772909668
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.92 us (2.6%)
patch tree reduce : 1.66 us (0.6%)
gen split merge : 891.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.50 us (0.6%)
LB compute : 241.72 us (91.8%)
LB move op cnt : 0
LB apply : 3.89 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.43 us (67.2%)
Info: cfl dt = 0.0015756343421861484 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2219e+05 | 262144 | 1 | 3.188e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.791860696115634 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9436328105084442, dt = 0.0015756343421861484
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.49 us (2.3%)
patch tree reduce : 1.85 us (0.7%)
gen split merge : 1.01 us (0.4%)
split / merge op : 0/0
apply split merge : 1.51 us (0.5%)
LB compute : 256.71 us (92.1%)
LB move op cnt : 0
LB apply : 4.45 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.57 us (68.5%)
Info: cfl dt = 0.0015755226095214598 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2109e+05 | 262144 | 1 | 3.193e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.766876810777724 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9452084448506304, dt = 0.0015755226095214598
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.96 us (2.3%)
patch tree reduce : 1.74 us (0.6%)
gen split merge : 935.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.56 us (0.5%)
LB compute : 276.47 us (92.5%)
LB move op cnt : 0
LB apply : 4.35 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.51 us (67.6%)
Info: cfl dt = 0.0015754121449091034 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2030e+05 | 262144 | 1 | 3.196e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.74836691044079 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.946783967460152, dt = 0.0015754121449091034
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.72 us (2.1%)
patch tree reduce : 1.99 us (0.6%)
gen split merge : 966.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.40 us (0.4%)
LB compute : 292.60 us (93.0%)
LB move op cnt : 0
LB apply : 3.99 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.50 us (66.2%)
Info: cfl dt = 0.0015753022980713927 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.1256e+05 | 262144 | 1 | 3.226e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.579694383513985 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9483593796050611, dt = 0.0015753022980713927
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.78 us (2.1%)
patch tree reduce : 1.69 us (0.5%)
gen split merge : 893.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.51 us (0.5%)
LB compute : 298.45 us (93.2%)
LB move op cnt : 0
LB apply : 4.23 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.50 us (65.9%)
Info: cfl dt = 0.0015751932056359975 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.1873e+05 | 262144 | 1 | 3.202e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.71196514494744 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9499346819031325, dt = 0.0015751932056359975
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.34 us (2.1%)
patch tree reduce : 1.82 us (0.6%)
gen split merge : 1.01 us (0.3%)
split / merge op : 0/0
apply split merge : 1.54 us (0.5%)
LB compute : 279.41 us (92.6%)
LB move op cnt : 0
LB apply : 4.64 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.52 us (67.2%)
Info: cfl dt = 0.0015750850018395111 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2121e+05 | 262144 | 1 | 3.192e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.764385409123594 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9515098751087685, dt = 0.0015750850018395111
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.38 us (2.3%)
patch tree reduce : 1.73 us (0.6%)
gen split merge : 844.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.31 us (0.5%)
LB compute : 260.02 us (92.6%)
LB move op cnt : 0
LB apply : 4.38 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.38 us (64.8%)
Info: cfl dt = 0.0015749777457034092 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.4827e+05 | 262144 | 1 | 3.090e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.348403182006525 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.953084960110608, dt = 0.0015749777457034092
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.29 us (2.5%)
patch tree reduce : 1.80 us (0.6%)
gen split merge : 933.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.37 us (0.5%)
LB compute : 268.31 us (92.4%)
LB move op cnt : 0
LB apply : 4.39 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.49 us (66.4%)
Info: cfl dt = 0.0015748713935884663 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.4249e+05 | 262144 | 1 | 3.531e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.059296713728553 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9546599378563114, dt = 0.0015748713935884663
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.47 us (2.2%)
patch tree reduce : 1.74 us (0.6%)
gen split merge : 1.01 us (0.3%)
split / merge op : 0/0
apply split merge : 1.33 us (0.5%)
LB compute : 271.03 us (92.6%)
LB move op cnt : 0
LB apply : 4.20 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.36 us (63.1%)
Info: cfl dt = 0.001574765792795056 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.1028e+05 | 262144 | 1 | 3.235e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.524408833540363 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9562348092498998, dt = 0.001574765792795056
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.99 us (2.6%)
patch tree reduce : 1.69 us (0.6%)
gen split merge : 1.16 us (0.4%)
split / merge op : 0/0
apply split merge : 1.37 us (0.5%)
LB compute : 246.48 us (91.8%)
LB move op cnt : 0
LB apply : 3.96 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.43 us (64.9%)
Info: cfl dt = 0.0015746606767940653 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.4957e+05 | 262144 | 1 | 3.086e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.372994209011907 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.957809575042695, dt = 0.0015746606767940653
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.35 us (1.1%)
patch tree reduce : 1.82 us (0.3%)
gen split merge : 1.02 us (0.2%)
split / merge op : 0/0
apply split merge : 1.48 us (0.3%)
LB compute : 565.04 us (96.3%)
LB move op cnt : 0
LB apply : 4.56 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.28 us (73.9%)
Info: cfl dt = 0.001574555528817814 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.1425e+05 | 262144 | 1 | 3.219e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.607807483544928 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.959384235719489, dt = 0.001574555528817814
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.57 us (2.5%)
patch tree reduce : 1.65 us (0.6%)
gen split merge : 1.02 us (0.4%)
split / merge op : 0/0
apply split merge : 1.58 us (0.6%)
LB compute : 238.22 us (91.5%)
LB move op cnt : 0
LB apply : 4.51 us (1.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.36 us (65.4%)
Info: cfl dt = 0.0015744500466265971 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2779e+05 | 262144 | 1 | 3.167e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.899471087243274 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9609587912483069, dt = 0.0015744500466265971
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.50 us (2.1%)
patch tree reduce : 2.21 us (0.7%)
gen split merge : 993.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.50 us (0.5%)
LB compute : 280.59 us (92.8%)
LB move op cnt : 0
LB apply : 4.01 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.46 us (67.0%)
Info: cfl dt = 0.0015743439423451897 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.1911e+05 | 262144 | 1 | 3.200e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.710678885045205 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9625332412949335, dt = 0.0015743439423451897
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.92 us (2.2%)
patch tree reduce : 1.83 us (0.6%)
gen split merge : 1.05 us (0.3%)
split / merge op : 0/0
apply split merge : 1.41 us (0.4%)
LB compute : 294.85 us (93.1%)
LB move op cnt : 0
LB apply : 3.97 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.52 us (67.2%)
Info: cfl dt = 0.001574237034484914 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2454e+05 | 262144 | 1 | 3.179e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.826800671166794 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9641075852372787, dt = 0.001574237034484914
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.08 us (2.3%)
patch tree reduce : 1.73 us (0.6%)
gen split merge : 1.02 us (0.3%)
split / merge op : 0/0
apply split merge : 1.74 us (0.6%)
LB compute : 286.53 us (92.7%)
LB move op cnt : 0
LB apply : 4.16 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.45 us (65.0%)
Info: cfl dt = 0.0015741292166097118 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.6911e+05 | 262144 | 1 | 3.408e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.627358352434204 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9656818222717636, dt = 0.0015741292166097118
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.26 us (2.7%)
patch tree reduce : 1.81 us (0.7%)
gen split merge : 1.01 us (0.4%)
split / merge op : 0/0
apply split merge : 1.84 us (0.7%)
LB compute : 244.54 us (91.4%)
LB move op cnt : 0
LB apply : 4.21 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.38 us (61.7%)
Info: cfl dt = 0.0015740202878713034 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2259e+05 | 262144 | 1 | 3.187e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.782142373114837 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9672559514883734, dt = 0.0015740202878713034
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.62 us (2.5%)
patch tree reduce : 1.72 us (0.7%)
gen split merge : 1.03 us (0.4%)
split / merge op : 0/0
apply split merge : 1.49 us (0.6%)
LB compute : 239.01 us (91.7%)
LB move op cnt : 0
LB apply : 4.17 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.37 us (63.1%)
Info: cfl dt = 0.0015739101092634195 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2372e+05 | 262144 | 1 | 3.182e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.805461358751078 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9688299717762447, dt = 0.0015739101092634195
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.26 us (2.1%)
patch tree reduce : 1.91 us (0.6%)
gen split merge : 998.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.66 us (0.6%)
LB compute : 274.03 us (92.8%)
LB move op cnt : 0
LB apply : 3.95 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.78 us (64.5%)
Info: cfl dt = 0.0015737987297015645 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.1513e+05 | 262144 | 1 | 3.216e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.618578519253223 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.970403881885508, dt = 0.0015737987297015645
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.79 us (2.6%)
patch tree reduce : 1.90 us (0.7%)
gen split merge : 928.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.41 us (0.5%)
LB compute : 243.13 us (91.9%)
LB move op cnt : 0
LB apply : 3.84 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.35 us (64.0%)
Info: cfl dt = 0.0015736862702453705 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.5947e+05 | 262144 | 1 | 3.050e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.57550112973494 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9719776806152096, dt = 0.0015736862702453705
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.36 us (1.8%)
patch tree reduce : 1.76 us (0.5%)
gen split merge : 1.00 us (0.3%)
split / merge op : 0/0
apply split merge : 1.57 us (0.4%)
LB compute : 327.17 us (93.7%)
LB move op cnt : 0
LB apply : 4.48 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.44 us (66.1%)
Info: cfl dt = 0.0015735728023633568 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.5111e+05 | 262144 | 1 | 3.080e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.39356930776887 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.973551366885455, dt = 0.0015735728023633568
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.59 us (2.5%)
patch tree reduce : 1.77 us (0.7%)
gen split merge : 1.32 us (0.5%)
split / merge op : 0/0
apply split merge : 1.37 us (0.5%)
LB compute : 244.77 us (91.9%)
LB move op cnt : 0
LB apply : 4.09 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.37 us (61.9%)
Info: cfl dt = 0.0015734583972690165 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2543e+05 | 262144 | 1 | 3.176e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.837309076660233 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9751249396878183, dt = 0.0015734583972690165
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.05 us (2.6%)
patch tree reduce : 1.92 us (0.7%)
gen split merge : 897.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.51 us (0.6%)
LB compute : 251.11 us (91.8%)
LB move op cnt : 0
LB apply : 4.17 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.49 us (66.7%)
Info: cfl dt = 0.0015733433876565573 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2001e+05 | 262144 | 1 | 3.197e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.71899367959384 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9766983980850874, dt = 0.0015733433876565573
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.25 us (1.8%)
patch tree reduce : 1.80 us (0.5%)
gen split merge : 945.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.34 us (0.4%)
LB compute : 327.65 us (94.0%)
LB move op cnt : 0
LB apply : 3.93 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.55 us (66.5%)
Info: cfl dt = 0.0015732278618424142 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.0997e+05 | 262144 | 1 | 3.236e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.500585328312454 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.978271741472744, dt = 0.0015732278618424142
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.10 us (2.3%)
patch tree reduce : 1.75 us (0.6%)
gen split merge : 1.02 us (0.3%)
split / merge op : 0/0
apply split merge : 1.25 us (0.4%)
LB compute : 288.28 us (92.9%)
LB move op cnt : 0
LB apply : 4.13 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.48 us (66.3%)
Info: cfl dt = 0.001573112407838256 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2287e+05 | 262144 | 1 | 3.186e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.778143522205532 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9798449693345863, dt = 0.001573112407838256
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.29 us (2.1%)
patch tree reduce : 1.82 us (0.6%)
gen split merge : 1.13 us (0.4%)
split / merge op : 0/0
apply split merge : 1.36 us (0.5%)
LB compute : 272.41 us (92.6%)
LB move op cnt : 0
LB apply : 4.49 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.53 us (67.9%)
Info: cfl dt = 0.0015729978998000398 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2148e+05 | 262144 | 1 | 3.191e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.746713469180108 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9814180817424245, dt = 0.0015729978998000398
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.19 us (2.6%)
patch tree reduce : 1.71 us (0.6%)
gen split merge : 1.02 us (0.4%)
split / merge op : 0/0
apply split merge : 1.43 us (0.5%)
LB compute : 258.22 us (91.9%)
LB move op cnt : 0
LB apply : 4.29 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.49 us (67.3%)
Info: cfl dt = 0.0015728847604327889 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.5410e+05 | 262144 | 1 | 3.069e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.450201165815066 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9829910796422245, dt = 0.0013839203577754589
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.51 us (2.1%)
patch tree reduce : 1.92 us (0.6%)
gen split merge : 978.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.51 us (0.5%)
LB compute : 288.38 us (92.9%)
LB move op cnt : 0
LB apply : 4.32 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.39 us (65.3%)
Info: cfl dt = 0.001572784238966956 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.0308e+05 | 262144 | 1 | 3.264e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.262648407818775 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 428.73339770700005 (s) [Godunov][rank=0]
Info: dump to _to_trash/ramses_kh/periodic_0016.vtk [VTK Dump][rank=0]
- took 32.36 ms, bandwidth = 1.26 GB/s
amr::Godunov: t = 1.984375, dt = 0.001572784238966956
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.77 us (2.3%)
patch tree reduce : 1.79 us (0.5%)
gen split merge : 948.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.63 us (0.5%)
LB compute : 308.55 us (93.1%)
LB move op cnt : 0
LB apply : 4.25 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.35 us (64.6%)
Info: cfl dt = 0.001572670309774088 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 6.8381e+05 | 262144 | 1 | 3.834e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.769525424858942 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.985947784238967, dt = 0.001572670309774088
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.31 us (2.0%)
patch tree reduce : 1.82 us (0.6%)
gen split merge : 1.00 us (0.3%)
split / merge op : 0/0
apply split merge : 1.33 us (0.4%)
LB compute : 288.63 us (93.0%)
LB move op cnt : 0
LB apply : 4.55 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.53 us (69.2%)
Info: cfl dt = 0.001572558239837081 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2185e+05 | 262144 | 1 | 3.190e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.749860832417877 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.987520454548741, dt = 0.001572558239837081
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.39 us (2.8%)
patch tree reduce : 1.86 us (0.7%)
gen split merge : 943.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.55 us (0.6%)
LB compute : 239.64 us (91.1%)
LB move op cnt : 0
LB apply : 4.35 us (1.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.46 us (65.9%)
Info: cfl dt = 0.0015724472863284256 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2600e+05 | 262144 | 1 | 3.174e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.838133749140315 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9890930127885782, dt = 0.0015724472863284256
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.68 us (2.1%)
patch tree reduce : 1.73 us (0.5%)
gen split merge : 975.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.34 us (0.4%)
LB compute : 294.88 us (93.2%)
LB move op cnt : 0
LB apply : 4.23 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.47 us (65.5%)
Info: cfl dt = 0.0015723370604613298 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.1928e+05 | 262144 | 1 | 3.200e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.69166723411182 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9906654600749065, dt = 0.0015723370604613298
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.83 us (2.6%)
patch tree reduce : 1.79 us (0.7%)
gen split merge : 925.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.30 us (0.5%)
LB compute : 246.11 us (92.0%)
LB move op cnt : 0
LB apply : 4.33 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.38 us (65.9%)
Info: cfl dt = 0.0015722272804233313 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.4445e+05 | 262144 | 1 | 3.104e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.234037692488407 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9922377971353677, dt = 0.0015722272804233313
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.76 us (2.4%)
patch tree reduce : 1.67 us (0.6%)
gen split merge : 967.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.81 us (0.6%)
LB compute : 258.75 us (92.2%)
LB move op cnt : 0
LB apply : 4.18 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.81 us (65.0%)
Info: cfl dt = 0.001572117700738971 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2009e+05 | 262144 | 1 | 3.197e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.706767087042504 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.993810024415791, dt = 0.001572117700738971
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.95 us (2.5%)
patch tree reduce : 1.86 us (0.7%)
gen split merge : 963.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.51 us (0.5%)
LB compute : 254.00 us (91.7%)
LB move op cnt : 0
LB apply : 4.48 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.61 us (68.8%)
Info: cfl dt = 0.0015720081252827197 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.5463e+05 | 262144 | 1 | 3.067e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.45118821525597 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.99538214211653, dt = 0.0015720081252827197
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.61 us (2.1%)
patch tree reduce : 1.64 us (0.5%)
gen split merge : 1.05 us (0.3%)
split / merge op : 0/0
apply split merge : 1.70 us (0.5%)
LB compute : 300.34 us (93.3%)
LB move op cnt : 0
LB apply : 4.24 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.38 us (63.6%)
Info: cfl dt = 0.0015718984266116704 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.1599e+05 | 262144 | 1 | 3.213e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.615764567973336 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9969541502418129, dt = 0.0015718984266116704
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.29 us (2.1%)
patch tree reduce : 2.12 us (0.7%)
gen split merge : 1.01 us (0.3%)
split / merge op : 0/0
apply split merge : 1.21 us (0.4%)
LB compute : 278.95 us (93.1%)
LB move op cnt : 0
LB apply : 3.90 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.55 us (66.0%)
Info: cfl dt = 0.0015717885347377597 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.9390e+05 | 262144 | 1 | 3.302e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.13767270799786 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9985260486684246, dt = 0.0015717885347377597
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.38 us (2.1%)
patch tree reduce : 1.70 us (0.6%)
gen split merge : 962.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.44 us (0.5%)
LB compute : 285.92 us (93.1%)
LB move op cnt : 0
LB apply : 4.06 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.46 us (64.3%)
Info: cfl dt = 0.0015716784112680135 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.5533e+05 | 262144 | 1 | 3.065e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.462448111160608 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.0000978372031626, dt = 0.0015716784112680135
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.03 us (2.4%)
patch tree reduce : 1.87 us (0.6%)
gen split merge : 990.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.32 us (0.4%)
LB compute : 274.19 us (92.6%)
LB move op cnt : 0
LB apply : 4.23 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.75 us (64.4%)
Info: cfl dt = 0.0015715680753612823 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.8446e+05 | 262144 | 1 | 3.342e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.931587413529172 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.0016695156144304, dt = 0.0015715680753612823
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.81 us (2.6%)
patch tree reduce : 1.88 us (0.7%)
gen split merge : 866.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.39 us (0.5%)
LB compute : 241.81 us (91.5%)
LB move op cnt : 0
LB apply : 4.15 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.43 us (64.9%)
Info: cfl dt = 0.0015714575843124837 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.3160e+05 | 262144 | 1 | 3.152e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.947842168107872 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.0032410836897916, dt = 0.0015714575843124837
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.31 us (2.1%)
patch tree reduce : 1.83 us (0.6%)
gen split merge : 1.02 us (0.3%)
split / merge op : 0/0
apply split merge : 1.55 us (0.5%)
LB compute : 275.24 us (92.8%)
LB move op cnt : 0
LB apply : 4.00 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.88 us (65.8%)
Info: cfl dt = 0.0015713470039562217 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.0789e+05 | 262144 | 1 | 3.245e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.434736757476916 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.004812541274104, dt = 0.0015713470039562217
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.75 us (2.4%)
patch tree reduce : 1.80 us (0.7%)
gen split merge : 946.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.68 us (0.6%)
LB compute : 254.98 us (92.0%)
LB move op cnt : 0
LB apply : 4.19 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.49 us (66.6%)
Info: cfl dt = 0.001571236541763131 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.1230e+05 | 262144 | 1 | 3.227e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.52883165829184 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.00638388827806, dt = 0.001571236541763131
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.90 us (2.7%)
patch tree reduce : 1.90 us (0.7%)
gen split merge : 1.03 us (0.4%)
split / merge op : 0/0
apply split merge : 1.31 us (0.5%)
LB compute : 234.81 us (91.3%)
LB move op cnt : 0
LB apply : 4.37 us (1.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.43 us (63.6%)
Info: cfl dt = 0.0015711264041415429 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.5604e+05 | 262144 | 1 | 3.062e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.47132002280083 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.0079551248198233, dt = 0.0015711264041415429
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.52 us (2.4%)
patch tree reduce : 1.77 us (0.7%)
gen split merge : 900.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.29 us (0.5%)
LB compute : 247.92 us (92.3%)
LB move op cnt : 0
LB apply : 3.98 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.51 us (66.6%)
Info: cfl dt = 0.0015710167540618192 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2062e+05 | 262144 | 1 | 3.194e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.70576284636711 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.009526251223965, dt = 0.0015710167540618192
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.93 us (2.3%)
patch tree reduce : 1.90 us (0.6%)
gen split merge : 971.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.40 us (0.5%)
LB compute : 276.45 us (92.6%)
LB move op cnt : 0
LB apply : 4.31 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.75 us (65.6%)
Info: cfl dt = 0.0015709076940289546 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2037e+05 | 262144 | 1 | 3.195e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.69911442257666 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.011097267978027, dt = 0.0015709076940289546
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.49 us (2.5%)
patch tree reduce : 1.81 us (0.7%)
gen split merge : 1.15 us (0.4%)
split / merge op : 0/0
apply split merge : 1.43 us (0.6%)
LB compute : 235.81 us (91.6%)
LB move op cnt : 0
LB apply : 3.98 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.36 us (65.2%)
Info: cfl dt = 0.0015707992588035126 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.4606e+05 | 262144 | 1 | 3.098e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.25215296143619 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.0126681756720557, dt = 0.0015707992588035126
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.79 us (1.9%)
patch tree reduce : 1.85 us (0.5%)
gen split merge : 1.22 us (0.3%)
split / merge op : 0/0
apply split merge : 1.46 us (0.4%)
LB compute : 331.78 us (93.6%)
LB move op cnt : 0
LB apply : 4.30 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.12 us (67.5%)
Info: cfl dt = 0.0015706914259236617 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2279e+05 | 262144 | 1 | 3.186e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.748882836419522 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.0142389749308593, dt = 0.0015706914259236617
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.57 us (2.5%)
patch tree reduce : 1.84 us (0.7%)
gen split merge : 1.04 us (0.4%)
split / merge op : 0/0
apply split merge : 1.52 us (0.6%)
LB compute : 238.05 us (91.7%)
LB move op cnt : 0
LB apply : 4.06 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.51 us (67.8%)
Info: cfl dt = 0.0015705841437434157 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.1804e+05 | 262144 | 1 | 3.205e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.6453638393177 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.015809666356783, dt = 0.0015705841437434157
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.62 us (2.3%)
patch tree reduce : 1.73 us (0.6%)
gen split merge : 1.14 us (0.4%)
split / merge op : 0/0
apply split merge : 1.35 us (0.5%)
LB compute : 267.39 us (92.6%)
LB move op cnt : 0
LB apply : 4.05 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.52 us (67.1%)
Info: cfl dt = 0.0015704773707229428 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2130e+05 | 262144 | 1 | 3.192e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.714365311706754 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.0173802505005263, dt = 0.0015704773707229428
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.65 us (2.1%)
patch tree reduce : 1.91 us (0.6%)
gen split merge : 1.12 us (0.4%)
split / merge op : 0/0
apply split merge : 1.37 us (0.4%)
LB compute : 290.40 us (92.9%)
LB move op cnt : 0
LB apply : 4.01 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.39 us (64.5%)
Info: cfl dt = 0.0015703711111830262 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3934e+05 | 262144 | 1 | 3.546e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.945495994841664 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.0189507278712493, dt = 0.0015703711111830262
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.83 us (2.2%)
patch tree reduce : 1.81 us (0.6%)
gen split merge : 849.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.43 us (0.5%)
LB compute : 285.28 us (93.0%)
LB move op cnt : 0
LB apply : 4.03 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.80 us (64.6%)
Info: cfl dt = 0.001570265435266097 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.1917e+05 | 262144 | 1 | 3.200e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.666113825662052 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.0205210989824325, dt = 0.001570265435266097
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.44 us (2.1%)
patch tree reduce : 2.22 us (0.7%)
gen split merge : 1.00 us (0.3%)
split / merge op : 0/0
apply split merge : 1.50 us (0.5%)
LB compute : 284.43 us (92.7%)
LB move op cnt : 0
LB apply : 4.62 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.56 us (66.0%)
Info: cfl dt = 0.0015701604953057896 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.1805e+05 | 262144 | 1 | 3.204e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.64076107652824 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.0220913644176988, dt = 0.0015701604953057896
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.35 us (2.5%)
patch tree reduce : 1.78 us (0.7%)
gen split merge : 927.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.26 us (0.5%)
LB compute : 232.44 us (91.5%)
LB move op cnt : 0
LB apply : 3.99 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.69 us (63.9%)
Info: cfl dt = 0.0015700564644186227 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2028e+05 | 262144 | 1 | 3.196e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.68753328308581 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.0236615249130048, dt = 0.0015700564644186227
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.64 us (2.3%)
patch tree reduce : 1.86 us (0.6%)
gen split merge : 1.25 us (0.4%)
split / merge op : 0/0
apply split merge : 1.31 us (0.4%)
LB compute : 272.40 us (92.6%)
LB move op cnt : 0
LB apply : 4.20 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.69 us (67.1%)
Info: cfl dt = 0.0015699535616738379 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.1569e+05 | 262144 | 1 | 3.214e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.58748332471885 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.0252315813774233, dt = 0.0015699535616738379
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.53 us (2.9%)
patch tree reduce : 1.82 us (0.7%)
gen split merge : 1.03 us (0.4%)
split / merge op : 0/0
apply split merge : 1.31 us (0.5%)
LB compute : 236.80 us (91.3%)
LB move op cnt : 0
LB apply : 4.48 us (1.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.45 us (65.9%)
Info: cfl dt = 0.0015698520432793502 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3657e+05 | 262144 | 1 | 3.559e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.880393938439035 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.0268015349390973, dt = 0.0015698520432793502
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.48 us (2.2%)
patch tree reduce : 1.70 us (0.6%)
gen split merge : 1.00 us (0.3%)
split / merge op : 0/0
apply split merge : 1.75 us (0.6%)
LB compute : 267.28 us (92.4%)
LB move op cnt : 0
LB apply : 4.55 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.51 us (64.5%)
Info: cfl dt = 0.0015697521607166557 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.6245e+05 | 262144 | 1 | 3.438e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.437462256531855 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.0283713869823767, dt = 0.0015697521607166557
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.93 us (2.6%)
patch tree reduce : 1.74 us (0.7%)
gen split merge : 1.02 us (0.4%)
split / merge op : 0/0
apply split merge : 1.34 us (0.5%)
LB compute : 240.83 us (91.6%)
LB move op cnt : 0
LB apply : 4.40 us (1.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.38 us (64.5%)
Info: cfl dt = 0.0015696541151086001 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.3833e+05 | 262144 | 1 | 3.127e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.07201211403562 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.0299411391430935, dt = 0.0015696541151086001
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.73 us (2.0%)
patch tree reduce : 1.72 us (0.5%)
gen split merge : 982.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.56 us (0.5%)
LB compute : 309.56 us (93.2%)
LB move op cnt : 0
LB apply : 4.21 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.87 us (71.1%)
Info: cfl dt = 0.0015695580266598592 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.2131e+05 | 262144 | 1 | 3.634e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.548532510599204 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.031510793258202, dt = 0.0015695580266598592
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.94 us (2.5%)
patch tree reduce : 1.74 us (0.6%)
gen split merge : 996.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.26 us (0.4%)
LB compute : 259.74 us (92.4%)
LB move op cnt : 0
LB apply : 4.13 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.41 us (65.9%)
Info: cfl dt = 0.0015694639253355184 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 6.7118e+05 | 262144 | 1 | 3.906e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.466999175093775 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.033080351284862, dt = 0.0015694639253355184
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.19 us (2.2%)
patch tree reduce : 1.79 us (0.6%)
gen split merge : 981.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.35 us (0.4%)
LB compute : 300.68 us (93.1%)
LB move op cnt : 0
LB apply : 4.06 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.55 us (67.6%)
Info: cfl dt = 0.0015693717555950659 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.1638e+05 | 262144 | 1 | 3.211e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.595775446920737 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.0346498152101975, dt = 0.0015693717555950659
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.50 us (2.2%)
patch tree reduce : 2.21 us (0.7%)
gen split merge : 980.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.41 us (0.5%)
LB compute : 274.08 us (92.5%)
LB move op cnt : 0
LB apply : 4.36 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.34 us (63.6%)
Info: cfl dt = 0.0015692814961796872 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.6930e+05 | 262144 | 1 | 3.408e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.580060607366246 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.0362191869657926, dt = 0.0015692814961796872
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.41 us (2.4%)
patch tree reduce : 1.73 us (0.7%)
gen split merge : 770.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.20 us (0.5%)
LB compute : 243.16 us (92.0%)
LB move op cnt : 0
LB apply : 4.46 us (1.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.50 us (65.4%)
Info: cfl dt = 0.0015691932056701597 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.2995e+05 | 262144 | 1 | 3.591e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.7309643857114 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.0377884684619723, dt = 0.0015691932056701597
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.86 us (2.0%)
patch tree reduce : 1.92 us (0.6%)
gen split merge : 1.18 us (0.4%)
split / merge op : 0/0
apply split merge : 1.55 us (0.5%)
LB compute : 313.49 us (93.4%)
LB move op cnt : 0
LB apply : 4.01 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.69 us (67.7%)
Info: cfl dt = 0.0015691069403027276 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2142e+05 | 262144 | 1 | 3.191e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.70133499278085 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.0393576616676423, dt = 0.0015691069403027276
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.80 us (2.3%)
patch tree reduce : 1.65 us (0.6%)
gen split merge : 1.25 us (0.4%)
split / merge op : 0/0
apply split merge : 1.50 us (0.5%)
LB compute : 275.32 us (92.6%)
LB move op cnt : 0
LB apply : 4.33 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.39 us (64.6%)
Info: cfl dt = 0.0015690226646586179 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.1674e+05 | 262144 | 1 | 3.210e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.599539841876833 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.040926768607945, dt = 0.0015690226646586179
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.45 us (2.5%)
patch tree reduce : 1.94 us (0.7%)
gen split merge : 1.05 us (0.4%)
split / merge op : 0/0
apply split merge : 1.60 us (0.6%)
LB compute : 239.44 us (91.5%)
LB move op cnt : 0
LB apply : 4.49 us (1.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.50 us (65.2%)
Info: cfl dt = 0.001568940262310863 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2000e+05 | 262144 | 1 | 3.197e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.66877388485532 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.0424957912726036, dt = 0.001568940262310863
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.21 us (2.8%)
patch tree reduce : 2.00 us (0.8%)
gen split merge : 985.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.66 us (0.7%)
LB compute : 229.90 us (90.8%)
LB move op cnt : 0
LB apply : 4.44 us (1.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.40 us (65.2%)
Info: cfl dt = 0.0015688595757366167 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.6301e+05 | 262144 | 1 | 3.038e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.594614929324692 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.0440647315349145, dt = 0.0015688595757366167
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.49 us (2.1%)
patch tree reduce : 1.88 us (0.6%)
gen split merge : 996.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.43 us (0.5%)
LB compute : 282.37 us (92.7%)
LB move op cnt : 0
LB apply : 4.24 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.43 us (63.4%)
Info: cfl dt = 0.0015687804424354256 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.4636e+05 | 262144 | 1 | 3.097e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.234785635183076 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.045633591110651, dt = 0.0015687804424354256
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.59 us (2.1%)
patch tree reduce : 1.87 us (0.6%)
gen split merge : 1.28 us (0.4%)
split / merge op : 0/0
apply split merge : 1.40 us (0.4%)
LB compute : 291.61 us (92.9%)
LB move op cnt : 0
LB apply : 4.46 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.89 us (66.4%)
Info: cfl dt = 0.0015687027339200649 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.4695e+05 | 262144 | 1 | 3.510e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.092133034561428 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.0472023715530865, dt = 0.0015687027339200649
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.46 us (2.0%)
patch tree reduce : 1.78 us (0.6%)
gen split merge : 976.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.49 us (0.5%)
LB compute : 295.69 us (93.1%)
LB move op cnt : 0
LB apply : 4.14 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.43 us (64.7%)
Info: cfl dt = 0.0015686263347459242 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.1820e+05 | 262144 | 1 | 3.204e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.62632507565888 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.0487710742870067, dt = 0.0015686263347459242
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.84 us (2.3%)
patch tree reduce : 1.95 us (0.7%)
gen split merge : 943.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.49 us (0.5%)
LB compute : 274.20 us (92.5%)
LB move op cnt : 0
LB apply : 4.05 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.43 us (66.1%)
Info: cfl dt = 0.0015685511817150166 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.3512e+05 | 262144 | 1 | 3.139e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.99008319616039 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.0503397006217527, dt = 0.0015685511817150166
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.81 us (2.7%)
patch tree reduce : 1.85 us (0.7%)
gen split merge : 961.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.39 us (0.6%)
LB compute : 229.94 us (91.4%)
LB move op cnt : 0
LB apply : 4.06 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.82 us (65.9%)
Info: cfl dt = 0.001568477222016397 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.5781e+05 | 262144 | 1 | 3.056e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.477904136256274 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.051908251803468, dt = 0.001568477222016397
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.75 us (2.6%)
patch tree reduce : 1.94 us (0.7%)
gen split merge : 1.06 us (0.4%)
split / merge op : 0/0
apply split merge : 1.48 us (0.6%)
LB compute : 239.39 us (91.5%)
LB move op cnt : 0
LB apply : 4.20 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.47 us (64.9%)
Info: cfl dt = 0.0015684044127318348 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.1684e+05 | 262144 | 1 | 3.209e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.594547063440594 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.0534767290254843, dt = 0.0015684044127318348
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.57 us (2.4%)
patch tree reduce : 1.71 us (0.6%)
gen split merge : 863.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.47 us (0.5%)
LB compute : 253.92 us (92.0%)
LB move op cnt : 0
LB apply : 4.27 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.47 us (65.8%)
Info: cfl dt = 0.0015683327886699436 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.1663e+05 | 262144 | 1 | 3.658e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.435244451028517 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.0550451334382163, dt = 0.0015683327886699436
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.46 us (2.4%)
patch tree reduce : 1.81 us (0.7%)
gen split merge : 977.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.51 us (0.6%)
LB compute : 249.46 us (92.0%)
LB move op cnt : 0
LB apply : 3.97 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.55 us (66.2%)
Info: cfl dt = 0.0015682623575360415 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 6.9580e+05 | 262144 | 1 | 3.768e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.985886637455545 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.056613466226886, dt = 0.0015682623575360415
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.60 us (2.4%)
patch tree reduce : 1.74 us (0.6%)
gen split merge : 984.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.52 us (0.6%)
LB compute : 251.82 us (92.1%)
LB move op cnt : 0
LB apply : 4.07 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.43 us (64.8%)
Info: cfl dt = 0.0015681931328958999 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2490e+05 | 262144 | 1 | 3.178e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.76575955593078 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.058181728584422, dt = 0.0015681931328958999
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.44 us (2.4%)
patch tree reduce : 1.76 us (0.6%)
gen split merge : 973.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.70 us (0.6%)
LB compute : 283.56 us (92.7%)
LB move op cnt : 0
LB apply : 4.02 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.39 us (66.0%)
Info: cfl dt = 0.0015681251545762345 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.1310e+05 | 262144 | 1 | 3.676e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.357209657563914 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.0597499217173176, dt = 0.0015681251545762345
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.59 us (2.1%)
patch tree reduce : 1.75 us (0.6%)
gen split merge : 992.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.27 us (0.4%)
LB compute : 288.60 us (93.1%)
LB move op cnt : 0
LB apply : 4.23 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.69 us (68.7%)
Info: cfl dt = 0.0015680584778896157 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2199e+05 | 262144 | 1 | 3.189e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.701570260509623 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.061318046871894, dt = 0.0015680584778896157
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.36 us (2.2%)
patch tree reduce : 1.49 us (0.5%)
gen split merge : 1.14 us (0.4%)
split / merge op : 0/0
apply split merge : 1.14 us (0.4%)
LB compute : 273.54 us (93.1%)
LB move op cnt : 0
LB apply : 4.04 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.56 us (67.5%)
Info: cfl dt = 0.0015679931599174432 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.1446e+05 | 262144 | 1 | 3.219e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.5386869092085 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.0628861053497833, dt = 0.0015679931599174432
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.37 us (2.9%)
patch tree reduce : 1.64 us (0.6%)
gen split merge : 1.19 us (0.5%)
split / merge op : 0/0
apply split merge : 1.49 us (0.6%)
LB compute : 234.82 us (91.1%)
LB move op cnt : 0
LB apply : 4.19 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.49 us (68.3%)
Info: cfl dt = 0.0015679292740564243 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.7336e+05 | 262144 | 1 | 3.390e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.652948926113304 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.064454098509701, dt = 0.0015679292740564243
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.11 us (2.5%)
patch tree reduce : 1.78 us (0.6%)
gen split merge : 933.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.45 us (0.5%)
LB compute : 263.60 us (92.3%)
LB move op cnt : 0
LB apply : 4.01 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.62 us (68.3%)
Info: cfl dt = 0.0015678669805294517 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.6470e+05 | 262144 | 1 | 3.428e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.465652032253008 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.0660220277837573, dt = 0.0015678669805294517
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.86 us (2.6%)
patch tree reduce : 1.71 us (0.6%)
gen split merge : 1.13 us (0.4%)
split / merge op : 0/0
apply split merge : 1.42 us (0.5%)
LB compute : 242.15 us (91.5%)
LB move op cnt : 0
LB apply : 4.30 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.39 us (65.0%)
Info: cfl dt = 0.001567806288350672 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.1580e+05 | 262144 | 1 | 3.213e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.565383122579167 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.0675898947642866, dt = 0.001567806288350672
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.35 us (2.8%)
patch tree reduce : 2.20 us (0.9%)
gen split merge : 1.06 us (0.4%)
split / merge op : 0/0
apply split merge : 1.34 us (0.5%)
LB compute : 235.58 us (91.2%)
LB move op cnt : 0
LB apply : 4.17 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.50 us (64.5%)
Info: cfl dt = 0.0015677470960003942 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.2351e+05 | 262144 | 1 | 3.623e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.577547933318618 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.0691577010526374, dt = 0.0015677470960003942
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.76 us (2.2%)
patch tree reduce : 1.90 us (0.6%)
gen split merge : 946.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.39 us (0.5%)
LB compute : 279.99 us (92.8%)
LB move op cnt : 0
LB apply : 3.92 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.71 us (67.6%)
Info: cfl dt = 0.0015676892736442313 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.5453e+05 | 262144 | 1 | 3.474e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.24473680835764 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.0707254481486377, dt = 0.0015676892736442313
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.26 us (2.6%)
patch tree reduce : 1.84 us (0.7%)
gen split merge : 886.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.42 us (0.5%)
LB compute : 260.31 us (92.1%)
LB move op cnt : 0
LB apply : 4.27 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.43 us (64.2%)
Info: cfl dt = 0.0015676327096910193 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.9524e+05 | 262144 | 1 | 3.296e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.12067528871545 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.0722931374222817, dt = 0.0015676327096910193
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.04 us (2.4%)
patch tree reduce : 1.70 us (0.6%)
gen split merge : 924.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.31 us (0.5%)
LB compute : 265.99 us (92.4%)
LB move op cnt : 0
LB apply : 4.41 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.36 us (64.3%)
Info: cfl dt = 0.0015675773315441501 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.1354e+05 | 262144 | 1 | 3.222e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.514086356922537 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.0738607701319727, dt = 0.0015675773315441501
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.54 us (2.4%)
patch tree reduce : 1.94 us (0.7%)
gen split merge : 1.02 us (0.4%)
split / merge op : 0/0
apply split merge : 1.42 us (0.5%)
LB compute : 253.01 us (92.0%)
LB move op cnt : 0
LB apply : 4.24 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.51 us (68.3%)
Info: cfl dt = 0.0015675231112095064 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3112e+05 | 262144 | 1 | 3.586e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.739142206071746 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.0754283474635167, dt = 0.0015675231112095064
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.57 us (2.3%)
patch tree reduce : 1.73 us (0.6%)
gen split merge : 888.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.33 us (0.5%)
LB compute : 268.11 us (92.5%)
LB move op cnt : 0
LB apply : 4.24 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.68 us (67.6%)
Info: cfl dt = 0.0015674700393651124 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.1791e+05 | 262144 | 1 | 3.205e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.60692489258116 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.0769958705747262, dt = 0.0015674700393651124
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.00 us (2.3%)
patch tree reduce : 2.25 us (0.7%)
gen split merge : 1.04 us (0.3%)
split / merge op : 0/0
apply split merge : 1.44 us (0.5%)
LB compute : 283.20 us (92.6%)
LB move op cnt : 0
LB apply : 4.05 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.48 us (64.9%)
Info: cfl dt = 0.001567418170129004 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.3722e+05 | 262144 | 1 | 3.131e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.021927780454412 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.0785633406140915, dt = 0.001567418170129004
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.68 us (2.2%)
patch tree reduce : 1.98 us (0.6%)
gen split merge : 820.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.40 us (0.5%)
LB compute : 287.15 us (93.1%)
LB move op cnt : 0
LB apply : 4.06 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.38 us (63.1%)
Info: cfl dt = 0.001567367632429346 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2346e+05 | 262144 | 1 | 3.183e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.725078669043832 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.0801307587842204, dt = 0.001567367632429346
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.75 us (2.6%)
patch tree reduce : 1.92 us (0.7%)
gen split merge : 996.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.42 us (0.5%)
LB compute : 240.92 us (91.4%)
LB move op cnt : 0
LB apply : 4.49 us (1.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.51 us (66.8%)
Info: cfl dt = 0.0015673186203880017 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.1103e+05 | 262144 | 1 | 3.232e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.45710552316681 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.08169812641665, dt = 0.0015673186203880017
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.87 us (2.6%)
patch tree reduce : 1.87 us (0.7%)
gen split merge : 1.01 us (0.4%)
split / merge op : 0/0
apply split merge : 1.39 us (0.5%)
LB compute : 240.72 us (91.6%)
LB move op cnt : 0
LB apply : 4.27 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.40 us (63.5%)
Info: cfl dt = 0.0015672713434120727 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.9460e+05 | 262144 | 1 | 3.299e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.102760488254948 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.083265445037038, dt = 0.0015672713434120727
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.92 us (2.4%)
patch tree reduce : 1.76 us (0.6%)
gen split merge : 1.00 us (0.3%)
split / merge op : 0/0
apply split merge : 1.59 us (0.5%)
LB compute : 269.18 us (92.4%)
LB move op cnt : 0
LB apply : 4.17 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.45 us (65.7%)
Info: cfl dt = 0.0015672259926631394 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.9934e+05 | 262144 | 1 | 3.279e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.204391181318474 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.08483271638045, dt = 0.0015672259926631394
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.59 us (2.3%)
patch tree reduce : 1.66 us (0.6%)
gen split merge : 819.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.44 us (0.5%)
LB compute : 269.50 us (92.7%)
LB move op cnt : 0
LB apply : 4.08 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.50 us (66.0%)
Info: cfl dt = 0.0015671827435822557 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.3014e+05 | 262144 | 1 | 3.158e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.866837411788488 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.0863999423731134, dt = 0.0015671827435822557
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.87 us (2.6%)
patch tree reduce : 1.77 us (0.7%)
gen split merge : 962.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.43 us (0.5%)
LB compute : 246.10 us (91.7%)
LB move op cnt : 0
LB apply : 4.20 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.89 us (66.0%)
Info: cfl dt = 0.0015671417825654653 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.1854e+05 | 262144 | 1 | 3.203e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.616686971527045 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.0879671251166956, dt = 0.0015671417825654653
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.02 us (2.7%)
patch tree reduce : 1.82 us (0.7%)
gen split merge : 1.24 us (0.5%)
split / merge op : 0/0
apply split merge : 1.39 us (0.5%)
LB compute : 241.53 us (91.6%)
LB move op cnt : 0
LB apply : 4.16 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.52 us (67.1%)
Info: cfl dt = 0.0015671032491933596 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2026e+05 | 262144 | 1 | 3.196e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.653172371054495 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.089534266899261, dt = 0.0015671032491933596
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.53 us (2.9%)
patch tree reduce : 2.17 us (0.8%)
gen split merge : 865.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.53 us (0.6%)
LB compute : 241.19 us (91.4%)
LB move op cnt : 0
LB apply : 4.14 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.41 us (67.1%)
Info: cfl dt = 0.00156706716554068 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.0925e+05 | 262144 | 1 | 3.239e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.41576684885757 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.091101370148454, dt = 0.00156706716554068
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.96 us (2.6%)
patch tree reduce : 1.97 us (0.7%)
gen split merge : 1.08 us (0.4%)
split / merge op : 0/0
apply split merge : 1.42 us (0.5%)
LB compute : 240.65 us (91.5%)
LB move op cnt : 0
LB apply : 3.98 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.43 us (64.7%)
Info: cfl dt = 0.0015670334330571709 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.1951e+05 | 262144 | 1 | 3.199e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.63614060399257 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.092668437313995, dt = 0.0015670334330571709
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.52 us (2.5%)
patch tree reduce : 1.74 us (0.7%)
gen split merge : 919.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.46 us (0.6%)
LB compute : 235.40 us (91.8%)
LB move op cnt : 0
LB apply : 3.93 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.45 us (66.5%)
Info: cfl dt = 0.0015670019526565116 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.1885e+05 | 262144 | 1 | 3.201e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.621651678063277 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.0942354707470523, dt = 0.0015670019526565116
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.53 us (2.1%)
patch tree reduce : 1.71 us (0.5%)
gen split merge : 1.02 us (0.3%)
split / merge op : 0/0
apply split merge : 1.72 us (0.5%)
LB compute : 290.06 us (92.9%)
LB move op cnt : 0
LB apply : 4.57 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.52 us (65.4%)
Info: cfl dt = 0.0015669727219328644 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.6384e+05 | 262144 | 1 | 3.432e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.437356273840713 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.0958024726997087, dt = 0.0015669727219328644
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.35 us (2.4%)
patch tree reduce : 1.81 us (0.7%)
gen split merge : 1.03 us (0.4%)
split / merge op : 0/0
apply split merge : 1.64 us (0.6%)
LB compute : 238.78 us (91.7%)
LB move op cnt : 0
LB apply : 3.97 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.41 us (66.1%)
Info: cfl dt = 0.0015669458525472933 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.1359e+05 | 262144 | 1 | 3.222e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.507799121187382 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.0973694454216414, dt = 0.0015669458525472933
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.49 us (2.1%)
patch tree reduce : 1.78 us (0.6%)
gen split merge : 1.10 us (0.4%)
split / merge op : 0/0
apply split merge : 1.46 us (0.5%)
LB compute : 283.03 us (93.0%)
LB move op cnt : 0
LB apply : 3.90 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.84 us (65.1%)
Info: cfl dt = 0.0015669215442107017 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.1518e+05 | 262144 | 1 | 3.216e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.54169400266706 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.0989363912741887, dt = 0.0015669215442107017
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.18 us (2.2%)
patch tree reduce : 1.73 us (0.6%)
gen split merge : 1.03 us (0.4%)
split / merge op : 0/0
apply split merge : 1.48 us (0.5%)
LB compute : 255.77 us (92.3%)
LB move op cnt : 0
LB apply : 4.36 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.76 us (70.5%)
Info: cfl dt = 0.001566900034301221 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.1657e+05 | 262144 | 1 | 3.210e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.57122252811587 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.1005033128183994, dt = 0.001566900034301221
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.78 us (2.3%)
patch tree reduce : 2.03 us (0.7%)
gen split merge : 998.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.39 us (0.5%)
LB compute : 269.75 us (92.6%)
LB move op cnt : 0
LB apply : 4.12 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.40 us (63.7%)
Info: cfl dt = 0.0015667938942108268 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.2049e+05 | 262144 | 1 | 3.638e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.503639216183032 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.1020702128527007, dt = 0.0015667938942108268
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.94 us (2.5%)
patch tree reduce : 1.69 us (0.6%)
gen split merge : 1.03 us (0.4%)
split / merge op : 0/0
apply split merge : 1.52 us (0.6%)
LB compute : 249.74 us (91.7%)
LB move op cnt : 0
LB apply : 4.53 us (1.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.24 us (73.9%)
Info: cfl dt = 0.0015666514727226627 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.6112e+05 | 262144 | 1 | 3.444e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.37676671121456 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.1036370067469115, dt = 0.0015666514727226627
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.56 us (2.3%)
patch tree reduce : 1.77 us (0.6%)
gen split merge : 1.03 us (0.4%)
split / merge op : 0/0
apply split merge : 1.39 us (0.5%)
LB compute : 258.30 us (92.2%)
LB move op cnt : 0
LB apply : 4.25 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.83 us (70.1%)
Info: cfl dt = 0.0015665089989299287 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2857e+05 | 262144 | 1 | 3.164e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.826511703727583 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.1052036582196343, dt = 0.0015665089989299287
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.56 us (2.2%)
patch tree reduce : 1.78 us (0.6%)
gen split merge : 893.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.53 us (0.5%)
LB compute : 273.42 us (92.7%)
LB move op cnt : 0
LB apply : 4.18 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.84 us (64.6%)
Info: cfl dt = 0.001566366500667422 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.1952e+05 | 262144 | 1 | 3.199e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.63005777516171 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.1067701672185644, dt = 0.001566366500667422
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.47 us (2.2%)
patch tree reduce : 1.73 us (0.6%)
gen split merge : 1.08 us (0.4%)
split / merge op : 0/0
apply split merge : 1.29 us (0.4%)
LB compute : 275.69 us (92.8%)
LB move op cnt : 0
LB apply : 4.15 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.59 us (67.9%)
Info: cfl dt = 0.0015662240693167238 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2406e+05 | 262144 | 1 | 3.181e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.726265877734978 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.108336533719232, dt = 0.0015662240693167238
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.95 us (2.3%)
patch tree reduce : 1.89 us (0.6%)
gen split merge : 934.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.54 us (0.5%)
LB compute : 281.63 us (92.7%)
LB move op cnt : 0
LB apply : 4.21 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.46 us (62.9%)
Info: cfl dt = 0.0015660818670461987 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.1731e+05 | 262144 | 1 | 3.207e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.579402197644683 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.1099027577885487, dt = 0.0015660818670461987
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.01 us (2.7%)
patch tree reduce : 1.95 us (0.7%)
gen split merge : 890.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.40 us (0.5%)
LB compute : 236.91 us (91.2%)
LB move op cnt : 0
LB apply : 4.27 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.54 us (67.1%)
Info: cfl dt = 0.0015659401085589201 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2755e+05 | 262144 | 1 | 3.168e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.798060612115698 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.1114688396555947, dt = 0.0015659401085589201
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.78 us (2.6%)
patch tree reduce : 1.80 us (0.7%)
gen split merge : 811.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.40 us (0.5%)
LB compute : 241.23 us (91.6%)
LB move op cnt : 0
LB apply : 4.56 us (1.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.48 us (66.9%)
Info: cfl dt = 0.0015657989756030426 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.8737e+05 | 262144 | 1 | 3.329e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.932420585648114 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.1130347797641535, dt = 0.0015657989756030426
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.83 us (2.6%)
patch tree reduce : 2.01 us (0.8%)
gen split merge : 933.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.70 us (0.6%)
LB compute : 243.51 us (91.6%)
LB move op cnt : 0
LB apply : 3.93 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.38 us (65.5%)
Info: cfl dt = 0.001565658544722571 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2721e+05 | 262144 | 1 | 3.169e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.78746308549756 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.1146005787397564, dt = 0.001565658544722571
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.52 us (2.1%)
patch tree reduce : 1.95 us (0.6%)
gen split merge : 902.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.44 us (0.5%)
LB compute : 284.84 us (92.9%)
LB move op cnt : 0
LB apply : 3.93 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.88 us (66.4%)
Info: cfl dt = 0.0015655182400708607 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.1559e+05 | 262144 | 1 | 3.214e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.535966242091963 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.116166237284479, dt = 0.0005004293821877503
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.67 us (2.1%)
patch tree reduce : 1.80 us (0.6%)
gen split merge : 1.01 us (0.3%)
split / merge op : 0/0
apply split merge : 1.53 us (0.5%)
LB compute : 298.46 us (93.2%)
LB move op cnt : 0
LB apply : 4.26 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.41 us (64.4%)
Info: cfl dt = 0.0015654831777232414 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.1740e+05 | 262144 | 1 | 3.654e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.9302335246712525 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 457.17631079 (s) [Godunov][rank=0]
Info: dump to _to_trash/ramses_kh/periodic_0017.vtk [VTK Dump][rank=0]
- took 32.59 ms, bandwidth = 1.25 GB/s
amr::Godunov: t = 2.1166666666666667, dt = 0.0015654831777232414
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.90 us (2.5%)
patch tree reduce : 2.05 us (0.7%)
gen split merge : 1.13 us (0.4%)
split / merge op : 0/0
apply split merge : 1.43 us (0.5%)
LB compute : 288.99 us (92.4%)
LB move op cnt : 0
LB apply : 4.35 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.06 us (67.8%)
Info: cfl dt = 0.001565337590710194 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2364e+05 | 262144 | 1 | 3.183e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.70715275677758 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.11823214984439, dt = 0.001565337590710194
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.35 us (2.8%)
patch tree reduce : 1.84 us (0.7%)
gen split merge : 999.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.57 us (0.6%)
LB compute : 241.75 us (91.4%)
LB move op cnt : 0
LB apply : 4.07 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.47 us (66.1%)
Info: cfl dt = 0.0015651920971665372 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.1180e+05 | 262144 | 1 | 3.683e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.301207522593986 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.1197974874351004, dt = 0.0015651920971665372
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.31 us (2.4%)
patch tree reduce : 1.93 us (0.7%)
gen split merge : 1.10 us (0.4%)
split / merge op : 0/0
apply split merge : 1.43 us (0.5%)
LB compute : 241.09 us (91.6%)
LB move op cnt : 0
LB apply : 4.62 us (1.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.88 us (64.8%)
Info: cfl dt = 0.001565047525572721 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.7140e+05 | 262144 | 1 | 3.398e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.581005854458745 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.121362679532267, dt = 0.001565047525572721
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.44 us (2.3%)
patch tree reduce : 1.65 us (0.6%)
gen split merge : 885.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.53 us (0.6%)
LB compute : 256.71 us (92.3%)
LB move op cnt : 0
LB apply : 4.33 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.53 us (65.1%)
Info: cfl dt = 0.0015649045473800653 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3415e+05 | 262144 | 1 | 3.571e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.778796272584009 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.1229277270578395, dt = 0.0015649045473800653
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.82 us (2.5%)
patch tree reduce : 2.03 us (0.7%)
gen split merge : 921.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.27 us (0.5%)
LB compute : 255.68 us (92.1%)
LB move op cnt : 0
LB apply : 4.16 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.44 us (64.6%)
Info: cfl dt = 0.0015647635076918476 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.6295e+05 | 262144 | 1 | 3.436e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.39630326016935 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.1244926316052197, dt = 0.0015647635076918476
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.63 us (2.6%)
patch tree reduce : 1.84 us (0.7%)
gen split merge : 928.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.44 us (0.6%)
LB compute : 237.66 us (91.5%)
LB move op cnt : 0
LB apply : 4.10 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.41 us (64.5%)
Info: cfl dt = 0.0015646244444504074 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.6596e+05 | 262144 | 1 | 3.422e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.459427049373314 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.1260573951129116, dt = 0.0015646244444504074
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.78 us (2.7%)
patch tree reduce : 1.79 us (0.7%)
gen split merge : 1.03 us (0.4%)
split / merge op : 0/0
apply split merge : 1.55 us (0.6%)
LB compute : 229.17 us (91.3%)
LB move op cnt : 0
LB apply : 4.03 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.83 us (65.2%)
Info: cfl dt = 0.0015644872272882364 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.5564e+05 | 262144 | 1 | 3.064e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.384954732066284 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.127622019557362, dt = 0.0015644872272882364
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.39 us (2.1%)
patch tree reduce : 1.75 us (0.6%)
gen split merge : 873.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.51 us (0.5%)
LB compute : 276.77 us (92.7%)
LB move op cnt : 0
LB apply : 4.37 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.40 us (65.3%)
Info: cfl dt = 0.0015643516617685684 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.6369e+05 | 262144 | 1 | 3.433e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.407879411763226 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.1291865067846505, dt = 0.0015643516617685684
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.11 us (2.3%)
patch tree reduce : 1.93 us (0.6%)
gen split merge : 961.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.79 us (0.6%)
LB compute : 283.00 us (92.4%)
LB move op cnt : 0
LB apply : 4.67 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.46 us (64.7%)
Info: cfl dt = 0.0015642175359979063 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.2872e+05 | 262144 | 1 | 3.597e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.655116363127812 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.130750858446419, dt = 0.0015642175359979063
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.54 us (2.3%)
patch tree reduce : 1.99 us (0.7%)
gen split merge : 1.05 us (0.4%)
split / merge op : 0/0
apply split merge : 1.67 us (0.6%)
LB compute : 259.48 us (92.2%)
LB move op cnt : 0
LB apply : 4.14 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.59 us (68.1%)
Info: cfl dt = 0.0015640846262200314 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3695e+05 | 262144 | 1 | 3.557e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.830527459401583 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.132315075982417, dt = 0.0015640846262200314
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.32 us (1.9%)
patch tree reduce : 1.84 us (0.5%)
gen split merge : 1.01 us (0.3%)
split / merge op : 0/0
apply split merge : 1.39 us (0.4%)
LB compute : 316.50 us (93.4%)
LB move op cnt : 0
LB apply : 4.94 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.69 us (65.6%)
Info: cfl dt = 0.0015639526820639264 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.9332e+05 | 262144 | 1 | 3.304e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.0401659970274 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.133879160608637, dt = 0.0015639526820639264
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.77 us (2.3%)
patch tree reduce : 1.99 us (0.7%)
gen split merge : 829.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.33 us (0.4%)
LB compute : 277.07 us (92.7%)
LB move op cnt : 0
LB apply : 4.23 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.94 us (65.8%)
Info: cfl dt = 0.0015638214087112664 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2762e+05 | 262144 | 1 | 3.167e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.77529598142945 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.135443113290701, dt = 0.0015638214087112664
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.47 us (2.2%)
patch tree reduce : 1.86 us (0.6%)
gen split merge : 940.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.30 us (0.4%)
LB compute : 269.15 us (92.7%)
LB move op cnt : 0
LB apply : 3.68 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.83 us (65.5%)
Info: cfl dt = 0.0015636904702367974 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.1039e+05 | 262144 | 1 | 3.235e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.403818304558516 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.137006934699412, dt = 0.0015636904702367974
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.22 us (2.3%)
patch tree reduce : 2.00 us (0.7%)
gen split merge : 902.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.40 us (0.5%)
LB compute : 253.71 us (92.3%)
LB move op cnt : 0
LB apply : 3.89 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.39 us (64.3%)
Info: cfl dt = 0.0015635595645666876 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.6782e+05 | 262144 | 1 | 3.414e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.488223417229616 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.138570625169649, dt = 0.0015635595645666876
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.67 us (2.4%)
patch tree reduce : 1.89 us (0.7%)
gen split merge : 1.04 us (0.4%)
split / merge op : 0/0
apply split merge : 1.37 us (0.5%)
LB compute : 259.06 us (92.2%)
LB move op cnt : 0
LB apply : 4.33 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.52 us (66.5%)
Info: cfl dt = 0.0015634284292350017 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2418e+05 | 262144 | 1 | 3.181e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.697075187095912 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.1401341847342157, dt = 0.0015634284292350017
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.31 us (2.4%)
patch tree reduce : 1.74 us (0.7%)
gen split merge : 1.06 us (0.4%)
split / merge op : 0/0
apply split merge : 1.63 us (0.6%)
LB compute : 237.49 us (91.5%)
LB move op cnt : 0
LB apply : 4.23 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.46 us (67.6%)
Info: cfl dt = 0.001563296817347579 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.4860e+05 | 262144 | 1 | 3.502e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.072777476750115 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.141697613163451, dt = 0.001563296817347579
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.57 us (2.1%)
patch tree reduce : 1.66 us (0.5%)
gen split merge : 1.23 us (0.4%)
split / merge op : 0/0
apply split merge : 1.55 us (0.5%)
LB compute : 295.20 us (93.1%)
LB move op cnt : 0
LB apply : 3.92 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.58 us (68.6%)
Info: cfl dt = 0.001563164495708653 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2626e+05 | 262144 | 1 | 3.173e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.738636743684136 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.1432609099807984, dt = 0.001563164495708653
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.22 us (2.1%)
patch tree reduce : 1.83 us (0.6%)
gen split merge : 889.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.46 us (0.5%)
LB compute : 277.99 us (93.0%)
LB move op cnt : 0
LB apply : 4.18 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.45 us (64.5%)
Info: cfl dt = 0.0015630312658810473 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.1687e+05 | 262144 | 1 | 3.209e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.53562820106102 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.144824074476507, dt = 0.0015630312658810473
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.39 us (2.2%)
patch tree reduce : 2.06 us (0.7%)
gen split merge : 949.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.48 us (0.5%)
LB compute : 272.95 us (92.7%)
LB move op cnt : 0
LB apply : 4.14 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.79 us (64.7%)
Info: cfl dt = 0.0015628969903294665 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2109e+05 | 262144 | 1 | 3.193e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.624757319644672 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.146387105742388, dt = 0.0015628969903294665
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.54 us (2.9%)
patch tree reduce : 2.00 us (0.8%)
gen split merge : 1.00 us (0.4%)
split / merge op : 0/0
apply split merge : 1.30 us (0.5%)
LB compute : 236.25 us (90.9%)
LB move op cnt : 0
LB apply : 4.84 us (1.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.52 us (67.6%)
Info: cfl dt = 0.0015627616075924906 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.8003e+05 | 262144 | 1 | 3.361e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.74187143696028 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.1479500027327174, dt = 0.0015627616075924906
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.71 us (2.5%)
patch tree reduce : 1.68 us (0.7%)
gen split merge : 689.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.33 us (0.6%)
LB compute : 213.72 us (92.1%)
LB move op cnt : 0
LB apply : 3.23 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.13 us (68.4%)
Info: cfl dt = 0.00156262561881976 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2144e+05 | 262144 | 1 | 3.191e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.629208329875738 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.14951276434031, dt = 0.00156262561881976
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.48 us (2.3%)
patch tree reduce : 1.66 us (0.6%)
gen split merge : 962.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.41 us (0.5%)
LB compute : 260.48 us (92.2%)
LB move op cnt : 0
LB apply : 4.50 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.51 us (67.9%)
Info: cfl dt = 0.0015624891527310843 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.4508e+05 | 262144 | 1 | 3.102e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.13495498447552 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.1510753899591295, dt = 0.0015624891527310843
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.50 us (2.5%)
patch tree reduce : 1.91 us (0.7%)
gen split merge : 1.23 us (0.5%)
split / merge op : 0/0
apply split merge : 1.41 us (0.5%)
LB compute : 243.50 us (91.9%)
LB move op cnt : 0
LB apply : 3.83 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.37 us (62.7%)
Info: cfl dt = 0.0015623521995471045 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.4527e+05 | 262144 | 1 | 3.101e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.137401231352374 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.1526378791118606, dt = 0.0015623521995471045
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.30 us (2.0%)
patch tree reduce : 1.80 us (0.6%)
gen split merge : 857.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.60 us (0.5%)
LB compute : 301.28 us (93.4%)
LB move op cnt : 0
LB apply : 3.91 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.50 us (66.6%)
Info: cfl dt = 0.0015622148450169576 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.3129e+05 | 262144 | 1 | 3.153e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.83582043432722 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.1542002313114077, dt = 0.0015622148450169576
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.70 us (2.3%)
patch tree reduce : 2.24 us (0.8%)
gen split merge : 878.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.50 us (0.5%)
LB compute : 269.94 us (92.4%)
LB move op cnt : 0
LB apply : 4.17 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.49 us (66.3%)
Info: cfl dt = 0.0015620772218149484 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.9098e+05 | 262144 | 1 | 3.314e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.96948978462833 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.155762446156425, dt = 0.0015620772218149484
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 9.57 us (3.1%)
patch tree reduce : 1.77 us (0.6%)
gen split merge : 913.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.47 us (0.5%)
LB compute : 274.92 us (88.7%)
LB move op cnt : 0
LB apply : 4.37 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.59 us (66.2%)
Info: cfl dt = 0.0015619394873630792 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.3038e+05 | 262144 | 1 | 3.157e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.813272104812345 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.15732452337824, dt = 0.0015619394873630792
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.35 us (2.4%)
patch tree reduce : 1.78 us (0.7%)
gen split merge : 1.00 us (0.4%)
split / merge op : 0/0
apply split merge : 1.52 us (0.6%)
LB compute : 247.72 us (92.0%)
LB move op cnt : 0
LB apply : 4.09 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.59 us (67.9%)
Info: cfl dt = 0.0015618018069469574 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.5576e+05 | 262144 | 1 | 3.063e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.356074604243783 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.158886462865603, dt = 0.0015618018069469574
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.42 us (2.4%)
patch tree reduce : 1.97 us (0.7%)
gen split merge : 867.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.55 us (0.6%)
LB compute : 247.92 us (91.9%)
LB move op cnt : 0
LB apply : 4.28 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.03 us (67.7%)
Info: cfl dt = 0.0015616643414717473 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.7077e+05 | 262144 | 1 | 3.401e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.531594045541773 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.16044826467255, dt = 0.0015616643414717473
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.21 us (2.0%)
patch tree reduce : 1.72 us (0.5%)
gen split merge : 942.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.40 us (0.4%)
LB compute : 292.23 us (93.0%)
LB move op cnt : 0
LB apply : 4.43 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.60 us (67.7%)
Info: cfl dt = 0.0015615272247862858 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3800e+05 | 262144 | 1 | 3.552e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.82720218166142 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.1620099290140216, dt = 0.0015615272247862858
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.45 us (2.2%)
patch tree reduce : 1.79 us (0.6%)
gen split merge : 929.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.32 us (0.4%)
LB compute : 278.43 us (92.8%)
LB move op cnt : 0
LB apply : 4.38 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.47 us (65.3%)
Info: cfl dt = 0.0015613905521362128 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3881e+05 | 262144 | 1 | 3.548e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.843332039525942 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.1635714562388078, dt = 0.0015613905521362128
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.90 us (2.3%)
patch tree reduce : 1.84 us (0.6%)
gen split merge : 990.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.47 us (0.5%)
LB compute : 271.95 us (92.5%)
LB move op cnt : 0
LB apply : 4.25 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.38 us (62.9%)
Info: cfl dt = 0.0015612543879614975 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2374e+05 | 262144 | 1 | 3.182e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.663048191498152 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.165132846790944, dt = 0.0015612543879614975
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.09 us (2.7%)
patch tree reduce : 1.78 us (0.7%)
gen split merge : 898.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.48 us (0.6%)
LB compute : 239.05 us (91.6%)
LB move op cnt : 0
LB apply : 4.30 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.59 us (66.5%)
Info: cfl dt = 0.0015611187530796748 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2518e+05 | 262144 | 1 | 3.177e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.69240201485938 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.1666941011789054, dt = 0.0015611187530796748
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.95 us (2.6%)
patch tree reduce : 1.84 us (0.7%)
gen split merge : 1.02 us (0.4%)
split / merge op : 0/0
apply split merge : 1.49 us (0.6%)
LB compute : 244.56 us (91.6%)
LB move op cnt : 0
LB apply : 4.29 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.39 us (64.8%)
Info: cfl dt = 0.0015609836111217335 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2213e+05 | 262144 | 1 | 3.189e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.625480903441062 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.168255219931985, dt = 0.0015609836111217335
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.88 us (2.5%)
patch tree reduce : 1.64 us (0.6%)
gen split merge : 1.00 us (0.4%)
split / merge op : 0/0
apply split merge : 1.48 us (0.5%)
LB compute : 249.31 us (91.8%)
LB move op cnt : 0
LB apply : 4.24 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.82 us (63.4%)
Info: cfl dt = 0.001560848866445671 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.4363e+05 | 262144 | 1 | 3.107e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.084662668755197 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.169816203543107, dt = 0.001560848866445671
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.11 us (2.7%)
patch tree reduce : 2.20 us (0.8%)
gen split merge : 994.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.43 us (0.5%)
LB compute : 239.74 us (91.4%)
LB move op cnt : 0
LB apply : 4.38 us (1.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.46 us (66.1%)
Info: cfl dt = 0.0015607143766266521 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2500e+05 | 262144 | 1 | 3.178e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.68383806127575 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.1713770524095524, dt = 0.0015607143766266521
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.02 us (2.6%)
patch tree reduce : 1.73 us (0.6%)
gen split merge : 992.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.98 us (0.7%)
LB compute : 247.19 us (91.7%)
LB move op cnt : 0
LB apply : 4.08 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.46 us (66.6%)
Info: cfl dt = 0.0015605801824147328 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.1024e+05 | 262144 | 1 | 3.235e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.365989407774833 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.172937766786179, dt = 0.0015605801824147328
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.93 us (2.6%)
patch tree reduce : 1.81 us (0.7%)
gen split merge : 882.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.41 us (0.5%)
LB compute : 242.52 us (91.6%)
LB move op cnt : 0
LB apply : 4.48 us (1.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.39 us (64.4%)
Info: cfl dt = 0.0015604461849923297 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.0199e+05 | 262144 | 1 | 3.269e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.18776248020601 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.1744983469685937, dt = 0.0015604461849923297
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.57 us (2.5%)
patch tree reduce : 1.84 us (0.7%)
gen split merge : 867.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.56 us (0.6%)
LB compute : 239.54 us (91.8%)
LB move op cnt : 0
LB apply : 4.08 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.50 us (67.2%)
Info: cfl dt = 0.001560312229899567 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.0711e+05 | 262144 | 1 | 3.248e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.296031720880595 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.176058793153586, dt = 0.001560312229899567
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.58 us (2.5%)
patch tree reduce : 1.69 us (0.6%)
gen split merge : 954.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.39 us (0.5%)
LB compute : 239.79 us (91.8%)
LB move op cnt : 0
LB apply : 3.97 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.42 us (67.3%)
Info: cfl dt = 0.001560178153356089 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2557e+05 | 262144 | 1 | 3.175e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.690037161889357 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.177619105383486, dt = 0.001560178153356089
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.67 us (2.6%)
patch tree reduce : 1.79 us (0.7%)
gen split merge : 958.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.43 us (0.6%)
LB compute : 235.89 us (91.5%)
LB move op cnt : 0
LB apply : 3.74 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.38 us (66.0%)
Info: cfl dt = 0.001560043883515534 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.1445e+05 | 262144 | 1 | 3.219e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.450178561590754 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.179179283536842, dt = 0.001560043883515534
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.33 us (2.2%)
patch tree reduce : 1.67 us (0.6%)
gen split merge : 995.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.56 us (0.5%)
LB compute : 269.01 us (92.6%)
LB move op cnt : 0
LB apply : 4.60 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.56 us (65.9%)
Info: cfl dt = 0.0015599094636282698 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2072e+05 | 262144 | 1 | 3.194e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.583164803228467 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.1807393274203575, dt = 0.0015599094636282698
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 15.95 us (5.7%)
patch tree reduce : 1.90 us (0.7%)
gen split merge : 1.03 us (0.4%)
split / merge op : 0/0
apply split merge : 1.70 us (0.6%)
LB compute : 246.00 us (88.6%)
LB move op cnt : 0
LB apply : 4.51 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.46 us (67.6%)
Info: cfl dt = 0.0015597749808167543 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.3359e+05 | 262144 | 1 | 3.145e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.85717118462128 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.1822992368839857, dt = 0.0015597749808167543
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.67 us (2.1%)
patch tree reduce : 1.76 us (0.6%)
gen split merge : 829.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.51 us (0.5%)
LB compute : 296.93 us (93.3%)
LB move op cnt : 0
LB apply : 4.04 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.61 us (69.1%)
Info: cfl dt = 0.001559640534665567 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.6232e+05 | 262144 | 1 | 3.040e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.47114115185823 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.1838590118648025, dt = 0.001559640534665567
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.98 us (2.3%)
patch tree reduce : 2.02 us (0.7%)
gen split merge : 1.02 us (0.3%)
split / merge op : 0/0
apply split merge : 1.30 us (0.4%)
LB compute : 275.10 us (92.5%)
LB move op cnt : 0
LB apply : 4.22 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.50 us (65.9%)
Info: cfl dt = 0.0015594755585195909 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2343e+05 | 262144 | 1 | 3.184e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.636559485317825 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.185418652399468, dt = 0.0015594755585195909
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.28 us (2.4%)
patch tree reduce : 2.00 us (0.8%)
gen split merge : 1.04 us (0.4%)
split / merge op : 0/0
apply split merge : 1.36 us (0.5%)
LB compute : 243.18 us (91.8%)
LB move op cnt : 0
LB apply : 4.35 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.07 us (67.5%)
Info: cfl dt = 0.0015592975306503777 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2383e+05 | 262144 | 1 | 3.182e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.643176004955247 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.1869781279579876, dt = 0.0015592975306503777
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.70 us (2.2%)
patch tree reduce : 1.84 us (0.6%)
gen split merge : 930.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.36 us (0.4%)
LB compute : 286.94 us (92.9%)
LB move op cnt : 0
LB apply : 3.94 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.44 us (65.1%)
Info: cfl dt = 0.0015591201572535858 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.1510e+05 | 262144 | 1 | 3.666e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.312932565882608 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.188537425488638, dt = 0.0015591201572535858
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.69 us (1.9%)
patch tree reduce : 1.92 us (0.7%)
gen split merge : 801.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.03 us (0.4%)
LB compute : 272.82 us (93.4%)
LB move op cnt : 0
LB apply : 4.11 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.75 us (69.2%)
Info: cfl dt = 0.0015589435071901565 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2128e+05 | 262144 | 1 | 3.192e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.58470983673339 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.1900965456458916, dt = 0.0015589435071901565
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.74 us (2.4%)
patch tree reduce : 1.68 us (0.6%)
gen split merge : 1.05 us (0.4%)
split / merge op : 0/0
apply split merge : 1.55 us (0.6%)
LB compute : 258.49 us (92.1%)
LB move op cnt : 0
LB apply : 4.15 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.88 us (67.6%)
Info: cfl dt = 0.001558767264712717 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.7411e+05 | 262144 | 1 | 2.999e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.713657782260643 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.191655489153082, dt = 0.001558767264712717
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.61 us (2.6%)
patch tree reduce : 1.88 us (0.7%)
gen split merge : 950.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.73 us (0.7%)
LB compute : 234.14 us (91.2%)
LB move op cnt : 0
LB apply : 4.68 us (1.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.94 us (66.8%)
Info: cfl dt = 0.0015585912251825972 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.3768e+05 | 262144 | 1 | 3.129e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.93179361609328 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.1932142564177948, dt = 0.0015585912251825972
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.48 us (2.0%)
patch tree reduce : 1.77 us (0.5%)
gen split merge : 950.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.59 us (0.5%)
LB compute : 299.91 us (93.3%)
LB move op cnt : 0
LB apply : 4.31 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.85 us (63.7%)
Info: cfl dt = 0.0015584152552174156 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2550e+05 | 262144 | 1 | 3.176e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.668999152287693 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.1947728476429775, dt = 0.0015584152552174156
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.83 us (2.3%)
patch tree reduce : 1.91 us (0.6%)
gen split merge : 1.04 us (0.3%)
split / merge op : 0/0
apply split merge : 1.80 us (0.6%)
LB compute : 276.93 us (92.5%)
LB move op cnt : 0
LB apply : 4.22 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.67 us (63.2%)
Info: cfl dt = 0.0015582392465150563 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.3396e+05 | 262144 | 1 | 3.143e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.848037544515577 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.196331262898195, dt = 0.0015582392465150563
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.16 us (1.9%)
patch tree reduce : 1.82 us (0.6%)
gen split merge : 1.27 us (0.4%)
split / merge op : 0/0
apply split merge : 1.39 us (0.4%)
LB compute : 309.28 us (93.5%)
LB move op cnt : 0
LB apply : 4.14 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.47 us (66.3%)
Info: cfl dt = 0.001558063120948792 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 6.7903e+05 | 262144 | 1 | 3.861e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.530676734847972 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.1978895021447102, dt = 0.001558063120948792
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.64 us (2.0%)
patch tree reduce : 2.01 us (0.6%)
gen split merge : 950.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.33 us (0.4%)
LB compute : 312.61 us (93.4%)
LB move op cnt : 0
LB apply : 4.51 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.70 us (63.6%)
Info: cfl dt = 0.0015578868292454885 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.0894e+05 | 262144 | 1 | 3.698e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.16895294747416 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.199447565265659, dt = 0.0015578868292454885
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.62 us (2.2%)
patch tree reduce : 1.88 us (0.6%)
gen split merge : 990.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.56 us (0.5%)
LB compute : 284.70 us (92.8%)
LB move op cnt : 0
LB apply : 4.35 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.53 us (67.0%)
Info: cfl dt = 0.001557710348906484 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3881e+05 | 262144 | 1 | 3.548e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.806352527716149 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.2010054520949045, dt = 0.001557710348906484
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.00 us (2.1%)
patch tree reduce : 2.00 us (0.6%)
gen split merge : 968.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.40 us (0.4%)
LB compute : 311.48 us (93.2%)
LB move op cnt : 0
LB apply : 4.46 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.72 us (66.3%)
Info: cfl dt = 0.0015575336862680487 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.1719e+05 | 262144 | 1 | 3.208e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.48122324862597 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.202563162443811, dt = 0.0015575336862680487
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.56 us (2.3%)
patch tree reduce : 1.68 us (0.6%)
gen split merge : 892.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.39 us (0.5%)
LB compute : 258.26 us (92.4%)
LB move op cnt : 0
LB apply : 3.88 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.38 us (64.3%)
Info: cfl dt = 0.0015573568759784913 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.3529e+05 | 262144 | 1 | 3.138e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.866412895479886 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.204120696130079, dt = 0.0015573568759784913
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.26 us (2.8%)
patch tree reduce : 1.79 us (0.7%)
gen split merge : 1.02 us (0.4%)
split / merge op : 0/0
apply split merge : 1.62 us (0.6%)
LB compute : 241.09 us (91.4%)
LB move op cnt : 0
LB apply : 4.37 us (1.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.44 us (66.8%)
Info: cfl dt = 0.0015571799625762356 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2813e+05 | 262144 | 1 | 3.166e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.711146626834065 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.2056780530060576, dt = 0.0015571799625762356
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.95 us (2.2%)
patch tree reduce : 1.71 us (0.5%)
gen split merge : 1.20 us (0.4%)
split / merge op : 0/0
apply split merge : 1.37 us (0.4%)
LB compute : 290.41 us (93.0%)
LB move op cnt : 0
LB apply : 3.81 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.48 us (65.4%)
Info: cfl dt = 0.0015570030071553544 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2282e+05 | 262144 | 1 | 3.186e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.595593355249203 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.207235232968634, dt = 0.0015570030071553544
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.73 us (2.1%)
patch tree reduce : 1.98 us (0.6%)
gen split merge : 824.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.58 us (0.5%)
LB compute : 299.25 us (93.0%)
LB move op cnt : 0
LB apply : 4.21 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.40 us (63.3%)
Info: cfl dt = 0.0015568260590071471 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.3026e+05 | 262144 | 1 | 3.157e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.752711783118542 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.2087922359757894, dt = 0.0015568260590071471
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.44 us (2.3%)
patch tree reduce : 1.90 us (0.7%)
gen split merge : 812.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.44 us (0.5%)
LB compute : 257.33 us (92.2%)
LB move op cnt : 0
LB apply : 3.97 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.79 us (72.5%)
Info: cfl dt = 0.0015566492128128353 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.3026e+05 | 262144 | 1 | 3.157e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.750712631053347 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.2103490620347968, dt = 0.0015566492128128353
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.61 us (2.4%)
patch tree reduce : 1.97 us (0.7%)
gen split merge : 1.02 us (0.4%)
split / merge op : 0/0
apply split merge : 1.49 us (0.5%)
LB compute : 255.75 us (92.1%)
LB move op cnt : 0
LB apply : 3.95 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.83 us (64.9%)
Info: cfl dt = 0.0015564726518204437 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2611e+05 | 262144 | 1 | 3.173e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.659922272170384 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.2119057112476095, dt = 0.0015564726518204437
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.83 us (2.6%)
patch tree reduce : 1.88 us (0.7%)
gen split merge : 830.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.48 us (0.6%)
LB compute : 246.24 us (91.9%)
LB move op cnt : 0
LB apply : 3.97 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.44 us (64.3%)
Info: cfl dt = 0.00155629661655637 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.3637e+05 | 262144 | 1 | 3.134e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.877237179069922 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.2134621838994297, dt = 0.00155629661655637
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.22 us (2.8%)
patch tree reduce : 1.82 us (0.7%)
gen split merge : 935.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.47 us (0.6%)
LB compute : 238.46 us (91.4%)
LB move op cnt : 0
LB apply : 4.47 us (1.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.38 us (64.7%)
Info: cfl dt = 0.0015561213457306858 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2930e+05 | 262144 | 1 | 3.161e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.72420036016246 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.2150184805159863, dt = 0.0015561213457306858
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.23 us (2.7%)
patch tree reduce : 2.03 us (0.8%)
gen split merge : 823.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.37 us (0.5%)
LB compute : 243.85 us (91.5%)
LB move op cnt : 0
LB apply : 4.24 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.38 us (65.6%)
Info: cfl dt = 0.0015559470283281255 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.1236e+05 | 262144 | 1 | 3.227e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.360099519727633 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.216574601861717, dt = 0.0015559470283281255
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.19 us (2.3%)
patch tree reduce : 1.73 us (0.6%)
gen split merge : 983.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.58 us (0.5%)
LB compute : 289.46 us (92.7%)
LB move op cnt : 0
LB apply : 4.11 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.67 us (68.5%)
Info: cfl dt = 0.001555773802772793 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.3149e+05 | 262144 | 1 | 3.153e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.767080301443457 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.218130548890045, dt = 0.001555773802772793
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.22 us (2.7%)
patch tree reduce : 1.80 us (0.7%)
gen split merge : 979.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.49 us (0.6%)
LB compute : 242.61 us (91.5%)
LB move op cnt : 0
LB apply : 4.22 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.64 us (68.6%)
Info: cfl dt = 0.0015556017545607034 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2878e+05 | 262144 | 1 | 3.163e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.707159227452117 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.2196863226928176, dt = 0.0015556017545607034
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.22 us (2.8%)
patch tree reduce : 1.91 us (0.7%)
gen split merge : 900.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.27 us (0.5%)
LB compute : 239.86 us (91.5%)
LB move op cnt : 0
LB apply : 4.01 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.74 us (62.8%)
Info: cfl dt = 0.0015554309644874324 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.8688e+05 | 262144 | 1 | 3.331e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.810036409182963 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.2212419244473782, dt = 0.0015554309644874324
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.95 us (2.7%)
patch tree reduce : 1.77 us (0.7%)
gen split merge : 1.15 us (0.4%)
split / merge op : 0/0
apply split merge : 1.52 us (0.6%)
LB compute : 233.87 us (91.3%)
LB move op cnt : 0
LB apply : 4.32 us (1.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.32 us (63.2%)
Info: cfl dt = 0.0015552616027311329 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2856e+05 | 262144 | 1 | 3.164e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.69855233606229 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.2227973554118656, dt = 0.0015552616027311329
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.39 us (2.4%)
patch tree reduce : 1.93 us (0.6%)
gen split merge : 998.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.53 us (0.5%)
LB compute : 281.61 us (92.6%)
LB move op cnt : 0
LB apply : 4.09 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.57 us (65.4%)
Info: cfl dt = 0.0015550947588586265 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2530e+05 | 262144 | 1 | 3.176e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.62696345158637 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.224352617014597, dt = 0.0015550947588586265
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.20 us (2.7%)
patch tree reduce : 2.01 us (0.7%)
gen split merge : 812.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.92 us (0.7%)
LB compute : 245.94 us (91.5%)
LB move op cnt : 0
LB apply : 4.15 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.76 us (64.6%)
Info: cfl dt = 0.0015549313151491826 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.8241e+05 | 262144 | 1 | 3.350e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.709205584161136 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.2259077117734556, dt = 0.0015549313151491826
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 16.81 us (6.0%)
patch tree reduce : 1.75 us (0.6%)
gen split merge : 781.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.68 us (0.6%)
LB compute : 246.47 us (88.5%)
LB move op cnt : 0
LB apply : 4.29 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.45 us (66.2%)
Info: cfl dt = 0.0015547706978985651 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2751e+05 | 262144 | 1 | 3.168e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.67041766586294 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.2274626430886046, dt = 0.0015547706978985651
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.83 us (2.6%)
patch tree reduce : 1.70 us (0.7%)
gen split merge : 962.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.42 us (0.5%)
LB compute : 239.00 us (91.6%)
LB move op cnt : 0
LB apply : 4.43 us (1.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.51 us (67.6%)
Info: cfl dt = 0.0015546117845838291 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2694e+05 | 262144 | 1 | 3.170e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.656460032898774 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.229017413786503, dt = 0.0015546117845838291
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.47 us (2.4%)
patch tree reduce : 1.88 us (0.7%)
gen split merge : 903.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.54 us (0.6%)
LB compute : 245.54 us (91.8%)
LB move op cnt : 0
LB apply : 4.30 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.93 us (67.3%)
Info: cfl dt = 0.001554456134204013 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.3024e+05 | 262144 | 1 | 3.157e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.72501280380876 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.230572025571087, dt = 0.001554456134204013
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.85 us (2.7%)
patch tree reduce : 1.73 us (0.7%)
gen split merge : 939.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.55 us (0.6%)
LB compute : 236.19 us (91.5%)
LB move op cnt : 0
LB apply : 4.52 us (1.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.44 us (66.5%)
Info: cfl dt = 0.0015543036024340897 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.3102e+05 | 262144 | 1 | 3.154e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.740046088186773 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.232126481705291, dt = 0.0015543036024340897
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 8.36 us (3.1%)
patch tree reduce : 1.82 us (0.7%)
gen split merge : 931.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.43 us (0.5%)
LB compute : 243.27 us (91.1%)
LB move op cnt : 0
LB apply : 4.22 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.76 us (70.7%)
Info: cfl dt = 0.0015541536977952636 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.5464e+05 | 262144 | 1 | 3.067e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.242285134635516 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.2336807853077247, dt = 0.0015541536977952636
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.65 us (2.6%)
patch tree reduce : 1.92 us (0.7%)
gen split merge : 1.10 us (0.4%)
split / merge op : 0/0
apply split merge : 1.55 us (0.6%)
LB compute : 238.27 us (91.6%)
LB move op cnt : 0
LB apply : 4.13 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.49 us (66.2%)
Info: cfl dt = 0.001554005626076192 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2941e+05 | 262144 | 1 | 3.161e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.702167005880188 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.23523493900552, dt = 0.001554005626076192
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.73 us (2.5%)
patch tree reduce : 1.83 us (0.7%)
gen split merge : 1.04 us (0.4%)
split / merge op : 0/0
apply split merge : 1.78 us (0.7%)
LB compute : 241.34 us (91.3%)
LB move op cnt : 0
LB apply : 4.27 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.57 us (65.8%)
Info: cfl dt = 0.001553858776908766 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2674e+05 | 262144 | 1 | 3.171e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.6435748634374 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.2367889446315963, dt = 0.001553858776908766
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.12 us (2.5%)
patch tree reduce : 1.93 us (0.7%)
gen split merge : 933.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.41 us (0.5%)
LB compute : 257.16 us (92.0%)
LB move op cnt : 0
LB apply : 4.07 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.52 us (64.8%)
Info: cfl dt = 0.0015537127403489326 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.6999e+05 | 262144 | 1 | 3.404e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.430878154525185 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.238342803408505, dt = 0.0015537127403489326
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.54 us (2.1%)
patch tree reduce : 1.86 us (0.6%)
gen split merge : 1.01 us (0.3%)
split / merge op : 0/0
apply split merge : 1.46 us (0.5%)
LB compute : 283.49 us (92.7%)
LB move op cnt : 0
LB apply : 4.70 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.04 us (68.0%)
Info: cfl dt = 0.0015535672725807905 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.2316e+05 | 262144 | 1 | 3.625e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.429970459032193 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.2398965161488538, dt = 0.0015535672725807905
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.36 us (2.5%)
patch tree reduce : 1.61 us (0.5%)
gen split merge : 891.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.39 us (0.5%)
LB compute : 273.73 us (92.6%)
LB move op cnt : 0
LB apply : 4.05 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.69 us (66.9%)
Info: cfl dt = 0.0015534222513093694 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.8215e+05 | 262144 | 1 | 3.352e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.687077056337923 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.2414500834214346, dt = 0.0015534222513093694
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.56 us (2.2%)
patch tree reduce : 1.69 us (0.6%)
gen split merge : 1.05 us (0.4%)
split / merge op : 0/0
apply split merge : 1.43 us (0.5%)
LB compute : 277.34 us (92.7%)
LB move op cnt : 0
LB apply : 4.22 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.44 us (64.9%)
Info: cfl dt = 0.0015532776326877612 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.1598e+05 | 262144 | 1 | 3.213e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.407269735395758 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.243003505672744, dt = 0.0015532776326877612
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.81 us (2.5%)
patch tree reduce : 2.22 us (0.8%)
gen split merge : 1.06 us (0.4%)
split / merge op : 0/0
apply split merge : 1.45 us (0.5%)
LB compute : 254.32 us (92.0%)
LB move op cnt : 0
LB apply : 4.07 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.48 us (65.5%)
Info: cfl dt = 0.0015531334306600245 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.1510e+05 | 262144 | 1 | 3.216e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.386993834864374 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.244556783305432, dt = 0.0015531334306600245
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.49 us (2.2%)
patch tree reduce : 2.01 us (0.7%)
gen split merge : 975.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.65 us (0.6%)
LB compute : 270.53 us (92.4%)
LB move op cnt : 0
LB apply : 4.71 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.46 us (65.4%)
Info: cfl dt = 0.0015529896865552448 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2039e+05 | 262144 | 1 | 3.195e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.49804293022077 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.246109916736092, dt = 0.0015529896865552448
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.05 us (2.5%)
patch tree reduce : 1.75 us (0.6%)
gen split merge : 1.01 us (0.4%)
split / merge op : 0/0
apply split merge : 1.21 us (0.4%)
LB compute : 255.75 us (92.0%)
LB move op cnt : 0
LB apply : 4.08 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.59 us (68.6%)
Info: cfl dt = 0.001552846422911455 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.1880e+05 | 262144 | 1 | 3.202e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.46250951314967 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.247662906422647, dt = 0.0012954269106861815
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.60 us (2.6%)
patch tree reduce : 1.74 us (0.6%)
gen split merge : 897.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.41 us (0.5%)
LB compute : 273.51 us (92.3%)
LB move op cnt : 0
LB apply : 4.57 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.87 us (64.2%)
Info: cfl dt = 0.0015527257008772965 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 6.5738e+05 | 262144 | 1 | 3.988e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11.694824657258717 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 485.486950791 (s) [Godunov][rank=0]
Info: dump to _to_trash/ramses_kh/periodic_0018.vtk [VTK Dump][rank=0]
- took 34.06 ms, bandwidth = 1.20 GB/s
amr::Godunov: t = 2.2489583333333334, dt = 0.0015527257008772965
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.39 us (2.2%)
patch tree reduce : 1.99 us (0.6%)
gen split merge : 933.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.59 us (0.5%)
LB compute : 320.81 us (93.4%)
LB move op cnt : 0
LB apply : 4.31 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.69 us (68.7%)
Info: cfl dt = 0.001552579957220312 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 6.5519e+05 | 262144 | 1 | 4.001e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.970899642388128 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.250511059034211, dt = 0.001552579957220312
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.09 us (2.3%)
patch tree reduce : 2.00 us (0.6%)
gen split merge : 1.03 us (0.3%)
split / merge op : 0/0
apply split merge : 1.40 us (0.5%)
LB compute : 285.17 us (92.5%)
LB move op cnt : 0
LB apply : 4.74 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.43 us (66.0%)
Info: cfl dt = 0.0015524362180172385 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.1963e+05 | 262144 | 1 | 3.198e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.475606099717112 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.252063638991431, dt = 0.0015524362180172385
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.69 us (1.9%)
patch tree reduce : 2.02 us (0.6%)
gen split merge : 1.07 us (0.3%)
split / merge op : 0/0
apply split merge : 1.31 us (0.4%)
LB compute : 321.11 us (93.5%)
LB move op cnt : 0
LB apply : 4.37 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.58 us (66.9%)
Info: cfl dt = 0.0015522948266187913 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.1843e+05 | 262144 | 1 | 3.203e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.44843607451323 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.253616075209448, dt = 0.0015522948266187913
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.91 us (2.2%)
patch tree reduce : 1.83 us (0.6%)
gen split merge : 840.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.50 us (0.5%)
LB compute : 290.16 us (92.9%)
LB move op cnt : 0
LB apply : 4.38 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.30 us (64.1%)
Info: cfl dt = 0.001552155852012846 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.1953e+05 | 262144 | 1 | 3.199e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.47029995132538 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.255168370036067, dt = 0.001552155852012846
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.01 us (2.7%)
patch tree reduce : 1.81 us (0.7%)
gen split merge : 972.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.58 us (0.6%)
LB compute : 236.53 us (91.2%)
LB move op cnt : 0
LB apply : 4.40 us (1.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.75 us (63.4%)
Info: cfl dt = 0.001552019082912724 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.0765e+05 | 262144 | 1 | 3.246e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.215454835517363 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.25672052588808, dt = 0.001552019082912724
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.50 us (2.2%)
patch tree reduce : 2.01 us (0.7%)
gen split merge : 1.04 us (0.4%)
split / merge op : 0/0
apply split merge : 1.32 us (0.4%)
LB compute : 275.83 us (92.7%)
LB move op cnt : 0
LB apply : 4.01 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.40 us (65.2%)
Info: cfl dt = 0.001551884167468215 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.1739e+05 | 262144 | 1 | 3.207e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.421704060385487 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.2582725449709926, dt = 0.001551884167468215
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.56 us (2.5%)
patch tree reduce : 1.85 us (0.7%)
gen split merge : 852.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.39 us (0.5%)
LB compute : 236.38 us (91.4%)
LB move op cnt : 0
LB apply : 4.33 us (1.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.36 us (65.8%)
Info: cfl dt = 0.0015517507748645841 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2875e+05 | 262144 | 1 | 3.163e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.6623132749503 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.259824429138461, dt = 0.0015517507748645841
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.19 us (2.8%)
patch tree reduce : 1.81 us (0.7%)
gen split merge : 1.02 us (0.4%)
split / merge op : 0/0
apply split merge : 1.61 us (0.6%)
LB compute : 233.45 us (91.3%)
LB move op cnt : 0
LB apply : 3.99 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.34 us (64.9%)
Info: cfl dt = 0.0015516185381438095 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.4458e+05 | 262144 | 1 | 3.104e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.998008301028275 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.2613761799133254, dt = 0.0015516185381438095
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.46 us (2.0%)
patch tree reduce : 1.94 us (0.6%)
gen split merge : 996.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.42 us (0.4%)
LB compute : 301.37 us (93.3%)
LB move op cnt : 0
LB apply : 4.32 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.56 us (66.8%)
Info: cfl dt = 0.0015514871611110462 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.4472e+05 | 262144 | 1 | 3.103e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.999568961456085 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.2629277984514693, dt = 0.0015514871611110462
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.52 us (2.2%)
patch tree reduce : 1.91 us (0.7%)
gen split merge : 1.13 us (0.4%)
split / merge op : 0/0
apply split merge : 1.49 us (0.5%)
LB compute : 270.60 us (92.4%)
LB move op cnt : 0
LB apply : 4.26 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.42 us (64.7%)
Info: cfl dt = 0.0015513565698946732 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.5705e+05 | 262144 | 1 | 3.463e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.130093215318528 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.2644792856125804, dt = 0.0015513565698946732
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.29 us (2.6%)
patch tree reduce : 1.66 us (0.6%)
gen split merge : 965.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.41 us (0.5%)
LB compute : 260.61 us (92.2%)
LB move op cnt : 0
LB apply : 3.99 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.47 us (66.2%)
Info: cfl dt = 0.0015512268440674181 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.6353e+05 | 262144 | 1 | 3.433e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.266698333226426 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.266030642182475, dt = 0.0015512268440674181
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.44 us (2.2%)
patch tree reduce : 1.74 us (0.6%)
gen split merge : 1.05 us (0.4%)
split / merge op : 0/0
apply split merge : 1.56 us (0.5%)
LB compute : 278.08 us (93.0%)
LB move op cnt : 0
LB apply : 3.96 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.13 us (58.9%)
Info: cfl dt = 0.0015510981607548089 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.1717e+05 | 262144 | 1 | 3.208e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.40802303927935 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.2675818690265426, dt = 0.0015510981607548089
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.53 us (2.4%)
patch tree reduce : 1.77 us (0.7%)
gen split merge : 1.10 us (0.4%)
split / merge op : 0/0
apply split merge : 1.59 us (0.6%)
LB compute : 245.79 us (91.7%)
LB move op cnt : 0
LB apply : 4.61 us (1.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.38 us (65.8%)
Info: cfl dt = 0.001550970736911927 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.4126e+05 | 262144 | 1 | 3.116e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.919673311350206 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.2691329671872973, dt = 0.001550970736911927
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.87 us (2.6%)
patch tree reduce : 1.79 us (0.7%)
gen split merge : 875.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.34 us (0.5%)
LB compute : 245.51 us (91.9%)
LB move op cnt : 0
LB apply : 4.26 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.32 us (63.5%)
Info: cfl dt = 0.0015508449219560783 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.5165e+05 | 262144 | 1 | 3.488e-01 | 0.0% | 0.8% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.009666759543766 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.2706839379242094, dt = 0.0015508449219560783
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.76 us (2.4%)
patch tree reduce : 1.80 us (0.6%)
gen split merge : 1.04 us (0.4%)
split / merge op : 0/0
apply split merge : 1.41 us (0.5%)
LB compute : 265.15 us (92.4%)
LB move op cnt : 0
LB apply : 3.94 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.52 us (67.3%)
Info: cfl dt = 0.001550720903276394 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3328e+05 | 262144 | 1 | 3.575e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.617216364076148 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.2722347828461653, dt = 0.001550720903276394
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.91 us (2.7%)
patch tree reduce : 1.64 us (0.6%)
gen split merge : 1.29 us (0.5%)
split / merge op : 0/0
apply split merge : 1.39 us (0.5%)
LB compute : 233.74 us (91.3%)
LB move op cnt : 0
LB apply : 4.09 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.55 us (68.0%)
Info: cfl dt = 0.0015505988740099161 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.2341e+05 | 262144 | 1 | 3.624e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.405757752995763 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.273785503749442, dt = 0.0015505988740099161
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.32 us (2.1%)
patch tree reduce : 1.92 us (0.6%)
gen split merge : 966.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.40 us (0.5%)
LB compute : 284.33 us (92.9%)
LB move op cnt : 0
LB apply : 4.23 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.54 us (67.3%)
Info: cfl dt = 0.0015504789110204645 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3109e+05 | 262144 | 1 | 3.586e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.568006271527192 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.2753361026234518, dt = 0.0015504789110204645
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.56 us (2.4%)
patch tree reduce : 1.77 us (0.7%)
gen split merge : 823.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.43 us (0.5%)
LB compute : 235.33 us (87.2%)
LB move op cnt : 0
LB apply : 16.88 us (6.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.51 us (67.3%)
Info: cfl dt = 0.0015503609488322582 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 6.8706e+05 | 262144 | 1 | 3.815e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.629197159674804 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.2768865815344723, dt = 0.0015503609488322582
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.64 us (2.6%)
patch tree reduce : 1.84 us (0.7%)
gen split merge : 1.09 us (0.4%)
split / merge op : 0/0
apply split merge : 1.54 us (0.6%)
LB compute : 238.05 us (91.7%)
LB move op cnt : 0
LB apply : 4.07 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.37 us (64.4%)
Info: cfl dt = 0.0015502448463063573 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.1346e+05 | 262144 | 1 | 3.223e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.31939926585739 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.2784369424833044, dt = 0.0015502448463063573
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.76 us (2.2%)
patch tree reduce : 1.69 us (0.5%)
gen split merge : 958.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.65 us (0.5%)
LB compute : 289.63 us (93.0%)
LB move op cnt : 0
LB apply : 4.26 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.60 us (66.6%)
Info: cfl dt = 0.0015501304503963416 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.4743e+05 | 262144 | 1 | 3.507e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.912358781453198 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.2799871873296107, dt = 0.0015501304503963416
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.16 us (2.4%)
patch tree reduce : 1.66 us (0.6%)
gen split merge : 1.06 us (0.4%)
split / merge op : 0/0
apply split merge : 1.54 us (0.5%)
LB compute : 274.07 us (92.3%)
LB move op cnt : 0
LB apply : 4.19 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.49 us (65.3%)
Info: cfl dt = 0.0015500176473088332 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.4253e+05 | 262144 | 1 | 3.111e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.935618577322888 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.281537317780007, dt = 0.0015500176473088332
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.88 us (2.7%)
patch tree reduce : 1.84 us (0.7%)
gen split merge : 942.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.10 us (0.4%)
LB compute : 232.99 us (91.4%)
LB move op cnt : 0
LB apply : 4.50 us (1.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.36 us (63.4%)
Info: cfl dt = 0.0015499064321359624 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.3015e+05 | 262144 | 1 | 3.158e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.670801474117575 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.283087335427316, dt = 0.0015499064321359624
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.68 us (2.5%)
patch tree reduce : 1.87 us (0.7%)
gen split merge : 920.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.67 us (0.6%)
LB compute : 240.67 us (91.8%)
LB move op cnt : 0
LB apply : 4.08 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.75 us (64.6%)
Info: cfl dt = 0.0015497969549200506 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.6251e+05 | 262144 | 1 | 3.438e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.229891465064018 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.2846372418594516, dt = 0.0015497969549200506
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.11 us (2.4%)
patch tree reduce : 1.92 us (0.7%)
gen split merge : 885.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.27 us (0.5%)
LB compute : 237.33 us (91.9%)
LB move op cnt : 0
LB apply : 3.96 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.72 us (63.5%)
Info: cfl dt = 0.001549689365920454 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.9773e+05 | 262144 | 1 | 3.286e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.978237875206464 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.2861870388143717, dt = 0.001549689365920454
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.41 us (2.5%)
patch tree reduce : 1.84 us (0.7%)
gen split merge : 1.02 us (0.4%)
split / merge op : 0/0
apply split merge : 1.44 us (0.6%)
LB compute : 235.24 us (91.7%)
LB move op cnt : 0
LB apply : 4.08 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.49 us (65.9%)
Info: cfl dt = 0.0015495837398648536 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2456e+05 | 262144 | 1 | 3.179e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.548168099946754 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.2877367281802923, dt = 0.0015495837398648536
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.50 us (2.0%)
patch tree reduce : 1.78 us (0.6%)
gen split merge : 1.14 us (0.4%)
split / merge op : 0/0
apply split merge : 1.34 us (0.4%)
LB compute : 296.05 us (93.2%)
LB move op cnt : 0
LB apply : 4.42 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.45 us (65.2%)
Info: cfl dt = 0.0015494796984960708 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2068e+05 | 262144 | 1 | 3.194e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.46425387654905 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.289286311920157, dt = 0.0015494796984960708
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.20 us (2.0%)
patch tree reduce : 1.88 us (0.6%)
gen split merge : 844.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.46 us (0.5%)
LB compute : 285.77 us (93.1%)
LB move op cnt : 0
LB apply : 3.95 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.31 us (65.8%)
Info: cfl dt = 0.0015493768340420775 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.4815e+05 | 262144 | 1 | 3.091e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.047737601862828 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.2908357916186532, dt = 0.0015493768340420775
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.45 us (2.1%)
patch tree reduce : 1.74 us (0.6%)
gen split merge : 959.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.66 us (0.5%)
LB compute : 289.91 us (93.1%)
LB move op cnt : 0
LB apply : 4.05 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.42 us (65.0%)
Info: cfl dt = 0.0015492749285960523 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2450e+05 | 262144 | 1 | 3.179e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.543267539271934 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.2923851684526952, dt = 0.0015492749285960523
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.88 us (2.3%)
patch tree reduce : 1.72 us (0.6%)
gen split merge : 1.01 us (0.3%)
split / merge op : 0/0
apply split merge : 1.56 us (0.5%)
LB compute : 281.21 us (92.7%)
LB move op cnt : 0
LB apply : 4.09 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.45 us (63.9%)
Info: cfl dt = 0.001549173997651582 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2069e+05 | 262144 | 1 | 3.194e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.461084633973343 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.2939344433812914, dt = 0.001549173997651582
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.62 us (2.5%)
patch tree reduce : 1.77 us (0.7%)
gen split merge : 943.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.64 us (0.6%)
LB compute : 239.68 us (91.7%)
LB move op cnt : 0
LB apply : 4.35 us (1.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.05 us (65.6%)
Info: cfl dt = 0.0015490742281864462 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2173e+05 | 262144 | 1 | 3.190e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.48198917433866 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.295483617378943, dt = 0.0015490742281864462
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.69 us (2.5%)
patch tree reduce : 1.76 us (0.6%)
gen split merge : 1.02 us (0.4%)
split / merge op : 0/0
apply split merge : 1.59 us (0.6%)
LB compute : 249.69 us (91.8%)
LB move op cnt : 0
LB apply : 4.58 us (1.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.43 us (64.8%)
Info: cfl dt = 0.0015489759142928658 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2527e+05 | 262144 | 1 | 3.176e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.556215531109054 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.2970326916071295, dt = 0.0015489759142928658
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.55 us (2.1%)
patch tree reduce : 1.69 us (0.5%)
gen split merge : 1.02 us (0.3%)
split / merge op : 0/0
apply split merge : 1.50 us (0.5%)
LB compute : 297.33 us (93.3%)
LB move op cnt : 0
LB apply : 4.12 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.39 us (63.7%)
Info: cfl dt = 0.001548879415856253 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3710e+05 | 262144 | 1 | 3.556e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.679623926831209 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.2985816675214226, dt = 0.001548879415856253
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.86 us (2.4%)
patch tree reduce : 1.92 us (0.7%)
gen split merge : 875.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.77 us (0.6%)
LB compute : 257.45 us (91.9%)
LB move op cnt : 0
LB apply : 4.22 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.70 us (70.2%)
Info: cfl dt = 0.0015487852856336695 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.3245e+05 | 262144 | 1 | 3.149e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.70680029722491 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.300130546937279, dt = 0.0015487852856336695
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.63 us (2.4%)
patch tree reduce : 1.98 us (0.7%)
gen split merge : 877.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.44 us (0.5%)
LB compute : 255.22 us (92.1%)
LB move op cnt : 0
LB apply : 4.22 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.41 us (63.9%)
Info: cfl dt = 0.0015486948881037051 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2203e+05 | 262144 | 1 | 3.189e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.48409991563768 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.3016793322229123, dt = 0.0015486948881037051
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.14 us (2.7%)
patch tree reduce : 1.86 us (0.7%)
gen split merge : 952.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.49 us (0.6%)
LB compute : 244.06 us (91.6%)
LB move op cnt : 0
LB apply : 4.00 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.39 us (65.7%)
Info: cfl dt = 0.0015486087894969853 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.0474e+05 | 262144 | 1 | 3.257e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.11529458477348 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.303228027111016, dt = 0.0015486087894969853
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.37 us (2.4%)
patch tree reduce : 1.82 us (0.6%)
gen split merge : 953.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.62 us (0.5%)
LB compute : 280.79 us (92.5%)
LB move op cnt : 0
LB apply : 3.97 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.47 us (65.3%)
Info: cfl dt = 0.0015485272775297698 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.3612e+05 | 262144 | 1 | 3.135e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.781760664131436 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.304776635900513, dt = 0.0015485272775297698
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.52 us (2.4%)
patch tree reduce : 1.70 us (0.6%)
gen split merge : 818.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.42 us (0.5%)
LB compute : 248.49 us (91.9%)
LB move op cnt : 0
LB apply : 4.55 us (1.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.60 us (67.3%)
Info: cfl dt = 0.0015484508993169512 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.5114e+05 | 262144 | 1 | 3.080e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.100126858423735 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.306325163178043, dt = 0.0015484508993169512
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.28 us (2.6%)
patch tree reduce : 1.68 us (0.6%)
gen split merge : 1.04 us (0.4%)
split / merge op : 0/0
apply split merge : 1.64 us (0.6%)
LB compute : 261.84 us (92.1%)
LB move op cnt : 0
LB apply : 4.32 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.54 us (66.9%)
Info: cfl dt = 0.001548379995720758 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.4156e+05 | 262144 | 1 | 3.115e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.89557217460538 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.30787361407736, dt = 0.001548379995720758
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.84 us (2.6%)
patch tree reduce : 1.65 us (0.6%)
gen split merge : 914.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.36 us (0.5%)
LB compute : 245.36 us (91.9%)
LB move op cnt : 0
LB apply : 4.17 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.51 us (65.8%)
Info: cfl dt = 0.001548314434965905 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.1889e+05 | 262144 | 1 | 3.201e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.4126066852996 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.3094219940730807, dt = 0.001548314434965905
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.96 us (2.3%)
patch tree reduce : 1.70 us (0.6%)
gen split merge : 988.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.60 us (0.5%)
LB compute : 279.92 us (92.6%)
LB move op cnt : 0
LB apply : 4.17 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.56 us (66.2%)
Info: cfl dt = 0.0015482538391887429 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.1760e+05 | 262144 | 1 | 3.206e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.38448536966904 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.3109703085080464, dt = 0.0015482538391887429
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.96 us (2.3%)
patch tree reduce : 1.67 us (0.6%)
gen split merge : 948.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.36 us (0.5%)
LB compute : 277.53 us (92.9%)
LB move op cnt : 0
LB apply : 3.75 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.48 us (65.9%)
Info: cfl dt = 0.0015481977178117732 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2680e+05 | 262144 | 1 | 3.171e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.579397997960395 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.3125185623472353, dt = 0.0015481977178117732
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.67 us (2.5%)
patch tree reduce : 1.90 us (0.7%)
gen split merge : 1.05 us (0.4%)
split / merge op : 0/0
apply split merge : 1.71 us (0.6%)
LB compute : 241.76 us (91.5%)
LB move op cnt : 0
LB apply : 4.00 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.96 us (66.5%)
Info: cfl dt = 0.0015481455441107505 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.1235e+05 | 262144 | 1 | 3.227e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.271570740513067 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.314066760065047, dt = 0.0015481455441107505
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.42 us (2.5%)
patch tree reduce : 1.73 us (0.7%)
gen split merge : 1.03 us (0.4%)
split / merge op : 0/0
apply split merge : 1.31 us (0.5%)
LB compute : 236.60 us (91.7%)
LB move op cnt : 0
LB apply : 4.06 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.35 us (62.0%)
Info: cfl dt = 0.0015480968756043404 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2564e+05 | 262144 | 1 | 3.175e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.553523201017356 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.3156149056091575, dt = 0.0015480968756043404
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.79 us (2.3%)
patch tree reduce : 1.92 us (0.6%)
gen split merge : 1.01 us (0.3%)
split / merge op : 0/0
apply split merge : 1.52 us (0.5%)
LB compute : 279.38 us (92.7%)
LB move op cnt : 0
LB apply : 4.07 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.45 us (66.1%)
Info: cfl dt = 0.0015480513948023713 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3980e+05 | 262144 | 1 | 3.543e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.728060074945255 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.317163002484762, dt = 0.0015480513948023713
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.42 us (2.4%)
patch tree reduce : 1.72 us (0.6%)
gen split merge : 953.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.41 us (0.5%)
LB compute : 246.97 us (91.8%)
LB move op cnt : 0
LB apply : 4.21 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.52 us (67.6%)
Info: cfl dt = 0.0015480088934240613 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.4467e+05 | 262144 | 1 | 3.520e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.831111457396284 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.3187110538795643, dt = 0.0015480088934240613
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.66 us (2.7%)
patch tree reduce : 1.77 us (0.7%)
gen split merge : 1.05 us (0.4%)
split / merge op : 0/0
apply split merge : 1.49 us (0.6%)
LB compute : 229.10 us (91.4%)
LB move op cnt : 0
LB apply : 3.82 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.42 us (70.5%)
Info: cfl dt = 0.0015479693586690233 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.9046e+05 | 262144 | 1 | 3.316e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.804049616176073 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.320259062772988, dt = 0.0015479693586690233
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.64 us (2.5%)
patch tree reduce : 1.97 us (0.6%)
gen split merge : 1.00 us (0.3%)
split / merge op : 0/0
apply split merge : 1.33 us (0.4%)
LB compute : 282.97 us (92.5%)
LB move op cnt : 0
LB apply : 4.15 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.39 us (66.0%)
Info: cfl dt = 0.0015479328314687822 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.8565e+05 | 262144 | 1 | 3.337e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.701529765818247 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.321807032131657, dt = 0.0015479328314687822
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.82 us (2.7%)
patch tree reduce : 1.69 us (0.6%)
gen split merge : 959.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.42 us (0.5%)
LB compute : 265.77 us (92.2%)
LB move op cnt : 0
LB apply : 4.02 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.57 us (68.9%)
Info: cfl dt = 0.0015478993627471968 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.0767e+05 | 262144 | 1 | 3.246e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.169120392945704 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.323354964963126, dt = 0.0015478993627471968
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.44 us (2.8%)
patch tree reduce : 1.94 us (0.7%)
gen split merge : 1.03 us (0.4%)
split / merge op : 0/0
apply split merge : 1.52 us (0.6%)
LB compute : 238.53 us (91.4%)
LB move op cnt : 0
LB apply : 4.15 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.36 us (62.1%)
Info: cfl dt = 0.001547869072523081 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2458e+05 | 262144 | 1 | 3.179e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.52814013036662 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.3249028643258733, dt = 0.001547869072523081
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.80 us (1.2%)
patch tree reduce : 1.63 us (0.3%)
gen split merge : 1.24 us (0.2%)
split / merge op : 0/0
apply split merge : 1.42 us (0.3%)
LB compute : 540.36 us (95.9%)
LB move op cnt : 0
LB apply : 4.91 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.08 us (74.6%)
Info: cfl dt = 0.0015478421381725164 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2306e+05 | 262144 | 1 | 3.185e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.495677252990195 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.3264507333983966, dt = 0.0015478421381725164
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.64 us (2.4%)
patch tree reduce : 1.78 us (0.6%)
gen split merge : 945.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.40 us (0.5%)
LB compute : 252.63 us (91.9%)
LB move op cnt : 0
LB apply : 4.46 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.45 us (64.9%)
Info: cfl dt = 0.001547818718308709 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.1716e+05 | 262144 | 1 | 3.208e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.36991705156191 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.327998575536569, dt = 0.001547818718308709
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.19 us (2.7%)
patch tree reduce : 1.79 us (0.7%)
gen split merge : 985.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.20 us (0.5%)
LB compute : 239.28 us (91.5%)
LB move op cnt : 0
LB apply : 4.26 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.37 us (63.4%)
Info: cfl dt = 0.001547799028329616 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2135e+05 | 262144 | 1 | 3.192e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.45873427239816 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.3295463942548778, dt = 0.001547799028329616
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.61 us (2.2%)
patch tree reduce : 1.72 us (0.6%)
gen split merge : 1.12 us (0.4%)
split / merge op : 0/0
apply split merge : 1.49 us (0.5%)
LB compute : 273.79 us (92.7%)
LB move op cnt : 0
LB apply : 4.00 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.47 us (65.7%)
Info: cfl dt = 0.0015477832837932884 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2722e+05 | 262144 | 1 | 3.169e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.58326681026648 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.3310941932832074, dt = 0.0015477832837932884
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.55 us (2.4%)
patch tree reduce : 1.64 us (0.6%)
gen split merge : 1.06 us (0.4%)
split / merge op : 0/0
apply split merge : 1.61 us (0.6%)
LB compute : 248.52 us (91.8%)
LB move op cnt : 0
LB apply : 4.30 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.99 us (65.7%)
Info: cfl dt = 0.0015477716224789916 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2947e+05 | 262144 | 1 | 3.160e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.630793535924283 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.332641976567001, dt = 0.0015477716224789916
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.17 us (2.3%)
patch tree reduce : 1.85 us (0.7%)
gen split merge : 809.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.30 us (0.5%)
LB compute : 249.50 us (92.1%)
LB move op cnt : 0
LB apply : 4.05 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.43 us (65.6%)
Info: cfl dt = 0.0015477639800643094 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.6540e+05 | 262144 | 1 | 3.029e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.394346733614416 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.33418974818948, dt = 0.0015477639800643094
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.49 us (2.5%)
patch tree reduce : 1.94 us (0.8%)
gen split merge : 1.06 us (0.4%)
split / merge op : 0/0
apply split merge : 1.41 us (0.5%)
LB compute : 235.31 us (91.7%)
LB move op cnt : 0
LB apply : 4.15 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.81 us (72.7%)
Info: cfl dt = 0.0015477602476969873 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2884e+05 | 262144 | 1 | 3.163e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.617287952720044 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.3357375121695445, dt = 0.0015477602476969873
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.19 us (2.2%)
patch tree reduce : 1.66 us (0.5%)
gen split merge : 920.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.50 us (0.5%)
LB compute : 297.54 us (93.0%)
LB move op cnt : 0
LB apply : 4.25 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.87 us (70.5%)
Info: cfl dt = 0.001547760161057379 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.3071e+05 | 262144 | 1 | 3.156e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.656910198669692 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.3372852724172417, dt = 0.001547760161057379
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.43 us (2.5%)
patch tree reduce : 1.95 us (0.7%)
gen split merge : 1.04 us (0.4%)
split / merge op : 0/0
apply split merge : 1.51 us (0.6%)
LB compute : 238.86 us (91.7%)
LB move op cnt : 0
LB apply : 3.83 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.56 us (65.4%)
Info: cfl dt = 0.0015477634534562703 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2430e+05 | 262144 | 1 | 3.180e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.52066746870195 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.338833032578299, dt = 0.0015477634534562703
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.89 us (2.4%)
patch tree reduce : 1.73 us (0.6%)
gen split merge : 874.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.52 us (0.5%)
LB compute : 261.01 us (92.4%)
LB move op cnt : 0
LB apply : 4.08 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.55 us (66.9%)
Info: cfl dt = 0.0015477702209791462 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2869e+05 | 262144 | 1 | 3.163e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.613950439949697 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.3403807960317553, dt = 0.0015477702209791462
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.96 us (2.6%)
patch tree reduce : 2.06 us (0.8%)
gen split merge : 951.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.65 us (0.6%)
LB compute : 243.91 us (91.5%)
LB move op cnt : 0
LB apply : 4.04 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.07 us (72.9%)
Info: cfl dt = 0.001547780471778201 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.1981e+05 | 262144 | 1 | 3.198e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.42542028508185 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.3419285662527343, dt = 0.001547780471778201
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.69 us (2.5%)
patch tree reduce : 1.68 us (0.6%)
gen split merge : 987.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.94 us (0.7%)
LB compute : 243.29 us (91.6%)
LB move op cnt : 0
LB apply : 4.34 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.48 us (65.9%)
Info: cfl dt = 0.0015477942221105824 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2217e+05 | 262144 | 1 | 3.188e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.475707392638917 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.3434763467245125, dt = 0.0015477942221105824
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.32 us (2.8%)
patch tree reduce : 1.88 us (0.7%)
gen split merge : 904.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.38 us (0.5%)
LB compute : 240.44 us (91.5%)
LB move op cnt : 0
LB apply : 4.15 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.08 us (68.0%)
Info: cfl dt = 0.001547811686672361 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2120e+05 | 262144 | 1 | 3.192e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.455184336091055 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.3450241409466233, dt = 0.001547811686672361
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.21 us (2.4%)
patch tree reduce : 1.83 us (0.6%)
gen split merge : 1.12 us (0.4%)
split / merge op : 0/0
apply split merge : 1.17 us (0.4%)
LB compute : 281.14 us (92.7%)
LB move op cnt : 0
LB apply : 4.16 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.43 us (64.1%)
Info: cfl dt = 0.00154770648825969 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.1797e+05 | 262144 | 1 | 3.205e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.38680441979267 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.3465719526332958, dt = 0.00154770648825969
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.96 us (2.3%)
patch tree reduce : 1.76 us (0.6%)
gen split merge : 966.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.35 us (0.4%)
LB compute : 284.56 us (93.0%)
LB move op cnt : 0
LB apply : 3.87 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.52 us (64.2%)
Info: cfl dt = 0.0015475013523674923 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.1792e+05 | 262144 | 1 | 3.205e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.384423299575197 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.3481196591215556, dt = 0.0015475013523674923
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.11 us (2.7%)
patch tree reduce : 1.80 us (0.7%)
gen split merge : 974.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.73 us (0.7%)
LB compute : 237.32 us (91.3%)
LB move op cnt : 0
LB apply : 4.23 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.83 us (64.2%)
Info: cfl dt = 0.0015472975696186064 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2407e+05 | 262144 | 1 | 3.181e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.512878905265936 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.349667160473923, dt = 0.0015472975696186064
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.48 us (2.8%)
patch tree reduce : 1.82 us (0.7%)
gen split merge : 950.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.26 us (0.5%)
LB compute : 240.69 us (91.4%)
LB move op cnt : 0
LB apply : 4.40 us (1.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.44 us (66.1%)
Info: cfl dt = 0.001547095208078144 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.1971e+05 | 262144 | 1 | 3.198e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.41801728540206 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.351214458043542, dt = 0.001547095208078144
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.97 us (2.3%)
patch tree reduce : 1.83 us (0.6%)
gen split merge : 1.06 us (0.4%)
split / merge op : 0/0
apply split merge : 1.54 us (0.5%)
LB compute : 279.20 us (92.5%)
LB move op cnt : 0
LB apply : 4.28 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.46 us (67.2%)
Info: cfl dt = 0.0015468943056792795 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 5.5883e+05 | 262144 | 1 | 4.691e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11.872998769842097 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.35276155325162, dt = 0.0015468943056792795
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.54 us (2.6%)
patch tree reduce : 1.93 us (0.8%)
gen split merge : 916.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.47 us (0.6%)
LB compute : 227.42 us (91.0%)
LB move op cnt : 0
LB apply : 3.95 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.40 us (64.7%)
Info: cfl dt = 0.0015466948339946595 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.8371e+05 | 262144 | 1 | 3.345e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.64871717071399 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.3543084475572993, dt = 0.0015466948339946595
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.07 us (2.6%)
patch tree reduce : 1.87 us (0.7%)
gen split merge : 1.01 us (0.4%)
split / merge op : 0/0
apply split merge : 1.58 us (0.6%)
LB compute : 252.76 us (91.7%)
LB move op cnt : 0
LB apply : 4.37 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.53 us (67.0%)
Info: cfl dt = 0.0015464966854817593 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.9356e+05 | 262144 | 1 | 3.303e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.85560483571707 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.355855142391294, dt = 0.0015464966854817593
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.38 us (1.1%)
patch tree reduce : 1.82 us (0.3%)
gen split merge : 901.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.51 us (0.3%)
LB compute : 547.83 us (96.1%)
LB move op cnt : 0
LB apply : 4.22 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.82 us (73.6%)
Info: cfl dt = 0.0015462996815054295 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.1995e+05 | 262144 | 1 | 3.197e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.413973826968117 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.357401639076776, dt = 0.0015462996815054295
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.51 us (2.3%)
patch tree reduce : 1.68 us (0.6%)
gen split merge : 944.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.38 us (0.5%)
LB compute : 263.02 us (92.4%)
LB move op cnt : 0
LB apply : 3.93 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.59 us (67.4%)
Info: cfl dt = 0.0015461035868972303 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2446e+05 | 262144 | 1 | 3.180e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.507526597901546 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.358947938758281, dt = 0.0015461035868972303
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.05 us (2.3%)
patch tree reduce : 1.94 us (0.6%)
gen split merge : 1.00 us (0.3%)
split / merge op : 0/0
apply split merge : 1.85 us (0.6%)
LB compute : 279.88 us (92.5%)
LB move op cnt : 0
LB apply : 3.92 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.48 us (66.9%)
Info: cfl dt = 0.0015459081272173488 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.1683e+05 | 262144 | 1 | 3.209e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.343424919287646 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.360494042345178, dt = 0.0015459081272173488
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.60 us (2.2%)
patch tree reduce : 1.81 us (0.6%)
gen split merge : 1.01 us (0.3%)
split / merge op : 0/0
apply split merge : 1.49 us (0.5%)
LB compute : 278.66 us (92.9%)
LB move op cnt : 0
LB apply : 3.83 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.48 us (65.1%)
Info: cfl dt = 0.0015457130271847568 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.3483e+05 | 262144 | 1 | 3.140e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.723258062245506 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.3620399504723957, dt = 0.0015457130271847568
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.77 us (2.6%)
patch tree reduce : 1.75 us (0.7%)
gen split merge : 1.09 us (0.4%)
split / merge op : 0/0
apply split merge : 1.27 us (0.5%)
LB compute : 242.37 us (91.7%)
LB move op cnt : 0
LB apply : 4.28 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.77 us (64.7%)
Info: cfl dt = 0.0015455180565629946 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.1382e+05 | 262144 | 1 | 3.221e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.275045875382933 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.36358566349958, dt = 0.0015455180565629946
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.14 us (2.3%)
patch tree reduce : 11.04 us (4.1%)
gen split merge : 947.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.68 us (0.6%)
LB compute : 239.06 us (88.5%)
LB move op cnt : 0
LB apply : 4.48 us (1.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.43 us (65.9%)
Info: cfl dt = 0.0015453230562019308 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2226e+05 | 262144 | 1 | 3.188e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.452053330712598 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.3651311815561433, dt = 0.0015453230562019308
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.98 us (2.7%)
patch tree reduce : 1.81 us (0.7%)
gen split merge : 970.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.53 us (0.6%)
LB compute : 238.18 us (91.4%)
LB move op cnt : 0
LB apply : 4.14 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.46 us (66.1%)
Info: cfl dt = 0.0015451279349780855 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.3932e+05 | 262144 | 1 | 3.123e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.811880123837415 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.3666765046123452, dt = 0.0015451279349780855
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.83 us (2.6%)
patch tree reduce : 2.17 us (0.8%)
gen split merge : 1.29 us (0.5%)
split / merge op : 0/0
apply split merge : 1.32 us (0.5%)
LB compute : 242.19 us (91.4%)
LB move op cnt : 0
LB apply : 4.67 us (1.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.92 us (67.1%)
Info: cfl dt = 0.001544932661027083 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.1248e+05 | 262144 | 1 | 3.226e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.24001649499623 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.3682216325473235, dt = 0.001544932661027083
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.20 us (2.6%)
patch tree reduce : 1.72 us (0.6%)
gen split merge : 896.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.33 us (0.5%)
LB compute : 254.53 us (91.8%)
LB move op cnt : 0
LB apply : 4.39 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.27 us (68.8%)
Info: cfl dt = 0.0015447372567894196 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.1959e+05 | 262144 | 1 | 3.198e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.38874671159918 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.3697665652083506, dt = 0.0015447372567894196
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.65 us (2.3%)
patch tree reduce : 1.73 us (0.6%)
gen split merge : 1.06 us (0.4%)
split / merge op : 0/0
apply split merge : 1.74 us (0.6%)
LB compute : 264.56 us (92.3%)
LB move op cnt : 0
LB apply : 4.08 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.61 us (67.2%)
Info: cfl dt = 0.0015445416715574804 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.1373e+05 | 262144 | 1 | 3.221e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.262353162212577 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.37131130246514, dt = 0.0015445416715574804
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.86 us (2.2%)
patch tree reduce : 1.83 us (0.6%)
gen split merge : 1.03 us (0.3%)
split / merge op : 0/0
apply split merge : 1.41 us (0.5%)
LB compute : 282.98 us (92.7%)
LB move op cnt : 0
LB apply : 4.52 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.49 us (66.3%)
Info: cfl dt = 0.0015443459287062967 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.1162e+05 | 262144 | 1 | 3.230e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.215331711506362 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.3728558441366974, dt = 0.0015443459287062967
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.96 us (2.7%)
patch tree reduce : 1.85 us (0.7%)
gen split merge : 1.09 us (0.4%)
split / merge op : 0/0
apply split merge : 1.37 us (0.5%)
LB compute : 236.10 us (91.2%)
LB move op cnt : 0
LB apply : 4.28 us (1.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.49 us (66.5%)
Info: cfl dt = 0.001544150392494705 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2236e+05 | 262144 | 1 | 3.188e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.441004957538148 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.3744001900654035, dt = 0.001544150392494705
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.14 us (2.7%)
patch tree reduce : 1.72 us (0.7%)
gen split merge : 1.13 us (0.4%)
split / merge op : 0/0
apply split merge : 1.47 us (0.6%)
LB compute : 240.58 us (91.4%)
LB move op cnt : 0
LB apply : 4.08 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.48 us (66.6%)
Info: cfl dt = 0.0015439553368333167 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2207e+05 | 262144 | 1 | 3.189e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.432551349301654 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.3759443404578984, dt = 0.0015439553368333167
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.52 us (2.5%)
patch tree reduce : 1.63 us (0.6%)
gen split merge : 1.02 us (0.4%)
split / merge op : 0/0
apply split merge : 1.57 us (0.6%)
LB compute : 243.57 us (91.8%)
LB move op cnt : 0
LB apply : 4.09 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.81 us (65.1%)
Info: cfl dt = 0.001543760980547729 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.1790e+05 | 262144 | 1 | 3.205e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.34184309831179 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.377488295794732, dt = 0.001543760980547729
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.04 us (2.6%)
patch tree reduce : 1.86 us (0.7%)
gen split merge : 801.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.38 us (0.5%)
LB compute : 244.20 us (91.8%)
LB move op cnt : 0
LB apply : 4.04 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.57 us (67.2%)
Info: cfl dt = 0.0015435675061446208 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.5584e+05 | 262144 | 1 | 3.063e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.144061952145698 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.3790320567752796, dt = 0.0015435675061446208
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.22 us (2.7%)
patch tree reduce : 1.78 us (0.7%)
gen split merge : 916.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.64 us (0.6%)
LB compute : 243.49 us (91.6%)
LB move op cnt : 0
LB apply : 4.01 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.47 us (65.4%)
Info: cfl dt = 0.00154337505637506 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2169e+05 | 262144 | 1 | 3.190e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.41796399983669 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.380575624281424, dt = 0.0006743757185758703
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.38 us (2.4%)
patch tree reduce : 1.81 us (0.7%)
gen split merge : 1.01 us (0.4%)
split / merge op : 0/0
apply split merge : 1.59 us (0.6%)
LB compute : 243.23 us (91.9%)
LB move op cnt : 0
LB apply : 4.13 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.30 us (64.1%)
Info: cfl dt = 0.0015433196899775087 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.3023e+05 | 262144 | 1 | 3.157e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7.688860709945374 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 514.067643116 (s) [Godunov][rank=0]
Info: dump to _to_trash/ramses_kh/periodic_0019.vtk [VTK Dump][rank=0]
- took 34.78 ms, bandwidth = 1.18 GB/s
amr::Godunov: t = 2.38125, dt = 0.0015433196899775087
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.83 us (2.8%)
patch tree reduce : 1.75 us (0.6%)
gen split merge : 1.03 us (0.4%)
split / merge op : 0/0
apply split merge : 1.35 us (0.5%)
LB compute : 260.05 us (91.9%)
LB move op cnt : 0
LB apply : 4.50 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.49 us (68.3%)
Info: cfl dt = 0.0015431178413618145 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 6.8140e+05 | 262144 | 1 | 3.847e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.44180516570114 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.3827933196899775, dt = 0.0015431178413618145
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.06 us (2.1%)
patch tree reduce : 1.77 us (0.5%)
gen split merge : 902.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.46 us (0.4%)
LB compute : 313.58 us (93.2%)
LB move op cnt : 0
LB apply : 4.35 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.44 us (63.6%)
Info: cfl dt = 0.0015428823614649888 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.1867e+05 | 262144 | 1 | 3.202e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.348812378389013 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.3843364375313394, dt = 0.0015428823614649888
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.79 us (2.4%)
patch tree reduce : 1.74 us (0.6%)
gen split merge : 1.05 us (0.4%)
split / merge op : 0/0
apply split merge : 1.48 us (0.5%)
LB compute : 265.04 us (92.3%)
LB move op cnt : 0
LB apply : 4.02 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.55 us (68.3%)
Info: cfl dt = 0.0015426488912321445 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.5207e+05 | 262144 | 1 | 3.077e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.053983730634176 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.3858793198928043, dt = 0.0015426488912321445
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.10 us (2.2%)
patch tree reduce : 1.88 us (0.6%)
gen split merge : 970.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.53 us (0.5%)
LB compute : 296.09 us (92.9%)
LB move op cnt : 0
LB apply : 4.46 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.65 us (67.4%)
Info: cfl dt = 0.001542417252791636 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.1802e+05 | 262144 | 1 | 3.205e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.329903940516626 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.3874219687840363, dt = 0.001542417252791636
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.83 us (2.5%)
patch tree reduce : 1.74 us (0.6%)
gen split merge : 847.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.47 us (0.5%)
LB compute : 250.45 us (92.0%)
LB move op cnt : 0
LB apply : 4.16 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.88 us (64.7%)
Info: cfl dt = 0.0015421872145210966 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.1692e+05 | 262144 | 1 | 3.209e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.30385269914209 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.388964386036828, dt = 0.0015421872145210966
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.50 us (2.3%)
patch tree reduce : 1.84 us (0.6%)
gen split merge : 1.01 us (0.4%)
split / merge op : 0/0
apply split merge : 1.59 us (0.6%)
LB compute : 264.74 us (92.4%)
LB move op cnt : 0
LB apply : 4.06 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.49 us (67.7%)
Info: cfl dt = 0.0015419585672339082 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.3406e+05 | 262144 | 1 | 3.143e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.664416930593845 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.390506573251349, dt = 0.0015419585672339082
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.27 us (2.4%)
patch tree reduce : 1.64 us (0.5%)
gen split merge : 1.02 us (0.3%)
split / merge op : 0/0
apply split merge : 1.55 us (0.5%)
LB compute : 283.52 us (92.9%)
LB move op cnt : 0
LB apply : 3.74 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.50 us (68.3%)
Info: cfl dt = 0.0015417311823756584 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.1609e+05 | 262144 | 1 | 3.212e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.28116499289455 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.392048531818583, dt = 0.0015417311823756584
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.80 us (2.1%)
patch tree reduce : 1.93 us (0.6%)
gen split merge : 1.05 us (0.3%)
split / merge op : 0/0
apply split merge : 1.51 us (0.5%)
LB compute : 294.27 us (92.9%)
LB move op cnt : 0
LB apply : 4.20 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.48 us (66.1%)
Info: cfl dt = 0.0015415049796988654 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2413e+05 | 262144 | 1 | 3.181e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.44887481898845 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.3935902630009585, dt = 0.0015415049796988654
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.71 us (1.9%)
patch tree reduce : 1.67 us (0.5%)
gen split merge : 874.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.72 us (0.5%)
LB compute : 323.38 us (93.5%)
LB move op cnt : 0
LB apply : 4.53 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.89 us (70.1%)
Info: cfl dt = 0.0015412799033136374 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.6893e+05 | 262144 | 1 | 3.409e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.27780998979094 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.3951317679806574, dt = 0.0015412799033136374
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.06 us (2.7%)
patch tree reduce : 1.84 us (0.7%)
gen split merge : 1.03 us (0.4%)
split / merge op : 0/0
apply split merge : 1.77 us (0.7%)
LB compute : 243.15 us (91.6%)
LB move op cnt : 0
LB apply : 4.12 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.49 us (64.8%)
Info: cfl dt = 0.0015410559119217366 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.7354e+05 | 262144 | 1 | 3.389e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.37297288042683 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.396673047883971, dt = 0.0015410559119217366
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.77 us (2.3%)
patch tree reduce : 1.90 us (0.7%)
gen split merge : 934.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.49 us (0.5%)
LB compute : 266.20 us (92.3%)
LB move op cnt : 0
LB apply : 4.45 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.83 us (64.8%)
Info: cfl dt = 0.001540832989039267 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.8544e+05 | 262144 | 1 | 3.338e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.62230940673599 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.3982141037958926, dt = 0.001540832989039267
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.74 us (2.3%)
patch tree reduce : 1.73 us (0.6%)
gen split merge : 868.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.72 us (0.6%)
LB compute : 272.09 us (92.5%)
LB move op cnt : 0
LB apply : 4.03 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.85 us (63.6%)
Info: cfl dt = 0.0015406116567339553 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.6531e+05 | 262144 | 1 | 3.425e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.1940418125972 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.399754936784932, dt = 0.0015406116567339553
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.12 us (2.8%)
patch tree reduce : 1.77 us (0.7%)
gen split merge : 974.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.49 us (0.6%)
LB compute : 236.70 us (91.5%)
LB move op cnt : 0
LB apply : 4.11 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.41 us (65.7%)
Info: cfl dt = 0.0015403919396052546 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.8931e+05 | 262144 | 1 | 3.321e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.699506923738735 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.401295548441666, dt = 0.0015403919396052546
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.36 us (2.3%)
patch tree reduce : 1.83 us (0.7%)
gen split merge : 963.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.85 us (0.7%)
LB compute : 254.98 us (92.1%)
LB move op cnt : 0
LB apply : 4.43 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.47 us (66.0%)
Info: cfl dt = 0.0015401739535564503 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.4822e+05 | 262144 | 1 | 3.091e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.94332963406373 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.402835940381271, dt = 0.0015401739535564503
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.89 us (2.4%)
patch tree reduce : 1.71 us (0.6%)
gen split merge : 1.15 us (0.4%)
split / merge op : 0/0
apply split merge : 1.40 us (0.5%)
LB compute : 264.56 us (92.5%)
LB move op cnt : 0
LB apply : 4.05 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.49 us (66.0%)
Info: cfl dt = 0.0015399578472977732 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2915e+05 | 262144 | 1 | 3.162e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.537417662807385 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.4043761143348275, dt = 0.0015399578472977732
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.08 us (2.5%)
patch tree reduce : 1.74 us (0.6%)
gen split merge : 971.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.40 us (0.5%)
LB compute : 257.74 us (92.2%)
LB move op cnt : 0
LB apply : 4.19 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.84 us (66.1%)
Info: cfl dt = 0.001539743663133891 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.1971e+05 | 262144 | 1 | 3.642e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.220462589457794 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.405916072182125, dt = 0.001539743663133891
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.30 us (2.7%)
patch tree reduce : 1.92 us (0.7%)
gen split merge : 878.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.24 us (0.5%)
LB compute : 248.21 us (91.7%)
LB move op cnt : 0
LB apply : 4.10 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.44 us (63.8%)
Info: cfl dt = 0.001539531637344346 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.6665e+05 | 262144 | 1 | 3.419e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.210952338548243 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.407455815845259, dt = 0.001539531637344346
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.91 us (2.3%)
patch tree reduce : 1.89 us (0.6%)
gen split merge : 1.01 us (0.3%)
split / merge op : 0/0
apply split merge : 1.36 us (0.5%)
LB compute : 276.16 us (92.5%)
LB move op cnt : 0
LB apply : 4.58 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.60 us (66.9%)
Info: cfl dt = 0.001539321880955655 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.6419e+05 | 262144 | 1 | 3.430e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.156672408508864 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.4089953474826036, dt = 0.001539321880955655
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.86 us (2.1%)
patch tree reduce : 1.91 us (0.6%)
gen split merge : 980.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.52 us (0.5%)
LB compute : 300.06 us (93.1%)
LB move op cnt : 0
LB apply : 4.04 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.49 us (66.8%)
Info: cfl dt = 0.0015391148274851332 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.0377e+05 | 262144 | 1 | 3.261e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.991139373280944 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.4105346693635594, dt = 0.0015391148274851332
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.83 us (2.3%)
patch tree reduce : 1.94 us (0.6%)
gen split merge : 962.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.34 us (0.4%)
LB compute : 278.57 us (92.6%)
LB move op cnt : 0
LB apply : 4.21 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.46 us (64.6%)
Info: cfl dt = 0.001538910574996254 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.0446e+05 | 262144 | 1 | 3.259e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.00347705642425 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.4120737841910445, dt = 0.001538910574996254
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.57 us (2.4%)
patch tree reduce : 1.98 us (0.6%)
gen split merge : 927.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.45 us (0.5%)
LB compute : 292.87 us (92.8%)
LB move op cnt : 0
LB apply : 4.08 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.45 us (66.3%)
Info: cfl dt = 0.0015387086948866755 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.4766e+05 | 262144 | 1 | 3.093e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.914172044186095 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.413612694766041, dt = 0.0015387086948866755
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.93 us (2.4%)
patch tree reduce : 1.68 us (0.6%)
gen split merge : 998.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.55 us (0.5%)
LB compute : 261.92 us (92.2%)
LB move op cnt : 0
LB apply : 4.23 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.61 us (68.4%)
Info: cfl dt = 0.001538508832154608 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.1749e+05 | 262144 | 1 | 3.207e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.274418514871783 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.4151514034609276, dt = 0.001538508832154608
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.40 us (2.1%)
patch tree reduce : 1.92 us (0.6%)
gen split merge : 1.10 us (0.4%)
split / merge op : 0/0
apply split merge : 1.70 us (0.5%)
LB compute : 287.38 us (93.0%)
LB move op cnt : 0
LB apply : 3.79 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.42 us (66.9%)
Info: cfl dt = 0.0015383106920138182 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2837e+05 | 262144 | 1 | 3.165e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.501920412066735 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.4166899122930823, dt = 0.0015383106920138182
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.78 us (2.5%)
patch tree reduce : 1.68 us (0.6%)
gen split merge : 1.13 us (0.4%)
split / merge op : 0/0
apply split merge : 1.44 us (0.5%)
LB compute : 249.48 us (91.9%)
LB move op cnt : 0
LB apply : 4.30 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.35 us (65.6%)
Info: cfl dt = 0.0015381141456191393 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.1441e+05 | 262144 | 1 | 3.219e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.204750115795125 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.418228222985096, dt = 0.0015381141456191393
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.60 us (2.2%)
patch tree reduce : 1.89 us (0.6%)
gen split merge : 893.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.34 us (0.4%)
LB compute : 277.32 us (92.8%)
LB move op cnt : 0
LB apply : 4.41 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.89 us (64.8%)
Info: cfl dt = 0.0015379192413236976 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.7913e+05 | 262144 | 1 | 3.365e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.457377901277056 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.4197663371307154, dt = 0.0015379192413236976
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.43 us (2.3%)
patch tree reduce : 2.00 us (0.7%)
gen split merge : 988.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.37 us (0.5%)
LB compute : 260.78 us (92.4%)
LB move op cnt : 0
LB apply : 4.08 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.33 us (62.8%)
Info: cfl dt = 0.0015377261751939077 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.3162e+05 | 262144 | 1 | 3.152e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.563874392927296 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.4213042563720393, dt = 0.0015377261751939077
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.72 us (2.2%)
patch tree reduce : 1.98 us (0.6%)
gen split merge : 1.26 us (0.4%)
split / merge op : 0/0
apply split merge : 1.36 us (0.4%)
LB compute : 285.20 us (92.7%)
LB move op cnt : 0
LB apply : 4.23 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.44 us (64.2%)
Info: cfl dt = 0.0015375352626941059 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2939e+05 | 262144 | 1 | 3.161e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.51452753428347 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.4228419825472334, dt = 0.0015375352626941059
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.20 us (2.3%)
patch tree reduce : 1.75 us (0.6%)
gen split merge : 984.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.52 us (0.5%)
LB compute : 291.65 us (92.9%)
LB move op cnt : 0
LB apply : 4.34 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.41 us (64.4%)
Info: cfl dt = 0.0015373468797657834 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2386e+05 | 262144 | 1 | 3.182e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.395565565983855 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.4243795178099274, dt = 0.0015373468797657834
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.84 us (2.7%)
patch tree reduce : 1.98 us (0.8%)
gen split merge : 870.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.44 us (0.6%)
LB compute : 234.66 us (91.4%)
LB move op cnt : 0
LB apply : 4.35 us (1.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.82 us (64.8%)
Info: cfl dt = 0.0015371614658333374 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.0434e+05 | 262144 | 1 | 3.722e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.870212199494283 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.425916864689693, dt = 0.0015371614658333374
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.40 us (2.9%)
patch tree reduce : 1.75 us (0.7%)
gen split merge : 983.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.62 us (0.6%)
LB compute : 233.83 us (91.3%)
LB move op cnt : 0
LB apply : 4.17 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.34 us (62.4%)
Info: cfl dt = 0.0015369792580788783 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.6558e+05 | 262144 | 1 | 3.424e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.16125591168979 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.4274540261555266, dt = 0.0015369792580788783
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.17 us (2.3%)
patch tree reduce : 1.70 us (0.5%)
gen split merge : 953.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.47 us (0.5%)
LB compute : 291.86 us (92.8%)
LB move op cnt : 0
LB apply : 4.33 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.55 us (68.1%)
Info: cfl dt = 0.0015368004425451811 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.1539e+05 | 262144 | 1 | 3.215e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.210651409066173 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.4289910054136055, dt = 0.0015368004425451811
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.93 us (2.4%)
patch tree reduce : 1.83 us (0.6%)
gen split merge : 1.02 us (0.3%)
split / merge op : 0/0
apply split merge : 1.52 us (0.5%)
LB compute : 268.80 us (92.3%)
LB move op cnt : 0
LB apply : 4.14 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.71 us (62.5%)
Info: cfl dt = 0.0015366251151530403 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.5117e+05 | 262144 | 1 | 3.490e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.853321314138462 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.430527805856151, dt = 0.0015366251151530403
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.82 us (2.3%)
patch tree reduce : 1.79 us (0.6%)
gen split merge : 1.06 us (0.4%)
split / merge op : 0/0
apply split merge : 1.43 us (0.5%)
LB compute : 280.26 us (92.8%)
LB move op cnt : 0
LB apply : 4.17 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.41 us (62.2%)
Info: cfl dt = 0.0015364534402596088 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.7604e+05 | 262144 | 1 | 3.378e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.376155127942646 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.432064430971304, dt = 0.0015364534402596088
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.95 us (2.5%)
patch tree reduce : 1.70 us (0.6%)
gen split merge : 905.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.46 us (0.5%)
LB compute : 250.96 us (91.9%)
LB move op cnt : 0
LB apply : 4.15 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.52 us (67.9%)
Info: cfl dt = 0.001536285483206555 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.3140e+05 | 262144 | 1 | 3.153e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.54252854466568 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.4336008844115637, dt = 0.001536285483206555
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.07 us (2.5%)
patch tree reduce : 1.89 us (0.7%)
gen split merge : 959.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.63 us (0.6%)
LB compute : 265.22 us (92.2%)
LB move op cnt : 0
LB apply : 4.14 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.34 us (62.7%)
Info: cfl dt = 0.001536121259677576 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.6925e+05 | 262144 | 1 | 3.408e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.22945926863273 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.4351371698947704, dt = 0.001536121259677576
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.61 us (2.3%)
patch tree reduce : 2.21 us (0.8%)
gen split merge : 990.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.45 us (0.5%)
LB compute : 267.63 us (92.4%)
LB move op cnt : 0
LB apply : 4.16 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.41 us (65.4%)
Info: cfl dt = 0.0015359607368198908 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.3950e+05 | 262144 | 1 | 3.123e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.709555318755584 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.436673291154448, dt = 0.0015359607368198908
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.94 us (2.7%)
patch tree reduce : 1.67 us (0.7%)
gen split merge : 961.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.58 us (0.6%)
LB compute : 232.31 us (91.3%)
LB move op cnt : 0
LB apply : 4.41 us (1.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.32 us (62.7%)
Info: cfl dt = 0.0015358037755112193 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 6.8778e+05 | 262144 | 1 | 3.811e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.507427839054166 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.438209251891268, dt = 0.0015358037755112193
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.71 us (2.6%)
patch tree reduce : 1.87 us (0.7%)
gen split merge : 935.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.43 us (0.5%)
LB compute : 237.94 us (91.5%)
LB move op cnt : 0
LB apply : 4.08 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.46 us (64.5%)
Info: cfl dt = 0.0015356504717378974 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.0445e+05 | 262144 | 1 | 3.259e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.96669945068138 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.439745055666779, dt = 0.0015356504717378974
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.81 us (2.3%)
patch tree reduce : 1.96 us (0.7%)
gen split merge : 1.03 us (0.4%)
split / merge op : 0/0
apply split merge : 1.66 us (0.6%)
LB compute : 268.40 us (92.5%)
LB move op cnt : 0
LB apply : 3.85 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.88 us (63.9%)
Info: cfl dt = 0.0015355005530195837 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2179e+05 | 262144 | 1 | 3.190e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.330694806984013 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.441280706138517, dt = 0.0015355005530195837
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.95 us (2.5%)
patch tree reduce : 1.81 us (0.7%)
gen split merge : 919.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.47 us (0.5%)
LB compute : 250.69 us (91.9%)
LB move op cnt : 0
LB apply : 4.18 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.52 us (67.0%)
Info: cfl dt = 0.0015353533042214186 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.3262e+05 | 262144 | 1 | 3.148e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.557344995084136 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.4428162066915364, dt = 0.0015353533042214186
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.58 us (2.5%)
patch tree reduce : 1.81 us (0.7%)
gen split merge : 9.66 us (3.7%)
split / merge op : 0/0
apply split merge : 1.58 us (0.6%)
LB compute : 233.77 us (88.6%)
LB move op cnt : 0
LB apply : 3.97 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.35 us (64.5%)
Info: cfl dt = 0.0015352082573317797 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 6.9459e+05 | 262144 | 1 | 3.774e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.645256308913769 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.444351559995758, dt = 0.0015352082573317797
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.81 us (2.3%)
patch tree reduce : 1.97 us (0.7%)
gen split merge : 858.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.67 us (0.6%)
LB compute : 278.84 us (92.6%)
LB move op cnt : 0
LB apply : 4.09 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.83 us (64.7%)
Info: cfl dt = 0.001535065106869614 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2578e+05 | 262144 | 1 | 3.175e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.40973378664073 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.44588676825309, dt = 0.001535065106869614
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.78 us (2.3%)
patch tree reduce : 1.99 us (0.7%)
gen split merge : 966.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.36 us (0.5%)
LB compute : 278.75 us (92.6%)
LB move op cnt : 0
LB apply : 4.33 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.67 us (68.2%)
Info: cfl dt = 0.0015349235985058997 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.9479e+05 | 262144 | 1 | 3.298e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.754979444581767 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.4474218333599596, dt = 0.0015349235985058997
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.80 us (2.6%)
patch tree reduce : 1.99 us (0.8%)
gen split merge : 1.04 us (0.4%)
split / merge op : 0/0
apply split merge : 1.44 us (0.6%)
LB compute : 239.31 us (91.5%)
LB move op cnt : 0
LB apply : 4.17 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.44 us (67.5%)
Info: cfl dt = 0.0015347861533115828 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.5466e+05 | 262144 | 1 | 3.067e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.015299958740556 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.4489567569584656, dt = 0.0015347861533115828
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.77 us (2.5%)
patch tree reduce : 1.70 us (0.6%)
gen split merge : 1.11 us (0.4%)
split / merge op : 0/0
apply split merge : 1.37 us (0.5%)
LB compute : 247.80 us (91.8%)
LB move op cnt : 0
LB apply : 4.25 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.46 us (67.4%)
Info: cfl dt = 0.0015346530749092632 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2147e+05 | 262144 | 1 | 3.191e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.314169206510414 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.4504915431117773, dt = 0.0015346530749092632
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.22 us (2.3%)
patch tree reduce : 1.82 us (0.6%)
gen split merge : 931.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.36 us (0.4%)
LB compute : 291.04 us (93.1%)
LB move op cnt : 0
LB apply : 3.95 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.45 us (66.3%)
Info: cfl dt = 0.001534524692186529 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.1708e+05 | 262144 | 1 | 3.208e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.220225398917083 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.4520261961866865, dt = 0.001534524692186529
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.86 us (2.3%)
patch tree reduce : 1.76 us (0.6%)
gen split merge : 974.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.45 us (0.5%)
LB compute : 270.45 us (89.4%)
LB move op cnt : 0
LB apply : 4.31 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.53 us (69.0%)
Info: cfl dt = 0.0015344012995661502 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2023e+05 | 262144 | 1 | 3.196e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.28516854140655 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.453560720878873, dt = 0.0015344012995661502
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.60 us (2.0%)
patch tree reduce : 1.85 us (0.6%)
gen split merge : 987.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.88 us (0.6%)
LB compute : 305.55 us (93.2%)
LB move op cnt : 0
LB apply : 4.51 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.44 us (64.5%)
Info: cfl dt = 0.0015342830036932462 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.3294e+05 | 262144 | 1 | 3.147e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.55162900422456 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.455095122178439, dt = 0.0015342830036932462
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.57 us (2.4%)
patch tree reduce : 1.75 us (0.6%)
gen split merge : 922.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.50 us (0.5%)
LB compute : 252.00 us (91.8%)
LB move op cnt : 0
LB apply : 4.38 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.48 us (65.3%)
Info: cfl dt = 0.0015341697297122684 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2265e+05 | 262144 | 1 | 3.187e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.333428398851538 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.4566294051821322, dt = 0.0015341697297122684
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.96 us (2.5%)
patch tree reduce : 2.04 us (0.7%)
gen split merge : 947.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.61 us (0.6%)
LB compute : 251.51 us (91.8%)
LB move op cnt : 0
LB apply : 4.26 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.62 us (67.9%)
Info: cfl dt = 0.0015340612687947607 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2706e+05 | 262144 | 1 | 3.170e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.425070365575372 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.4581635749118447, dt = 0.0015340612687947607
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.03 us (2.3%)
patch tree reduce : 1.72 us (0.6%)
gen split merge : 990.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.60 us (0.5%)
LB compute : 287.04 us (92.9%)
LB move op cnt : 0
LB apply : 4.24 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.50 us (65.6%)
Info: cfl dt = 0.0015339573253628721 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.5489e+05 | 262144 | 1 | 3.473e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.903398486988277 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.4596976361806395, dt = 0.0015339573253628721
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.81 us (2.6%)
patch tree reduce : 1.93 us (0.7%)
gen split merge : 1.14 us (0.4%)
split / merge op : 0/0
apply split merge : 1.43 us (0.5%)
LB compute : 243.04 us (91.5%)
LB move op cnt : 0
LB apply : 4.52 us (1.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.41 us (64.4%)
Info: cfl dt = 0.0015338576274854876 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.5107e+05 | 262144 | 1 | 3.080e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.928366764781536 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.4612315935060023, dt = 0.0015338576274854876
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.08 us (2.5%)
patch tree reduce : 1.89 us (0.7%)
gen split merge : 982.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.56 us (0.6%)
LB compute : 256.31 us (91.8%)
LB move op cnt : 0
LB apply : 4.55 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.44 us (65.2%)
Info: cfl dt = 0.0015337621210216206 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2385e+05 | 262144 | 1 | 3.182e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.35391801046228 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.462765451133488, dt = 0.0015337621210216206
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.76 us (2.6%)
patch tree reduce : 1.73 us (0.7%)
gen split merge : 923.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.67 us (0.6%)
LB compute : 242.98 us (91.8%)
LB move op cnt : 0
LB apply : 3.91 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.53 us (66.3%)
Info: cfl dt = 0.001533670463111871 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.3039e+05 | 262144 | 1 | 3.157e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.490536054474003 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.4642992132545096, dt = 0.001533670463111871
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.65 us (2.5%)
patch tree reduce : 1.78 us (0.7%)
gen split merge : 929.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.42 us (0.5%)
LB compute : 249.17 us (92.1%)
LB move op cnt : 0
LB apply : 4.20 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.58 us (67.1%)
Info: cfl dt = 0.001533582126025953 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2702e+05 | 262144 | 1 | 3.170e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.418404085874307 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.4658328837176215, dt = 0.001533582126025953
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.77 us (2.3%)
patch tree reduce : 1.69 us (0.6%)
gen split merge : 789.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.45 us (0.5%)
LB compute : 277.52 us (92.7%)
LB move op cnt : 0
LB apply : 4.68 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.63 us (66.8%)
Info: cfl dt = 0.001533496583768701 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.3424e+05 | 262144 | 1 | 3.142e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.569568128649852 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.4673664658436474, dt = 0.001533496583768701
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.16 us (2.6%)
patch tree reduce : 1.83 us (0.7%)
gen split merge : 1.04 us (0.4%)
split / merge op : 0/0
apply split merge : 1.81 us (0.7%)
LB compute : 249.24 us (91.5%)
LB move op cnt : 0
LB apply : 4.20 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.53 us (70.0%)
Info: cfl dt = 0.0015334134850591694 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.1972e+05 | 262144 | 1 | 3.198e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.26288767467545 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.468899962427416, dt = 0.0015334134850591694
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.01 us (2.7%)
patch tree reduce : 1.97 us (0.8%)
gen split merge : 978.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.33 us (0.5%)
LB compute : 238.14 us (91.3%)
LB move op cnt : 0
LB apply : 4.27 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.46 us (66.7%)
Info: cfl dt = 0.0015333326373369823 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2815e+05 | 262144 | 1 | 3.165e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.439294095705836 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.4704333759124752, dt = 0.0015333326373369823
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.57 us (2.4%)
patch tree reduce : 1.80 us (0.6%)
gen split merge : 891.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.42 us (0.5%)
LB compute : 256.34 us (92.3%)
LB move op cnt : 0
LB apply : 4.37 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.45 us (66.2%)
Info: cfl dt = 0.0015332539953926796 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2424e+05 | 262144 | 1 | 3.180e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.356088965607807 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.4719667085498123, dt = 0.0015332539953926796
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.83 us (2.3%)
patch tree reduce : 1.91 us (0.6%)
gen split merge : 832.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.41 us (0.5%)
LB compute : 272.42 us (92.7%)
LB move op cnt : 0
LB apply : 4.05 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.49 us (65.2%)
Info: cfl dt = 0.0015331776465434418 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.6290e+05 | 262144 | 1 | 3.038e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.169283665238186 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.4734999625452048, dt = 0.0015331776465434418
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.19 us (2.8%)
patch tree reduce : 1.70 us (0.7%)
gen split merge : 959.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.54 us (0.6%)
LB compute : 234.95 us (91.3%)
LB move op cnt : 0
LB apply : 4.31 us (1.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.38 us (65.9%)
Info: cfl dt = 0.0015331039520878544 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2507e+05 | 262144 | 1 | 3.177e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.371880013561608 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.4750331401917482, dt = 0.0015331039520878544
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 10.42 us (1.5%)
patch tree reduce : 2.16 us (0.3%)
gen split merge : 1.52 us (0.2%)
split / merge op : 0/0
apply split merge : 1.73 us (0.2%)
LB compute : 672.21 us (95.9%)
LB move op cnt : 0
LB apply : 4.88 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.15 us (79.1%)
Info: cfl dt = 0.00153303326818513 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2919e+05 | 262144 | 1 | 3.161e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.457770428210235 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.4765662441438363, dt = 0.00153303326818513
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.58 us (2.4%)
patch tree reduce : 1.92 us (0.7%)
gen split merge : 1.02 us (0.4%)
split / merge op : 0/0
apply split merge : 1.42 us (0.5%)
LB compute : 250.89 us (91.9%)
LB move op cnt : 0
LB apply : 4.32 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.43 us (64.3%)
Info: cfl dt = 0.0015329658608266101 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.3471e+05 | 262144 | 1 | 3.141e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.57316782826061 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.4780992774120216, dt = 0.0015329658608266101
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.97 us (2.7%)
patch tree reduce : 1.83 us (0.7%)
gen split merge : 844.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.51 us (0.6%)
LB compute : 232.40 us (91.2%)
LB move op cnt : 0
LB apply : 4.16 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.43 us (66.4%)
Info: cfl dt = 0.0015329018890725822 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3979e+05 | 262144 | 1 | 3.544e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.574033053756347 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.479632243272848, dt = 0.0015329018890725822
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.99 us (2.3%)
patch tree reduce : 1.76 us (0.6%)
gen split merge : 926.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.39 us (0.5%)
LB compute : 284.16 us (92.8%)
LB move op cnt : 0
LB apply : 4.29 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.40 us (64.1%)
Info: cfl dt = 0.0015328415256369273 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.8557e+05 | 262144 | 1 | 3.337e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.537179915950208 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.4811651451619205, dt = 0.0015328415256369273
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.92 us (2.3%)
patch tree reduce : 1.76 us (0.6%)
gen split merge : 920.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.42 us (0.5%)
LB compute : 282.20 us (92.9%)
LB move op cnt : 0
LB apply : 4.13 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.50 us (65.2%)
Info: cfl dt = 0.001532785022502376 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.7500e+05 | 262144 | 1 | 3.383e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.313944736380183 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.4826979866875574, dt = 0.001532785022502376
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.32 us (2.8%)
patch tree reduce : 1.80 us (0.7%)
gen split merge : 921.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.47 us (0.6%)
LB compute : 241.23 us (91.4%)
LB move op cnt : 0
LB apply : 3.92 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.46 us (65.2%)
Info: cfl dt = 0.0015327326953037087 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.5842e+05 | 262144 | 1 | 3.456e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.96450732712613 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.4842307717100596, dt = 0.0015327326953037087
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.28 us (2.5%)
patch tree reduce : 1.83 us (0.6%)
gen split merge : 1.03 us (0.4%)
split / merge op : 0/0
apply split merge : 1.42 us (0.5%)
LB compute : 267.92 us (92.2%)
LB move op cnt : 0
LB apply : 4.42 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.41 us (65.0%)
Info: cfl dt = 0.0015326849218365074 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2424e+05 | 262144 | 1 | 3.180e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.349340436505237 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.485763504405363, dt = 0.0015326849218365074
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.13 us (2.5%)
patch tree reduce : 1.68 us (0.6%)
gen split merge : 1.11 us (0.4%)
split / merge op : 0/0
apply split merge : 1.70 us (0.6%)
LB compute : 265.40 us (92.1%)
LB move op cnt : 0
LB apply : 4.42 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.42 us (64.3%)
Info: cfl dt = 0.001532642136982887 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.1779e+05 | 262144 | 1 | 3.206e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.213045518137637 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.4872961893272, dt = 0.001532642136982887
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.76 us (2.2%)
patch tree reduce : 1.85 us (0.6%)
gen split merge : 957.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.47 us (0.5%)
LB compute : 282.25 us (92.8%)
LB move op cnt : 0
LB apply : 3.95 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.38 us (65.0%)
Info: cfl dt = 0.0015326047975781339 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.3332e+05 | 262144 | 1 | 3.146e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.539354630358485 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.4888288314641827, dt = 0.0015326047975781339
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.17 us (2.4%)
patch tree reduce : 1.87 us (0.6%)
gen split merge : 961.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.26 us (0.4%)
LB compute : 282.09 us (92.6%)
LB move op cnt : 0
LB apply : 4.47 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.37 us (62.9%)
Info: cfl dt = 0.0015325733347290396 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2440e+05 | 262144 | 1 | 3.180e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.351310478992115 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.490361436261761, dt = 0.0015325733347290396
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.71 us (2.3%)
patch tree reduce : 1.95 us (0.7%)
gen split merge : 870.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.48 us (0.5%)
LB compute : 273.08 us (92.5%)
LB move op cnt : 0
LB apply : 4.13 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.47 us (66.8%)
Info: cfl dt = 0.0015325481365923957 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2458e+05 | 262144 | 1 | 3.179e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.35471158179671 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.49189400959649, dt = 0.0015325481365923957
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.08 us (2.6%)
patch tree reduce : 1.95 us (0.7%)
gen split merge : 895.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.57 us (0.6%)
LB compute : 246.13 us (91.5%)
LB move op cnt : 0
LB apply : 4.49 us (1.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.81 us (64.8%)
Info: cfl dt = 0.001532529565498667 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.3120e+05 | 262144 | 1 | 3.154e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.493626962188543 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.4934265577330823, dt = 0.001532529565498667
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.91 us (2.6%)
patch tree reduce : 1.79 us (0.7%)
gen split merge : 912.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.60 us (0.6%)
LB compute : 245.28 us (91.6%)
LB move op cnt : 0
LB apply : 4.12 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.43 us (66.2%)
Info: cfl dt = 0.0015325178824759872 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.3623e+05 | 262144 | 1 | 3.135e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.599392897399753 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.494959087298581, dt = 0.0015325178824759872
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.94 us (2.6%)
patch tree reduce : 1.85 us (0.7%)
gen split merge : 1.01 us (0.4%)
split / merge op : 0/0
apply split merge : 1.49 us (0.6%)
LB compute : 242.04 us (91.5%)
LB move op cnt : 0
LB apply : 4.17 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.44 us (65.8%)
Info: cfl dt = 0.001532513212852055 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2281e+05 | 262144 | 1 | 3.186e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.316855615976102 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.496491605181057, dt = 0.001532513212852055
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.82 us (2.2%)
patch tree reduce : 1.99 us (0.6%)
gen split merge : 951.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.87 us (0.6%)
LB compute : 287.84 us (92.8%)
LB move op cnt : 0
LB apply : 4.31 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.62 us (69.2%)
Info: cfl dt = 0.0015325155651717967 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2055e+05 | 262144 | 1 | 3.195e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.26911652812141 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.498024118393909, dt = 0.0015325155651717967
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.12 us (2.3%)
patch tree reduce : 1.69 us (0.5%)
gen split merge : 930.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.61 us (0.5%)
LB compute : 292.59 us (93.0%)
LB move op cnt : 0
LB apply : 4.20 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.50 us (68.2%)
Info: cfl dt = 0.001532524869662734 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.5855e+05 | 262144 | 1 | 3.456e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.964357344751681 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.499556633959081, dt = 0.001532524869662734
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.65 us (2.3%)
patch tree reduce : 1.86 us (0.6%)
gen split merge : 972.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.37 us (0.5%)
LB compute : 271.64 us (92.6%)
LB move op cnt : 0
LB apply : 4.32 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.60 us (67.0%)
Info: cfl dt = 0.001532541033168537 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.3334e+05 | 262144 | 1 | 3.146e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.538538272439485 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.501089158828744, dt = 0.001532541033168537
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.64 us (2.3%)
patch tree reduce : 1.74 us (0.6%)
gen split merge : 836.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.45 us (0.5%)
LB compute : 270.32 us (92.6%)
LB move op cnt : 0
LB apply : 4.15 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.46 us (65.0%)
Info: cfl dt = 0.0015325637530323058 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2242e+05 | 262144 | 1 | 3.187e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.308878522677713 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.5026216998619124, dt = 0.0015325637530323058
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.01 us (2.3%)
patch tree reduce : 1.94 us (0.6%)
gen split merge : 959.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.73 us (0.6%)
LB compute : 283.14 us (92.6%)
LB move op cnt : 0
LB apply : 4.31 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.42 us (65.4%)
Info: cfl dt = 0.00153259278565155 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2314e+05 | 262144 | 1 | 3.185e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.324359469418425 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.5041542636149448, dt = 0.00153259278565155
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.19 us (2.4%)
patch tree reduce : 1.68 us (0.6%)
gen split merge : 921.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.45 us (0.5%)
LB compute : 276.83 us (92.5%)
LB move op cnt : 0
LB apply : 4.51 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.48 us (64.3%)
Info: cfl dt = 0.0015326280397987293 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.4114e+05 | 262144 | 1 | 3.117e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.703533161796194 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.5056868564005965, dt = 0.0015326280397987293
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.43 us (2.4%)
patch tree reduce : 1.77 us (0.6%)
gen split merge : 896.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.41 us (0.5%)
LB compute : 284.31 us (92.6%)
LB move op cnt : 0
LB apply : 4.43 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.41 us (65.2%)
Info: cfl dt = 0.0015326695254708074 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.3587e+05 | 262144 | 1 | 3.136e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.59298564012698 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.5072194844403954, dt = 0.0015326695254708074
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.35 us (2.7%)
patch tree reduce : 1.88 us (0.7%)
gen split merge : 953.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.40 us (0.5%)
LB compute : 254.58 us (91.9%)
LB move op cnt : 0
LB apply : 4.21 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.51 us (67.3%)
Info: cfl dt = 0.0015327173404116573 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2996e+05 | 262144 | 1 | 3.159e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.469082524030974 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.508752153965866, dt = 0.0015327173404116573
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.05 us (1.2%)
patch tree reduce : 1.89 us (0.3%)
gen split merge : 977.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.54 us (0.3%)
LB compute : 542.69 us (96.0%)
LB move op cnt : 0
LB apply : 4.23 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.29 us (74.3%)
Info: cfl dt = 0.0015327475333932884 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.1149e+05 | 262144 | 1 | 3.230e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.08073784305449 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.5102848713062778, dt = 0.0015327475333932884
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.57 us (2.2%)
patch tree reduce : 1.92 us (0.7%)
gen split merge : 942.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.33 us (0.5%)
LB compute : 271.78 us (92.6%)
LB move op cnt : 0
LB apply : 4.47 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.43 us (65.6%)
Info: cfl dt = 0.0015327449709586014 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2263e+05 | 262144 | 1 | 3.187e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.315681672280732 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.5118176188396713, dt = 0.0015327449709586014
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.99 us (2.4%)
patch tree reduce : 2.00 us (0.7%)
gen split merge : 941.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.81 us (0.6%)
LB compute : 268.57 us (92.2%)
LB move op cnt : 0
LB apply : 4.10 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.49 us (65.4%)
Info: cfl dt = 0.0015327482518150855 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.1990e+05 | 262144 | 1 | 3.197e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.258177815284064 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.51335036381063, dt = 0.0001913028560367458
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.72 us (2.6%)
patch tree reduce : 1.87 us (0.6%)
gen split merge : 1.06 us (0.3%)
split / merge op : 0/0
apply split merge : 1.51 us (0.5%)
LB compute : 279.37 us (92.6%)
LB move op cnt : 0
LB apply : 3.77 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.41 us (65.6%)
Info: cfl dt = 0.0015327616877064353 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2148e+05 | 262144 | 1 | 3.191e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.1581385868556207 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 542.924032421 (s) [Godunov][rank=0]
Info: dump to _to_trash/ramses_kh/periodic_0020.vtk [VTK Dump][rank=0]
- took 34.23 ms, bandwidth = 1.19 GB/s
amr::Godunov: t = 2.513541666666667, dt = 0.0015327616877064353
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 8.33 us (2.6%)
patch tree reduce : 2.02 us (0.6%)
gen split merge : 960.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.40 us (0.4%)
LB compute : 291.06 us (92.4%)
LB move op cnt : 0
LB apply : 4.61 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.76 us (67.1%)
Info: cfl dt = 0.0015327681115312724 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.0910e+05 | 262144 | 1 | 3.697e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.926069454481674 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.515074428354373, dt = 0.0015327681115312724
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.16 us (2.3%)
patch tree reduce : 1.66 us (0.5%)
gen split merge : 982.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.49 us (0.5%)
LB compute : 282.59 us (92.7%)
LB move op cnt : 0
LB apply : 4.54 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.44 us (65.7%)
Info: cfl dt = 0.0015327809378905856 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.1582e+05 | 262144 | 1 | 3.213e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.17258635150884 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.5166071964659045, dt = 0.0015327809378905856
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.07 us (2.6%)
patch tree reduce : 1.88 us (0.7%)
gen split merge : 921.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.61 us (0.6%)
LB compute : 246.31 us (91.5%)
LB move op cnt : 0
LB apply : 4.24 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.88 us (65.8%)
Info: cfl dt = 0.0015328004064925353 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.5437e+05 | 262144 | 1 | 3.068e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.984142980375722 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.518139977403795, dt = 0.0015328004064925353
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.72 us (2.4%)
patch tree reduce : 2.05 us (0.7%)
gen split merge : 1.05 us (0.4%)
split / merge op : 0/0
apply split merge : 1.52 us (0.5%)
LB compute : 260.83 us (92.1%)
LB move op cnt : 0
LB apply : 4.19 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.43 us (65.0%)
Info: cfl dt = 0.0015326075254425548 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2153e+05 | 262144 | 1 | 3.191e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.293136264605543 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.5196727778102876, dt = 0.0015326075254425548
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.85 us (2.5%)
patch tree reduce : 1.95 us (0.7%)
gen split merge : 976.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.32 us (0.5%)
LB compute : 254.50 us (91.8%)
LB move op cnt : 0
LB apply : 4.23 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.37 us (64.8%)
Info: cfl dt = 0.0015323731348162698 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.1082e+05 | 262144 | 1 | 3.233e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.06547149275724 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.52120538533573, dt = 0.0015323731348162698
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.96 us (2.2%)
patch tree reduce : 2.24 us (0.7%)
gen split merge : 860.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.41 us (0.5%)
LB compute : 289.87 us (92.9%)
LB move op cnt : 0
LB apply : 4.07 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.52 us (67.5%)
Info: cfl dt = 0.001532140402906045 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.1910e+05 | 262144 | 1 | 3.200e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.237079491211183 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.5227377584705466, dt = 0.001532140402906045
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.25 us (2.5%)
patch tree reduce : 1.97 us (0.7%)
gen split merge : 1.02 us (0.4%)
split / merge op : 0/0
apply split merge : 1.52 us (0.5%)
LB compute : 268.69 us (92.1%)
LB move op cnt : 0
LB apply : 4.57 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.35 us (64.3%)
Info: cfl dt = 0.0015319093161106911 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.4364e+05 | 262144 | 1 | 3.107e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.750789163712003 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.5242698988734524, dt = 0.0015319093161106911
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.84 us (2.6%)
patch tree reduce : 2.01 us (0.8%)
gen split merge : 988.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.42 us (0.5%)
LB compute : 242.13 us (91.6%)
LB move op cnt : 0
LB apply : 4.21 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.51 us (64.4%)
Info: cfl dt = 0.0015316798472978206 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.1798e+05 | 262144 | 1 | 3.205e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.208361127497355 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.5258018081895632, dt = 0.0015316798472978206
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.92 us (2.2%)
patch tree reduce : 1.91 us (0.6%)
gen split merge : 971.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.34 us (0.4%)
LB compute : 297.26 us (93.1%)
LB move op cnt : 0
LB apply : 4.51 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.54 us (66.5%)
Info: cfl dt = 0.0015314519437618712 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.1329e+05 | 262144 | 1 | 3.223e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.107167422237545 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.527333488036861, dt = 0.0015314519437618712
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.92 us (2.2%)
patch tree reduce : 1.92 us (0.6%)
gen split merge : 1.05 us (0.3%)
split / merge op : 0/0
apply split merge : 1.80 us (0.6%)
LB compute : 285.58 us (92.7%)
LB move op cnt : 0
LB apply : 4.03 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.46 us (65.3%)
Info: cfl dt = 0.0015312255592229373 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.0971e+05 | 262144 | 1 | 3.237e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.029339223831762 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.528864939980623, dt = 0.0015312255592229373
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.97 us (2.7%)
patch tree reduce : 1.81 us (0.7%)
gen split merge : 984.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.48 us (0.6%)
LB compute : 238.47 us (91.7%)
LB move op cnt : 0
LB apply : 4.04 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.49 us (65.4%)
Info: cfl dt = 0.0015310007067458828 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.1474e+05 | 262144 | 1 | 3.218e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.132508685994438 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.530396165539846, dt = 0.0015310007067458828
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.93 us (2.6%)
patch tree reduce : 2.02 us (0.8%)
gen split merge : 821.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.43 us (0.5%)
LB compute : 243.21 us (91.5%)
LB move op cnt : 0
LB apply : 4.35 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.34 us (65.0%)
Info: cfl dt = 0.0015307774465628857 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.1697e+05 | 262144 | 1 | 3.209e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.17676746812862 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.5319271662465916, dt = 0.0015307774465628857
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.19 us (2.7%)
patch tree reduce : 1.73 us (0.7%)
gen split merge : 977.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.39 us (0.5%)
LB compute : 239.62 us (91.5%)
LB move op cnt : 0
LB apply : 4.01 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.36 us (65.6%)
Info: cfl dt = 0.0015305558413498295 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2351e+05 | 262144 | 1 | 3.183e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.31188481074472 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.5334579436931546, dt = 0.0015305558413498295
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.21 us (2.8%)
patch tree reduce : 1.96 us (0.8%)
gen split merge : 1.13 us (0.4%)
split / merge op : 0/0
apply split merge : 1.44 us (0.6%)
LB compute : 235.66 us (91.2%)
LB move op cnt : 0
LB apply : 4.27 us (1.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.48 us (65.5%)
Info: cfl dt = 0.0015303359449257712 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.0971e+05 | 262144 | 1 | 3.238e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.019274447830703 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.5349884995345042, dt = 0.0015303359449257712
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.09 us (2.4%)
patch tree reduce : 1.97 us (0.7%)
gen split merge : 891.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.77 us (0.6%)
LB compute : 266.57 us (92.1%)
LB move op cnt : 0
LB apply : 4.65 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.48 us (66.4%)
Info: cfl dt = 0.0015301177976569512 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.1873e+05 | 262144 | 1 | 3.202e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.206382752984922 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.53651883547943, dt = 0.0015301177976569512
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.38 us (2.1%)
patch tree reduce : 1.86 us (0.6%)
gen split merge : 947.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.45 us (0.5%)
LB compute : 283.84 us (93.0%)
LB move op cnt : 0
LB apply : 3.82 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.77 us (63.6%)
Info: cfl dt = 0.0015299013218799022 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 6.6207e+05 | 262144 | 1 | 3.959e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.912057279554254 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.538048953277087, dt = 0.0015299013218799022
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.07 us (2.2%)
patch tree reduce : 1.94 us (0.6%)
gen split merge : 849.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.33 us (0.4%)
LB compute : 297.04 us (93.0%)
LB move op cnt : 0
LB apply : 4.65 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.45 us (65.7%)
Info: cfl dt = 0.0015296862290721232 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 6.7617e+05 | 262144 | 1 | 3.877e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.206225266532147 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.539578854598967, dt = 0.0015296862290721232
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.81 us (2.1%)
patch tree reduce : 1.68 us (0.5%)
gen split merge : 989.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.87 us (0.6%)
LB compute : 304.37 us (93.2%)
LB move op cnt : 0
LB apply : 4.38 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.42 us (64.7%)
Info: cfl dt = 0.0015294725530553537 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2273e+05 | 262144 | 1 | 3.186e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.283203108723658 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.5411085408280387, dt = 0.0015294725530553537
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.94 us (2.5%)
patch tree reduce : 1.91 us (0.7%)
gen split merge : 935.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.59 us (0.6%)
LB compute : 259.64 us (92.1%)
LB move op cnt : 0
LB apply : 4.24 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.43 us (61.8%)
Info: cfl dt = 0.0015292603044379277 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 6.9145e+05 | 262144 | 1 | 3.791e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.523218057762742 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.542638013381094, dt = 0.0015292603044379277
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.16 us (2.9%)
patch tree reduce : 1.85 us (0.7%)
gen split merge : 1.11 us (0.4%)
split / merge op : 0/0
apply split merge : 1.49 us (0.6%)
LB compute : 227.06 us (91.1%)
LB move op cnt : 0
LB apply : 4.29 us (1.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.41 us (64.4%)
Info: cfl dt = 0.0015290494743725328 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.6527e+05 | 262144 | 1 | 3.426e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.071479391199833 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.5441672736855323, dt = 0.0015290494743725328
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 18.11 us (5.9%)
patch tree reduce : 1.78 us (0.6%)
gen split merge : 993.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.44 us (0.5%)
LB compute : 276.51 us (89.4%)
LB move op cnt : 0
LB apply : 3.94 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.41 us (64.6%)
Info: cfl dt = 0.0015288400377988028 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.6281e+05 | 262144 | 1 | 3.437e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.017697638077173 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.545696323159905, dt = 0.0015288400377988028
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.80 us (2.5%)
patch tree reduce : 1.66 us (0.6%)
gen split merge : 815.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.47 us (0.5%)
LB compute : 247.90 us (91.9%)
LB move op cnt : 0
LB apply : 4.47 us (1.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.46 us (66.5%)
Info: cfl dt = 0.0015286319590684726 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.8037e+05 | 262144 | 1 | 3.359e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.384104428413632 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.547225163197704, dt = 0.0015286319590684726
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.14 us (2.8%)
patch tree reduce : 1.97 us (0.8%)
gen split merge : 982.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.54 us (0.6%)
LB compute : 236.77 us (91.4%)
LB move op cnt : 0
LB apply : 3.94 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.42 us (65.8%)
Info: cfl dt = 0.0015284252027386262 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2697e+05 | 262144 | 1 | 3.170e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.36015147084425 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.5487537951567725, dt = 0.0015284252027386262
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.57 us (2.5%)
patch tree reduce : 1.82 us (0.7%)
gen split merge : 1.07 us (0.4%)
split / merge op : 0/0
apply split merge : 1.53 us (0.6%)
LB compute : 237.85 us (91.6%)
LB move op cnt : 0
LB apply : 3.98 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.45 us (65.4%)
Info: cfl dt = 0.0015282198005503486 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2557e+05 | 262144 | 1 | 3.175e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.32849567272675 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.5502822203595112, dt = 0.0015282198005503486
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.39 us (2.5%)
patch tree reduce : 1.75 us (0.6%)
gen split merge : 928.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.45 us (0.5%)
LB compute : 277.09 us (92.5%)
LB move op cnt : 0
LB apply : 4.53 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.45 us (66.2%)
Info: cfl dt = 0.0015280157600004503 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2054e+05 | 262144 | 1 | 3.195e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.220653548505418 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.5518104401600614, dt = 0.0015280157600004503
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.96 us (2.3%)
patch tree reduce : 2.03 us (0.7%)
gen split merge : 988.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.37 us (0.4%)
LB compute : 285.52 us (92.6%)
LB move op cnt : 0
LB apply : 4.24 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.46 us (65.7%)
Info: cfl dt = 0.001527813124098036 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.9565e+05 | 262144 | 1 | 3.295e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.696091482206004 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.553338455920062, dt = 0.001527813124098036
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.47 us (2.3%)
patch tree reduce : 1.87 us (0.7%)
gen split merge : 983.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.70 us (0.6%)
LB compute : 257.38 us (92.3%)
LB move op cnt : 0
LB apply : 4.05 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.80 us (65.1%)
Info: cfl dt = 0.001527611963613796 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2624e+05 | 262144 | 1 | 3.173e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.335551362934364 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.55486626904416, dt = 0.001527611963613796
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.95 us (2.7%)
patch tree reduce : 1.75 us (0.7%)
gen split merge : 875.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.34 us (0.5%)
LB compute : 239.23 us (91.5%)
LB move op cnt : 0
LB apply : 4.22 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.41 us (65.5%)
Info: cfl dt = 0.001527412463549615 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.1866e+05 | 262144 | 1 | 3.202e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.17420676613423 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.5563938810077738, dt = 0.001527412463549615
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.71 us (2.0%)
patch tree reduce : 1.98 us (0.6%)
gen split merge : 913.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.47 us (0.4%)
LB compute : 319.82 us (93.6%)
LB move op cnt : 0
LB apply : 4.03 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.48 us (65.5%)
Info: cfl dt = 0.0015272147911441956 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.4836e+05 | 262144 | 1 | 3.503e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.69750760730031 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.5579212934713236, dt = 0.0015272147911441956
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.04 us (2.7%)
patch tree reduce : 1.92 us (0.7%)
gen split merge : 956.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.43 us (0.5%)
LB compute : 240.59 us (91.4%)
LB move op cnt : 0
LB apply : 4.42 us (1.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.49 us (65.7%)
Info: cfl dt = 0.0015270190816118194 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.1808e+05 | 262144 | 1 | 3.651e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.060294662752709 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.559448508262468, dt = 0.0015270190816118194
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.94 us (1.2%)
patch tree reduce : 2.08 us (0.4%)
gen split merge : 827.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 1.57 us (0.3%)
LB compute : 559.06 us (96.0%)
LB move op cnt : 0
LB apply : 5.05 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.58 us (76.7%)
Info: cfl dt = 0.0015268254852540005 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2418e+05 | 262144 | 1 | 3.181e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.283440201581747 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.5609755273440795, dt = 0.0015268254852540005
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.82 us (2.2%)
patch tree reduce : 1.75 us (0.6%)
gen split merge : 728.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.37 us (0.4%)
LB compute : 285.54 us (93.1%)
LB move op cnt : 0
LB apply : 3.96 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.55 us (65.7%)
Info: cfl dt = 0.0015266344099158027 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2895e+05 | 262144 | 1 | 3.162e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.381321408785386 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.5625023528293336, dt = 0.0015266344099158027
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.40 us (2.7%)
patch tree reduce : 1.80 us (0.7%)
gen split merge : 1.08 us (0.4%)
split / merge op : 0/0
apply split merge : 1.61 us (0.6%)
LB compute : 248.70 us (91.4%)
LB move op cnt : 0
LB apply : 4.57 us (1.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.64 us (69.6%)
Info: cfl dt = 0.0015264462807982279 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.4481e+05 | 262144 | 1 | 3.103e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.711622168262796 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.5640289872392494, dt = 0.0015264462807982279
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.70 us (2.5%)
patch tree reduce : 1.81 us (0.7%)
gen split merge : 1.05 us (0.4%)
split / merge op : 0/0
apply split merge : 1.41 us (0.5%)
LB compute : 241.15 us (91.6%)
LB move op cnt : 0
LB apply : 4.40 us (1.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.37 us (65.2%)
Info: cfl dt = 0.001526261198684421 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2646e+05 | 262144 | 1 | 3.172e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.32481345715442 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.5655554335200477, dt = 0.001526261198684421
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.79 us (2.2%)
patch tree reduce : 1.72 us (0.6%)
gen split merge : 1.00 us (0.3%)
split / merge op : 0/0
apply split merge : 1.64 us (0.5%)
LB compute : 280.08 us (92.8%)
LB move op cnt : 0
LB apply : 3.94 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.47 us (65.9%)
Info: cfl dt = 0.0015260792558820142 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2726e+05 | 262144 | 1 | 3.169e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.339434465560217 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.5670816947187323, dt = 0.0015260792558820142
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.76 us (2.5%)
patch tree reduce : 1.79 us (0.7%)
gen split merge : 1.10 us (0.4%)
split / merge op : 0/0
apply split merge : 1.49 us (0.6%)
LB compute : 243.82 us (91.6%)
LB move op cnt : 0
LB apply : 4.10 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.88 us (65.1%)
Info: cfl dt = 0.0015259005539663229 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2637e+05 | 262144 | 1 | 3.172e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.31867923033064 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.5686077739746143, dt = 0.0015259005539663229
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.44 us (2.8%)
patch tree reduce : 1.68 us (0.6%)
gen split merge : 1.01 us (0.4%)
split / merge op : 0/0
apply split merge : 1.55 us (0.6%)
LB compute : 238.58 us (91.2%)
LB move op cnt : 0
LB apply : 4.40 us (1.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.44 us (65.6%)
Info: cfl dt = 0.0015257252094116919 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.4778e+05 | 262144 | 1 | 3.506e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.6697517810108 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.5701336745285808, dt = 0.0015257252094116919
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.53 us (2.6%)
patch tree reduce : 1.74 us (0.6%)
gen split merge : 1.04 us (0.4%)
split / merge op : 0/0
apply split merge : 1.54 us (0.5%)
LB compute : 264.17 us (92.0%)
LB move op cnt : 0
LB apply : 4.33 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.47 us (67.0%)
Info: cfl dt = 0.0015255533554885663 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 6.8518e+05 | 262144 | 1 | 3.826e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.356340709695296 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.5716593997379924, dt = 0.0015255533554885663
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.87 us (2.4%)
patch tree reduce : 1.82 us (0.6%)
gen split merge : 1.00 us (0.3%)
split / merge op : 0/0
apply split merge : 1.51 us (0.5%)
LB compute : 265.27 us (92.4%)
LB move op cnt : 0
LB apply : 4.30 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.55 us (66.3%)
Info: cfl dt = 0.0015253850692563038 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2498e+05 | 262144 | 1 | 3.178e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.28361132805157 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.573184953093481, dt = 0.0015253850692563038
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.61 us (2.4%)
patch tree reduce : 1.81 us (0.6%)
gen split merge : 1.06 us (0.4%)
split / merge op : 0/0
apply split merge : 1.60 us (0.6%)
LB compute : 258.59 us (92.1%)
LB move op cnt : 0
LB apply : 4.09 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.46 us (65.5%)
Info: cfl dt = 0.0015252203228414388 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.0571e+05 | 262144 | 1 | 3.254e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.878007889348755 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.5747103381627374, dt = 0.0015252203228414388
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.00 us (2.4%)
patch tree reduce : 1.95 us (0.7%)
gen split merge : 1.01 us (0.4%)
split / merge op : 0/0
apply split merge : 1.34 us (0.5%)
LB compute : 264.34 us (92.3%)
LB move op cnt : 0
LB apply : 4.14 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.57 us (65.7%)
Info: cfl dt = 0.001525059373759957 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2547e+05 | 262144 | 1 | 3.176e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.290085735822668 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.5762355584855787, dt = 0.001525059373759957
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.34 us (2.8%)
patch tree reduce : 2.06 us (0.8%)
gen split merge : 862.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.35 us (0.5%)
LB compute : 242.57 us (91.4%)
LB move op cnt : 0
LB apply : 4.43 us (1.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.48 us (65.8%)
Info: cfl dt = 0.0015249026791034407 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2089e+05 | 262144 | 1 | 3.193e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.192387461919783 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.577760617859339, dt = 0.0015249026791034407
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 16.76 us (5.5%)
patch tree reduce : 1.71 us (0.6%)
gen split merge : 1.02 us (0.3%)
split / merge op : 0/0
apply split merge : 1.45 us (0.5%)
LB compute : 271.78 us (89.5%)
LB move op cnt : 0
LB apply : 4.12 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.56 us (66.4%)
Info: cfl dt = 0.0015247507240520512 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.6603e+05 | 262144 | 1 | 3.422e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.041680350272326 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.579285520538442, dt = 0.0015247507240520512
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.21 us (2.5%)
patch tree reduce : 2.02 us (0.7%)
gen split merge : 1.00 us (0.4%)
split / merge op : 0/0
apply split merge : 1.61 us (0.6%)
LB compute : 262.63 us (91.9%)
LB move op cnt : 0
LB apply : 4.28 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.38 us (63.8%)
Info: cfl dt = 0.0015246038706734379 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2984e+05 | 262144 | 1 | 3.159e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.376238343552117 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.5808102712624943, dt = 0.0015246038706734379
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.85 us (2.6%)
patch tree reduce : 1.77 us (0.7%)
gen split merge : 1.01 us (0.4%)
split / merge op : 0/0
apply split merge : 1.67 us (0.6%)
LB compute : 241.14 us (91.5%)
LB move op cnt : 0
LB apply : 4.20 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.77 us (63.1%)
Info: cfl dt = 0.0015244623324785552 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2532e+05 | 262144 | 1 | 3.176e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.279924998939798 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.5823348751331676, dt = 0.0015244623324785552
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.74 us (2.2%)
patch tree reduce : 1.75 us (0.6%)
gen split merge : 934.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.62 us (0.5%)
LB compute : 286.62 us (93.0%)
LB move op cnt : 0
LB apply : 4.51 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.49 us (65.5%)
Info: cfl dt = 0.0015243261665922774 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.4901e+05 | 262144 | 1 | 3.088e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.77425586365771 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.583859337465646, dt = 0.0015243261665922774
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.56 us (2.1%)
patch tree reduce : 1.95 us (0.6%)
gen split merge : 1.01 us (0.3%)
split / merge op : 0/0
apply split merge : 1.42 us (0.5%)
LB compute : 285.20 us (93.1%)
LB move op cnt : 0
LB apply : 3.78 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.79 us (64.6%)
Info: cfl dt = 0.0015241953159966463 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.5259e+05 | 262144 | 1 | 3.075e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.847644019033694 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.5853836636322383, dt = 0.0015241953159966463
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.99 us (2.3%)
patch tree reduce : 1.92 us (0.6%)
gen split merge : 852.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.49 us (0.5%)
LB compute : 280.14 us (92.6%)
LB move op cnt : 0
LB apply : 4.20 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.46 us (63.4%)
Info: cfl dt = 0.001524069582638697 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.1904e+05 | 262144 | 1 | 3.201e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.143776692917616 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.586907858948235, dt = 0.001524069582638697
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.72 us (2.6%)
patch tree reduce : 1.84 us (0.7%)
gen split merge : 1.08 us (0.4%)
split / merge op : 0/0
apply split merge : 1.74 us (0.7%)
LB compute : 233.49 us (91.2%)
LB move op cnt : 0
LB apply : 4.35 us (1.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.82 us (63.0%)
Info: cfl dt = 0.0015239486956632872 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.1530e+05 | 262144 | 1 | 3.215e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.06408030812156 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.5884319285308734, dt = 0.0015239486956632872
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.08 us (2.3%)
patch tree reduce : 2.01 us (0.6%)
gen split merge : 954.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.38 us (0.4%)
LB compute : 289.02 us (92.9%)
LB move op cnt : 0
LB apply : 3.82 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.38 us (62.8%)
Info: cfl dt = 0.001523832288821232 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.1438e+05 | 262144 | 1 | 3.219e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.04349984838166 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.5899558772265365, dt = 0.001523832288821232
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.77 us (2.5%)
patch tree reduce : 1.81 us (0.7%)
gen split merge : 854.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.61 us (0.6%)
LB compute : 244.72 us (91.6%)
LB move op cnt : 0
LB apply : 4.34 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.87 us (62.8%)
Info: cfl dt = 0.0015237198372224086 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2484e+05 | 262144 | 1 | 3.178e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.261216379653995 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.5914797095153577, dt = 0.0015237198372224086
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.54 us (2.1%)
patch tree reduce : 2.03 us (0.7%)
gen split merge : 1.01 us (0.3%)
split / merge op : 0/0
apply split merge : 1.66 us (0.5%)
LB compute : 286.69 us (92.8%)
LB move op cnt : 0
LB apply : 4.10 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.54 us (67.5%)
Info: cfl dt = 0.0015236112321207937 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.1282e+05 | 262144 | 1 | 3.225e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.008301694544613 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.59300342935258, dt = 0.0015236112321207937
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.03 us (2.1%)
patch tree reduce : 1.67 us (0.5%)
gen split merge : 1.21 us (0.4%)
split / merge op : 0/0
apply split merge : 1.30 us (0.4%)
LB compute : 315.60 us (93.4%)
LB move op cnt : 0
LB apply : 4.18 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.26 us (62.2%)
Info: cfl dt = 0.0015235063595674956 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.1901e+05 | 262144 | 1 | 3.201e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.136613394917173 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.5945270405847007, dt = 0.0015235063595674956
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.16 us (2.6%)
patch tree reduce : 1.85 us (0.7%)
gen split merge : 1.03 us (0.4%)
split / merge op : 0/0
apply split merge : 1.56 us (0.6%)
LB compute : 255.08 us (91.8%)
LB move op cnt : 0
LB apply : 4.11 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.54 us (67.8%)
Info: cfl dt = 0.0015234051011667478 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2489e+05 | 262144 | 1 | 3.178e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.25856700834869 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.596050546944268, dt = 0.0015234051011667478
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.71 us (2.4%)
patch tree reduce : 1.87 us (0.7%)
gen split merge : 1.01 us (0.4%)
split / merge op : 0/0
apply split merge : 1.50 us (0.5%)
LB compute : 260.24 us (92.3%)
LB move op cnt : 0
LB apply : 4.11 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.53 us (68.0%)
Info: cfl dt = 0.0015233073534648195 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.0589e+05 | 262144 | 1 | 3.253e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.859940497544184 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.5975739520454346, dt = 0.0015233073534648195
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.61 us (2.6%)
patch tree reduce : 1.82 us (0.7%)
gen split merge : 1.03 us (0.4%)
split / merge op : 0/0
apply split merge : 1.62 us (0.6%)
LB compute : 236.76 us (91.4%)
LB move op cnt : 0
LB apply : 4.43 us (1.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.39 us (62.8%)
Info: cfl dt = 0.0015232130432429887 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.5342e+05 | 262144 | 1 | 3.072e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.853091419102697 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.5990972593988992, dt = 0.0015232130432429887
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.36 us (2.6%)
patch tree reduce : 1.69 us (0.6%)
gen split merge : 1.09 us (0.4%)
split / merge op : 0/0
apply split merge : 1.48 us (0.5%)
LB compute : 261.46 us (92.0%)
LB move op cnt : 0
LB apply : 4.37 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.46 us (65.5%)
Info: cfl dt = 0.0015231221306644758 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2736e+05 | 262144 | 1 | 3.168e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.30682332904143 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.6006204724421425, dt = 0.0015231221306644758
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 16.72 us (6.1%)
patch tree reduce : 1.72 us (0.6%)
gen split merge : 1.16 us (0.4%)
split / merge op : 0/0
apply split merge : 1.49 us (0.5%)
LB compute : 243.73 us (88.5%)
LB move op cnt : 0
LB apply : 4.01 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.42 us (64.3%)
Info: cfl dt = 0.0015230346010244166 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2297e+05 | 262144 | 1 | 3.185e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.213912153488817 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.602143594572807, dt = 0.0015230346010244166
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.57 us (2.3%)
patch tree reduce : 1.71 us (0.6%)
gen split merge : 1.00 us (0.4%)
split / merge op : 0/0
apply split merge : 1.40 us (0.5%)
LB compute : 260.01 us (92.3%)
LB move op cnt : 0
LB apply : 4.35 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.54 us (66.9%)
Info: cfl dt = 0.0015229504570997351 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.6465e+05 | 262144 | 1 | 3.032e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.084692813010548 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.6036666291738313, dt = 0.0015229504570997351
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.86 us (2.6%)
patch tree reduce : 1.94 us (0.7%)
gen split merge : 900.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.34 us (0.5%)
LB compute : 240.94 us (91.5%)
LB move op cnt : 0
LB apply : 4.55 us (1.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.43 us (65.5%)
Info: cfl dt = 0.0015228696776598937 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2724e+05 | 262144 | 1 | 3.169e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.301357675842013 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.605189579630931, dt = 0.0015228696776598937
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.18 us (2.6%)
patch tree reduce : 1.68 us (0.6%)
gen split merge : 880.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.77 us (0.6%)
LB compute : 256.83 us (92.0%)
LB move op cnt : 0
LB apply : 4.08 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.53 us (67.4%)
Info: cfl dt = 0.0015227922249294278 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.1837e+05 | 262144 | 1 | 3.203e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.114922015424174 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.6067124493085907, dt = 0.0015227922249294278
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.33 us (2.8%)
patch tree reduce : 1.86 us (0.7%)
gen split merge : 1.03 us (0.4%)
split / merge op : 0/0
apply split merge : 1.35 us (0.5%)
LB compute : 240.85 us (91.4%)
LB move op cnt : 0
LB apply : 4.54 us (1.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.39 us (62.9%)
Info: cfl dt = 0.0015227180616253517 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.7825e+05 | 262144 | 1 | 3.368e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.274976864178907 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.60823524153352, dt = 0.0015227180616253517
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.52 us (2.9%)
patch tree reduce : 1.97 us (0.8%)
gen split merge : 1.06 us (0.4%)
split / merge op : 0/0
apply split merge : 1.45 us (0.6%)
LB compute : 236.86 us (91.3%)
LB move op cnt : 0
LB apply : 4.30 us (1.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.36 us (63.1%)
Info: cfl dt = 0.0015226471723875984 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.8630e+05 | 262144 | 1 | 3.334e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.442592677098858 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.6097579595951452, dt = 0.0015226471723875984
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.96 us (2.3%)
patch tree reduce : 1.79 us (0.6%)
gen split merge : 1.08 us (0.4%)
split / merge op : 0/0
apply split merge : 1.51 us (0.5%)
LB compute : 282.06 us (92.8%)
LB move op cnt : 0
LB apply : 3.95 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.41 us (65.8%)
Info: cfl dt = 0.0015225795784276472 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.1612e+05 | 262144 | 1 | 3.212e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.06547780898736 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.611280606767533, dt = 0.0015225795784276472
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.96 us (2.7%)
patch tree reduce : 1.73 us (0.7%)
gen split merge : 932.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.63 us (0.6%)
LB compute : 232.50 us (91.3%)
LB move op cnt : 0
LB apply : 4.30 us (1.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.47 us (65.7%)
Info: cfl dt = 0.0015225153440370605 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.4473e+05 | 262144 | 1 | 3.520e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.571924543538415 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.6128031863459604, dt = 0.0015225153440370605
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.76 us (2.3%)
patch tree reduce : 1.88 us (0.6%)
gen split merge : 1.13 us (0.4%)
split / merge op : 0/0
apply split merge : 1.43 us (0.5%)
LB compute : 276.06 us (92.6%)
LB move op cnt : 0
LB apply : 3.87 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.79 us (63.8%)
Info: cfl dt = 0.0015224548189151203 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2916e+05 | 262144 | 1 | 3.162e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.336458317433042 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.6143257016899977, dt = 0.0015224548189151203
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.26 us (2.4%)
patch tree reduce : 1.91 us (0.6%)
gen split merge : 992.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.29 us (0.4%)
LB compute : 276.52 us (92.5%)
LB move op cnt : 0
LB apply : 4.01 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.43 us (62.4%)
Info: cfl dt = 0.001522398363792358 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.5428e+05 | 262144 | 1 | 3.475e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.770329913308094 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.6158481565089127, dt = 0.001522398363792358
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.89 us (2.5%)
patch tree reduce : 2.05 us (0.7%)
gen split merge : 982.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.26 us (0.5%)
LB compute : 251.67 us (91.8%)
LB move op cnt : 0
LB apply : 4.36 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.61 us (68.9%)
Info: cfl dt = 0.0015223461999149211 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.3057e+05 | 262144 | 1 | 3.156e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.364704395843116 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.617370554872705, dt = 0.0015223461999149211
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.77 us (2.1%)
patch tree reduce : 1.77 us (0.6%)
gen split merge : 978.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.60 us (0.5%)
LB compute : 293.56 us (93.2%)
LB move op cnt : 0
LB apply : 3.92 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.49 us (65.2%)
Info: cfl dt = 0.001522298405641283 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 6.8174e+05 | 262144 | 1 | 3.845e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.252619262547343 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.61889290107262, dt = 0.001522298405641283
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.00 us (2.1%)
patch tree reduce : 1.94 us (0.6%)
gen split merge : 995.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.55 us (0.5%)
LB compute : 306.20 us (93.3%)
LB move op cnt : 0
LB apply : 3.87 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.49 us (66.2%)
Info: cfl dt = 0.0015222549829826063 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.1617e+05 | 262144 | 1 | 3.212e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.062552753289676 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.620415199478261, dt = 0.0015222549829826063
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.90 us (2.4%)
patch tree reduce : 1.77 us (0.6%)
gen split merge : 937.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.30 us (0.5%)
LB compute : 266.66 us (92.6%)
LB move op cnt : 0
LB apply : 3.98 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.61 us (67.4%)
Info: cfl dt = 0.0015222158879719609 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.5727e+05 | 262144 | 1 | 3.462e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.830630055012952 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.6219374544612437, dt = 0.0015222158879719609
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.99 us (2.5%)
patch tree reduce : 1.83 us (0.6%)
gen split merge : 999.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.54 us (0.5%)
LB compute : 260.32 us (92.2%)
LB move op cnt : 0
LB apply : 4.39 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.41 us (65.5%)
Info: cfl dt = 0.0015221810130861245 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.3528e+05 | 262144 | 1 | 3.138e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.460974970219304 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.6234596703492157, dt = 0.0015221810130861245
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.20 us (2.8%)
patch tree reduce : 1.82 us (0.7%)
gen split merge : 1.05 us (0.4%)
split / merge op : 0/0
apply split merge : 1.83 us (0.7%)
LB compute : 238.42 us (91.3%)
LB move op cnt : 0
LB apply : 4.35 us (1.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.40 us (64.6%)
Info: cfl dt = 0.0015221505540052682 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.0922e+05 | 262144 | 1 | 3.239e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.91596236975035 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.624981851362302, dt = 0.0015221505540052682
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.87 us (2.5%)
patch tree reduce : 1.66 us (0.6%)
gen split merge : 728.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.30 us (0.5%)
LB compute : 247.95 us (91.8%)
LB move op cnt : 0
LB apply : 4.57 us (1.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.55 us (67.6%)
Info: cfl dt = 0.0015221246909691835 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.1234e+05 | 262144 | 1 | 3.227e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.980691027047538 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.6265040019163073, dt = 0.0015221246909691835
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.88 us (2.7%)
patch tree reduce : 1.69 us (0.7%)
gen split merge : 1.01 us (0.4%)
split / merge op : 0/0
apply split merge : 1.58 us (0.6%)
LB compute : 234.76 us (91.2%)
LB move op cnt : 0
LB apply : 4.84 us (1.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.80 us (64.9%)
Info: cfl dt = 0.001522103550366825 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.7983e+05 | 262144 | 1 | 3.362e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.301034983593414 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.6280261266072764, dt = 0.001522103550366825
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.21 us (2.6%)
patch tree reduce : 1.68 us (0.6%)
gen split merge : 1.00 us (0.4%)
split / merge op : 0/0
apply split merge : 1.50 us (0.6%)
LB compute : 249.54 us (91.7%)
LB move op cnt : 0
LB apply : 4.11 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.51 us (68.0%)
Info: cfl dt = 0.0015220635640851206 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2418e+05 | 262144 | 1 | 3.181e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.227720264350204 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.6295482301576434, dt = 0.0015220635640851206
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.53 us (2.4%)
patch tree reduce : 1.91 us (0.7%)
gen split merge : 1.25 us (0.5%)
split / merge op : 0/0
apply split merge : 1.36 us (0.5%)
LB compute : 255.43 us (92.3%)
LB move op cnt : 0
LB apply : 4.00 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.56 us (67.1%)
Info: cfl dt = 0.001521992938839611 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2374e+05 | 262144 | 1 | 3.182e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.218030755854137 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.6310702937217285, dt = 0.001521992938839611
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.99 us (2.4%)
patch tree reduce : 1.74 us (0.6%)
gen split merge : 961.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.60 us (0.5%)
LB compute : 272.85 us (92.3%)
LB move op cnt : 0
LB apply : 4.48 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.48 us (67.4%)
Info: cfl dt = 0.0015219275259207915 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.1276e+05 | 262144 | 1 | 3.225e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.987779719917302 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.632592286660568, dt = 0.0015219275259207915
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.83 us (2.2%)
patch tree reduce : 1.78 us (0.6%)
gen split merge : 1.01 us (0.3%)
split / merge op : 0/0
apply split merge : 1.35 us (0.4%)
LB compute : 291.41 us (93.0%)
LB move op cnt : 0
LB apply : 4.58 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.45 us (64.6%)
Info: cfl dt = 0.0015218672236035256 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2285e+05 | 262144 | 1 | 3.186e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.197882302602782 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.634114214186489, dt = 0.0015218672236035256
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.03 us (2.4%)
patch tree reduce : 1.84 us (0.6%)
gen split merge : 1.23 us (0.4%)
split / merge op : 0/0
apply split merge : 1.32 us (0.4%)
LB compute : 272.32 us (92.5%)
LB move op cnt : 0
LB apply : 4.23 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.79 us (64.4%)
Info: cfl dt = 0.0015218118861542072 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2027e+05 | 262144 | 1 | 3.196e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.143450953687786 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.6356360814100923, dt = 0.0015218118861542072
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.93 us (2.5%)
patch tree reduce : 1.93 us (0.7%)
gen split merge : 933.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.48 us (0.5%)
LB compute : 259.81 us (92.0%)
LB move op cnt : 0
LB apply : 4.57 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.51 us (66.5%)
Info: cfl dt = 0.0015217613550831813 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2105e+05 | 262144 | 1 | 3.193e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.158964793625056 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.6371578932962465, dt = 0.0015217613550831813
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.21 us (2.5%)
patch tree reduce : 1.66 us (0.6%)
gen split merge : 889.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.54 us (0.5%)
LB compute : 263.40 us (92.1%)
LB move op cnt : 0
LB apply : 4.46 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.49 us (65.5%)
Info: cfl dt = 0.0015217154035062754 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.3056e+05 | 262144 | 1 | 3.156e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.357290258918418 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.63867965465133, dt = 0.0015217154035062754
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 16.70 us (6.2%)
patch tree reduce : 1.75 us (0.7%)
gen split merge : 927.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.35 us (0.5%)
LB compute : 236.37 us (88.1%)
LB move op cnt : 0
LB apply : 4.53 us (1.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.49 us (68.0%)
Info: cfl dt = 0.0015216737413997524 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.6823e+05 | 262144 | 1 | 3.412e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.054077440732243 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.640201370054836, dt = 0.0015216737413997524
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.64 us (2.2%)
patch tree reduce : 2.01 us (0.7%)
gen split merge : 957.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.48 us (0.5%)
LB compute : 278.06 us (92.8%)
LB move op cnt : 0
LB apply : 3.91 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.42 us (65.5%)
Info: cfl dt = 0.0015216360470863071 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.5610e+05 | 262144 | 1 | 3.467e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.800292149559839 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.641723043796236, dt = 0.0015216360470863071
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.78 us (2.7%)
patch tree reduce : 1.68 us (0.7%)
gen split merge : 860.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.41 us (0.6%)
LB compute : 228.94 us (91.3%)
LB move op cnt : 0
LB apply : 4.16 us (1.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.45 us (65.0%)
Info: cfl dt = 0.0015216019955173162 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.3257e+05 | 262144 | 1 | 3.149e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.397703919010777 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.6432446798433222, dt = 0.0015216019955173162
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.03 us (2.8%)
patch tree reduce : 1.97 us (0.8%)
gen split merge : 1.13 us (0.4%)
split / merge op : 0/0
apply split merge : 1.40 us (0.5%)
LB compute : 232.68 us (91.2%)
LB move op cnt : 0
LB apply : 4.08 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.42 us (63.3%)
Info: cfl dt = 0.0015215713025572438 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2234e+05 | 262144 | 1 | 3.188e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.18359008906754 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.6447662818388396, dt = 0.0010670514944939313
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.95 us (2.4%)
patch tree reduce : 2.03 us (0.7%)
gen split merge : 1.12 us (0.4%)
split / merge op : 0/0
apply split merge : 1.45 us (0.5%)
LB compute : 269.16 us (92.3%)
LB move op cnt : 0
LB apply : 4.47 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.93 us (66.0%)
Info: cfl dt = 0.0015215627922797817 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.0231e+05 | 262144 | 1 | 3.267e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11.756855909658427 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 571.931992732 (s) [Godunov][rank=0]
Info: dump to _to_trash/ramses_kh/periodic_0021.vtk [VTK Dump][rank=0]
- took 34.40 ms, bandwidth = 1.19 GB/s
amr::Godunov: t = 2.6458333333333335, dt = 0.0015215627922797817
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.61 us (2.4%)
patch tree reduce : 1.77 us (0.6%)
gen split merge : 948.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.61 us (0.5%)
LB compute : 291.18 us (92.6%)
LB move op cnt : 0
LB apply : 4.58 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.95 us (70.3%)
Info: cfl dt = 0.0015215367630654838 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.4457e+05 | 262144 | 1 | 3.521e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.558053506484192 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.6473548961256133, dt = 0.0015215367630654838
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.64 us (2.5%)
patch tree reduce : 1.85 us (0.7%)
gen split merge : 922.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.51 us (0.6%)
LB compute : 244.05 us (91.7%)
LB move op cnt : 0
LB apply : 4.45 us (1.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.45 us (64.6%)
Info: cfl dt = 0.0015215134756096653 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2262e+05 | 262144 | 1 | 3.187e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.18865944365777 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.6488764328886787, dt = 0.0015215134756096653
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.56 us (2.6%)
patch tree reduce : 1.83 us (0.6%)
gen split merge : 994.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.53 us (0.5%)
LB compute : 273.30 us (92.2%)
LB move op cnt : 0
LB apply : 4.34 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.52 us (67.8%)
Info: cfl dt = 0.001521493007339403 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.1610e+05 | 262144 | 1 | 3.212e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.052188902879045 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.650397946364288, dt = 0.001521493007339403
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.12 us (2.4%)
patch tree reduce : 1.94 us (0.7%)
gen split merge : 882.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.38 us (0.5%)
LB compute : 271.89 us (92.4%)
LB move op cnt : 0
LB apply : 4.39 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.78 us (61.1%)
Info: cfl dt = 0.001521475702781611 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.3038e+05 | 262144 | 1 | 3.157e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.35046133918552 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.6519194393716274, dt = 0.001521475702781611
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.09 us (2.5%)
patch tree reduce : 1.83 us (0.6%)
gen split merge : 1.06 us (0.4%)
split / merge op : 0/0
apply split merge : 1.44 us (0.5%)
LB compute : 266.61 us (92.2%)
LB move op cnt : 0
LB apply : 4.49 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.87 us (64.9%)
Info: cfl dt = 0.0015214620352323686 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.3662e+05 | 262144 | 1 | 3.133e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.48052984504354 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.653440915074409, dt = 0.0015214620352323686
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.92 us (2.3%)
patch tree reduce : 1.95 us (0.7%)
gen split merge : 943.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.50 us (0.5%)
LB compute : 274.95 us (92.6%)
LB move op cnt : 0
LB apply : 4.19 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.43 us (64.9%)
Info: cfl dt = 0.0015214526165728082 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2872e+05 | 262144 | 1 | 3.163e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.315413413839885 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.654962377109641, dt = 0.0015214526165728082
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.80 us (2.2%)
patch tree reduce : 1.97 us (0.6%)
gen split merge : 915.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.52 us (0.5%)
LB compute : 285.95 us (92.8%)
LB move op cnt : 0
LB apply : 4.14 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.57 us (67.2%)
Info: cfl dt = 0.0015214483506929108 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.4902e+05 | 262144 | 1 | 3.500e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.650026674397736 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.656483829726214, dt = 0.0015214483506929108
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.25 us (2.6%)
patch tree reduce : 1.84 us (0.7%)
gen split merge : 996.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.92 us (0.7%)
LB compute : 255.98 us (91.8%)
LB move op cnt : 0
LB apply : 4.40 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.38 us (64.1%)
Info: cfl dt = 0.0015214495068474087 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.5037e+05 | 262144 | 1 | 3.494e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.678233772595195 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.658005278076907, dt = 0.0015214495068474087
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.00 us (2.4%)
patch tree reduce : 1.67 us (0.6%)
gen split merge : 911.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.61 us (0.6%)
LB compute : 266.71 us (92.4%)
LB move op cnt : 0
LB apply : 4.39 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.79 us (63.9%)
Info: cfl dt = 0.0015214547605531907 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.3979e+05 | 262144 | 1 | 3.122e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.54656017734496 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.6595267275837546, dt = 0.0015214547605531907
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.21 us (2.4%)
patch tree reduce : 1.84 us (0.6%)
gen split merge : 1.04 us (0.4%)
split / merge op : 0/0
apply split merge : 1.49 us (0.5%)
LB compute : 274.69 us (92.4%)
LB move op cnt : 0
LB apply : 4.75 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.52 us (67.5%)
Info: cfl dt = 0.0015214652338746918 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.4432e+05 | 262144 | 1 | 3.105e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.64113343453078 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.6610481823443077, dt = 0.0015214652338746918
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.50 us (2.2%)
patch tree reduce : 1.82 us (0.6%)
gen split merge : 959.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.61 us (0.5%)
LB compute : 273.65 us (92.7%)
LB move op cnt : 0
LB apply : 4.20 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.74 us (67.3%)
Info: cfl dt = 0.0015214814636623894 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.1690e+05 | 262144 | 1 | 3.657e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.979017579635203 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.6625696475781826, dt = 0.0015214814636623894
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.66 us (2.4%)
patch tree reduce : 1.89 us (0.7%)
gen split merge : 865.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.55 us (0.6%)
LB compute : 254.35 us (92.0%)
LB move op cnt : 0
LB apply : 4.19 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.46 us (67.2%)
Info: cfl dt = 0.0015215037035484235 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2628e+05 | 262144 | 1 | 3.173e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.264686714456214 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.664091129041845, dt = 0.0015215037035484235
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.80 us (2.5%)
patch tree reduce : 2.10 us (0.8%)
gen split merge : 1.17 us (0.4%)
split / merge op : 0/0
apply split merge : 1.46 us (0.5%)
LB compute : 249.93 us (91.0%)
LB move op cnt : 0
LB apply : 6.31 us (2.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.56 us (67.4%)
Info: cfl dt = 0.0015215320327723965 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.9020e+05 | 262144 | 1 | 3.317e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.51101031355161 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.6656126327453937, dt = 0.0015215320327723965
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.51 us (2.3%)
patch tree reduce : 1.87 us (0.6%)
gen split merge : 1.04 us (0.4%)
split / merge op : 0/0
apply split merge : 1.48 us (0.5%)
LB compute : 267.95 us (92.6%)
LB move op cnt : 0
LB apply : 4.26 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.39 us (63.3%)
Info: cfl dt = 0.0015215664332649832 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2498e+05 | 262144 | 1 | 3.178e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.238044486519893 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.667134164778166, dt = 0.0015215664332649832
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.40 us (2.1%)
patch tree reduce : 1.80 us (0.6%)
gen split merge : 1.09 us (0.4%)
split / merge op : 0/0
apply split merge : 1.30 us (0.4%)
LB compute : 279.74 us (93.0%)
LB move op cnt : 0
LB apply : 4.04 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.42 us (65.2%)
Info: cfl dt = 0.0015216068296643461 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2087e+05 | 262144 | 1 | 3.193e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.15250773407808 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.668655731211431, dt = 0.0015216068296643461
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.83 us (2.3%)
patch tree reduce : 1.61 us (0.5%)
gen split merge : 919.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.52 us (0.5%)
LB compute : 276.32 us (92.8%)
LB move op cnt : 0
LB apply : 4.13 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.49 us (66.1%)
Info: cfl dt = 0.0015216531205595398 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.4719e+05 | 262144 | 1 | 3.508e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.613316476535271 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.6701773380410954, dt = 0.0015216531205595398
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.01 us (2.5%)
patch tree reduce : 1.71 us (0.6%)
gen split merge : 854.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.66 us (0.6%)
LB compute : 259.39 us (91.8%)
LB move op cnt : 0
LB apply : 4.99 us (1.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.65 us (77.8%)
Info: cfl dt = 0.0015217051989234796 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.1306e+05 | 262144 | 1 | 3.224e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.990378757294096 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.671698991161655, dt = 0.0015217051989234796
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.52 us (2.1%)
patch tree reduce : 1.76 us (0.6%)
gen split merge : 1.02 us (0.3%)
split / merge op : 0/0
apply split merge : 1.55 us (0.5%)
LB compute : 283.54 us (92.9%)
LB move op cnt : 0
LB apply : 4.13 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.48 us (66.4%)
Info: cfl dt = 0.0015217629740179957 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.4466e+05 | 262144 | 1 | 3.104e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.651314408913567 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.6732206963605787, dt = 0.0015217629740179957
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.82 us (2.3%)
patch tree reduce : 1.95 us (0.7%)
gen split merge : 905.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.40 us (0.5%)
LB compute : 274.41 us (92.5%)
LB move op cnt : 0
LB apply : 4.18 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.41 us (65.7%)
Info: cfl dt = 0.001521826407482079 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2440e+05 | 262144 | 1 | 3.180e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.228574350519793 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.6747424593345968, dt = 0.001521826407482079
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.26 us (2.1%)
patch tree reduce : 1.77 us (0.6%)
gen split merge : 962.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.52 us (0.5%)
LB compute : 274.00 us (92.8%)
LB move op cnt : 0
LB apply : 3.88 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.79 us (64.6%)
Info: cfl dt = 0.001521895515919894 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2699e+05 | 262144 | 1 | 3.170e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.283412078864277 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.6762642857420786, dt = 0.001521895515919894
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.27 us (2.3%)
patch tree reduce : 1.82 us (0.6%)
gen split merge : 944.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.44 us (0.5%)
LB compute : 294.64 us (92.9%)
LB move op cnt : 0
LB apply : 4.25 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.39 us (64.6%)
Info: cfl dt = 0.0015219704157906422 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.1259e+05 | 262144 | 1 | 3.226e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.983276521620205 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.6777861812579986, dt = 0.0015219704157906422
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.54 us (2.2%)
patch tree reduce : 1.76 us (0.6%)
gen split merge : 1.05 us (0.4%)
split / merge op : 0/0
apply split merge : 1.55 us (0.5%)
LB compute : 276.81 us (92.7%)
LB move op cnt : 0
LB apply : 4.38 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.46 us (65.3%)
Info: cfl dt = 0.0015220513070769324 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.1969e+05 | 262144 | 1 | 3.198e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.132334897174918 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.6793081516737893, dt = 0.0015220513070769324
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.50 us (2.5%)
patch tree reduce : 1.79 us (0.6%)
gen split merge : 1.03 us (0.3%)
split / merge op : 0/0
apply split merge : 1.35 us (0.4%)
LB compute : 278.02 us (92.4%)
LB move op cnt : 0
LB apply : 4.58 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.39 us (64.1%)
Info: cfl dt = 0.0015218822829526104 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.5700e+05 | 262144 | 1 | 3.059e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.913094433968993 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.680830202980866, dt = 0.0015218822829526104
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.85 us (2.4%)
patch tree reduce : 1.96 us (0.7%)
gen split merge : 974.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.37 us (0.5%)
LB compute : 258.55 us (92.0%)
LB move op cnt : 0
LB apply : 4.50 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.48 us (67.5%)
Info: cfl dt = 0.0015216828730204412 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2553e+05 | 262144 | 1 | 3.175e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.253560690793385 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.682352085263819, dt = 0.0015216828730204412
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.67 us (1.8%)
patch tree reduce : 1.81 us (0.5%)
gen split merge : 1.05 us (0.3%)
split / merge op : 0/0
apply split merge : 1.40 us (0.4%)
LB compute : 347.95 us (93.8%)
LB move op cnt : 0
LB apply : 4.64 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.27 us (75.4%)
Info: cfl dt = 0.0015214871711774092 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.3834e+05 | 262144 | 1 | 3.127e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.518816442369378 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.683873768136839, dt = 0.0015214871711774092
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.53 us (2.3%)
patch tree reduce : 1.69 us (0.6%)
gen split merge : 1.08 us (0.4%)
split / merge op : 0/0
apply split merge : 1.52 us (0.5%)
LB compute : 258.25 us (92.3%)
LB move op cnt : 0
LB apply : 4.37 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.43 us (65.5%)
Info: cfl dt = 0.0015212952824021552 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.3721e+05 | 262144 | 1 | 3.131e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.49310941120925 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.6853952553080167, dt = 0.0015212952824021552
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.87 us (2.6%)
patch tree reduce : 1.85 us (0.7%)
gen split merge : 944.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.55 us (0.6%)
LB compute : 243.52 us (91.5%)
LB move op cnt : 0
LB apply : 4.54 us (1.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.42 us (67.2%)
Info: cfl dt = 0.0015211072425463845 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2721e+05 | 262144 | 1 | 3.169e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.281827396775824 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.6869165505904187, dt = 0.0015211072425463845
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.85 us (2.0%)
patch tree reduce : 1.68 us (0.5%)
gen split merge : 967.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.64 us (0.5%)
LB compute : 274.84 us (82.1%)
LB move op cnt : 0
LB apply : 4.08 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.53 us (66.6%)
Info: cfl dt = 0.0015209230906906208 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3816e+05 | 262144 | 1 | 3.551e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.41955092174622 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.688437657832965, dt = 0.0015209230906906208
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.15 us (2.3%)
patch tree reduce : 1.69 us (0.5%)
gen split merge : 918.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.52 us (0.5%)
LB compute : 286.81 us (92.8%)
LB move op cnt : 0
LB apply : 4.42 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.45 us (64.8%)
Info: cfl dt = 0.0015207427383924386 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.6195e+05 | 262144 | 1 | 3.041e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.00335713526994 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.6899585809236557, dt = 0.0015207427383924386
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.21 us (2.4%)
patch tree reduce : 1.79 us (0.6%)
gen split merge : 966.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.45 us (0.5%)
LB compute : 277.96 us (92.5%)
LB move op cnt : 0
LB apply : 4.25 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.43 us (65.2%)
Info: cfl dt = 0.0015205660194272331 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.3268e+05 | 262144 | 1 | 3.148e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.389956977646364 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.691479323662048, dt = 0.0015205660194272331
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.86 us (2.6%)
patch tree reduce : 1.73 us (0.7%)
gen split merge : 871.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.75 us (0.7%)
LB compute : 241.97 us (91.8%)
LB move op cnt : 0
LB apply : 4.12 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.43 us (65.9%)
Info: cfl dt = 0.0015203927357172946 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.6851e+05 | 262144 | 1 | 3.018e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.13598949848632 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.692999889681475, dt = 0.0015203927357172946
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.76 us (2.6%)
patch tree reduce : 1.85 us (0.7%)
gen split merge : 948.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.63 us (0.6%)
LB compute : 239.19 us (91.5%)
LB move op cnt : 0
LB apply : 4.32 us (1.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.35 us (65.2%)
Info: cfl dt = 0.0015202226929284849 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2407e+05 | 262144 | 1 | 3.181e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.206061634161927 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.6945202824171925, dt = 0.0015202226929284849
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.97 us (2.4%)
patch tree reduce : 1.83 us (0.6%)
gen split merge : 1.01 us (0.3%)
split / merge op : 0/0
apply split merge : 1.43 us (0.5%)
LB compute : 266.44 us (92.3%)
LB move op cnt : 0
LB apply : 4.24 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.44 us (64.8%)
Info: cfl dt = 0.001520055731103431 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.5229e+05 | 262144 | 1 | 3.076e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.793410352393153 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.696040505110121, dt = 0.001520055731103431
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.24 us (2.7%)
patch tree reduce : 1.82 us (0.7%)
gen split merge : 802.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.29 us (0.5%)
LB compute : 244.72 us (91.7%)
LB move op cnt : 0
LB apply : 4.19 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.83 us (63.5%)
Info: cfl dt = 0.0015198917416670134 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.6621e+05 | 262144 | 1 | 3.026e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.081939899402844 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.6975605608412243, dt = 0.0015198917416670134
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.50 us (2.5%)
patch tree reduce : 1.95 us (0.7%)
gen split merge : 856.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.37 us (0.5%)
LB compute : 240.36 us (91.7%)
LB move op cnt : 0
LB apply : 4.33 us (1.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.33 us (66.2%)
Info: cfl dt = 0.001519730645435698 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.3374e+05 | 262144 | 1 | 3.144e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.402231327243797 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.6990804525828915, dt = 0.001519730645435698
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.63 us (2.3%)
patch tree reduce : 1.91 us (0.7%)
gen split merge : 958.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.48 us (0.5%)
LB compute : 271.27 us (92.6%)
LB move op cnt : 0
LB apply : 4.31 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.47 us (66.3%)
Info: cfl dt = 0.0015195724187671324 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.1042e+05 | 262144 | 1 | 3.235e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.913650159648277 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.7006001832283273, dt = 0.0015195724187671324
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.64 us (2.1%)
patch tree reduce : 1.77 us (0.6%)
gen split merge : 780.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.62 us (0.5%)
LB compute : 292.88 us (93.0%)
LB move op cnt : 0
LB apply : 4.58 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.45 us (63.8%)
Info: cfl dt = 0.0015194170813446967 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.6357e+05 | 262144 | 1 | 3.036e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.02102256098565 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.7021197556470944, dt = 0.0015194170813446967
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.11 us (2.5%)
patch tree reduce : 1.87 us (0.7%)
gen split merge : 963.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.49 us (0.5%)
LB compute : 259.68 us (92.2%)
LB move op cnt : 0
LB apply : 4.33 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.54 us (68.8%)
Info: cfl dt = 0.0015192646876158293 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2492e+05 | 262144 | 1 | 3.178e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.212797857068484 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.703639172728439, dt = 0.0015192646876158293
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.83 us (2.5%)
patch tree reduce : 1.84 us (0.7%)
gen split merge : 995.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.50 us (0.5%)
LB compute : 255.89 us (92.2%)
LB move op cnt : 0
LB apply : 4.04 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.50 us (66.3%)
Info: cfl dt = 0.0015191153009374756 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.4171e+05 | 262144 | 1 | 3.114e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.561478968286057 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.705158437416055, dt = 0.0015191153009374756
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.60 us (2.2%)
patch tree reduce : 1.80 us (0.6%)
gen split merge : 1.01 us (0.3%)
split / merge op : 0/0
apply split merge : 1.45 us (0.5%)
LB compute : 282.72 us (92.9%)
LB move op cnt : 0
LB apply : 4.38 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.74 us (62.8%)
Info: cfl dt = 0.0015189689424582535 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.3835e+05 | 262144 | 1 | 3.127e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.489621309311794 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.706677552716992, dt = 0.0015189689424582535
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.14 us (2.7%)
patch tree reduce : 1.93 us (0.7%)
gen split merge : 906.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.56 us (0.6%)
LB compute : 239.07 us (91.4%)
LB move op cnt : 0
LB apply : 4.41 us (1.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.36 us (65.2%)
Info: cfl dt = 0.0015188256124191658 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2953e+05 | 262144 | 1 | 3.160e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.30388118462947 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.7081965216594504, dt = 0.0015188256124191658
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.77 us (2.4%)
patch tree reduce : 1.98 us (0.7%)
gen split merge : 904.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.85 us (0.7%)
LB compute : 260.74 us (91.9%)
LB move op cnt : 0
LB apply : 4.73 us (1.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.45 us (65.9%)
Info: cfl dt = 0.001518685341372921 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.4917e+05 | 262144 | 1 | 3.087e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.71185901676298 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.7097153472718696, dt = 0.001518685341372921
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.60 us (2.5%)
patch tree reduce : 1.75 us (0.6%)
gen split merge : 915.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.44 us (0.5%)
LB compute : 247.21 us (91.9%)
LB move op cnt : 0
LB apply : 4.55 us (1.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.45 us (64.9%)
Info: cfl dt = 0.0015185482927300635 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.5822e+05 | 262144 | 1 | 3.457e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.813315339475272 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.7112340326132425, dt = 0.0015185482927300635
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.07 us (2.2%)
patch tree reduce : 1.84 us (0.6%)
gen split merge : 989.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.82 us (0.6%)
LB compute : 299.51 us (92.9%)
LB move op cnt : 0
LB apply : 4.31 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.60 us (65.4%)
Info: cfl dt = 0.0015184146985223012 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.0319e+05 | 262144 | 1 | 3.264e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.74988588443227 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.7127525809059727, dt = 0.0015184146985223012
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.78 us (2.3%)
patch tree reduce : 1.90 us (0.7%)
gen split merge : 968.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.66 us (0.6%)
LB compute : 268.12 us (92.3%)
LB move op cnt : 0
LB apply : 4.18 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.36 us (64.3%)
Info: cfl dt = 0.0015182847574566453 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.7723e+05 | 262144 | 1 | 3.373e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.20698574760423 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.714270995604495, dt = 0.0015182847574566453
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.83 us (2.2%)
patch tree reduce : 11.13 us (3.5%)
gen split merge : 1.08 us (0.3%)
split / merge op : 0/0
apply split merge : 1.40 us (0.4%)
LB compute : 283.20 us (89.9%)
LB move op cnt : 0
LB apply : 4.66 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.47 us (65.3%)
Info: cfl dt = 0.0015181586388005445 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2017e+05 | 262144 | 1 | 3.196e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.100908190974557 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.7157892803619514, dt = 0.0015181586388005445
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.21 us (2.3%)
patch tree reduce : 1.77 us (0.6%)
gen split merge : 1.03 us (0.3%)
split / merge op : 0/0
apply split merge : 1.30 us (0.4%)
LB compute : 296.22 us (93.0%)
LB move op cnt : 0
LB apply : 4.21 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.42 us (64.9%)
Info: cfl dt = 0.0015180364524598566 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.1527e+05 | 262144 | 1 | 3.215e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.997298429995272 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.717307439000752, dt = 0.0015180364524598566
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.64 us (2.2%)
patch tree reduce : 1.98 us (0.7%)
gen split merge : 1.01 us (0.3%)
split / merge op : 0/0
apply split merge : 1.61 us (0.5%)
LB compute : 277.01 us (92.4%)
LB move op cnt : 0
LB apply : 4.66 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.60 us (67.9%)
Info: cfl dt = 0.0015179182188294793 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2231e+05 | 262144 | 1 | 3.188e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.142773631331593 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.718825475453212, dt = 0.0015179182188294793
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.15 us (2.3%)
patch tree reduce : 1.98 us (0.6%)
gen split merge : 1.04 us (0.3%)
split / merge op : 0/0
apply split merge : 1.42 us (0.5%)
LB compute : 287.66 us (92.9%)
LB move op cnt : 0
LB apply : 3.77 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.39 us (63.1%)
Info: cfl dt = 0.001517803934898775 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.8163e+05 | 262144 | 1 | 3.354e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.29339116991631 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.720343393672042, dt = 0.001517803934898775
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.75 us (2.6%)
patch tree reduce : 1.70 us (0.7%)
gen split merge : 1.11 us (0.4%)
split / merge op : 0/0
apply split merge : 1.38 us (0.5%)
LB compute : 238.18 us (91.4%)
LB move op cnt : 0
LB apply : 4.49 us (1.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.46 us (65.1%)
Info: cfl dt = 0.0015176935434418695 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2834e+05 | 262144 | 1 | 3.165e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.265720543296695 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.7218611976069407, dt = 0.0015176935434418695
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.10 us (2.0%)
patch tree reduce : 1.91 us (0.5%)
gen split merge : 1.03 us (0.3%)
split / merge op : 0/0
apply split merge : 1.35 us (0.4%)
LB compute : 328.76 us (93.6%)
LB move op cnt : 0
LB apply : 4.35 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.52 us (65.7%)
Info: cfl dt = 0.001517586901105193 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.3890e+05 | 262144 | 1 | 3.125e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.484709395076028 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.7233788911503827, dt = 0.001517586901105193
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 16.24 us (5.0%)
patch tree reduce : 1.89 us (0.6%)
gen split merge : 1.18 us (0.4%)
split / merge op : 0/0
apply split merge : 1.32 us (0.4%)
LB compute : 291.13 us (90.3%)
LB move op cnt : 0
LB apply : 4.12 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.52 us (66.0%)
Info: cfl dt = 0.0015174838995752856 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.3213e+05 | 262144 | 1 | 3.150e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.342287785743007 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.724896478051488, dt = 0.0015174838995752856
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.31 us (2.4%)
patch tree reduce : 1.87 us (0.7%)
gen split merge : 830.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.51 us (0.6%)
LB compute : 239.67 us (91.8%)
LB move op cnt : 0
LB apply : 3.90 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.56 us (67.3%)
Info: cfl dt = 0.0015173844601152004 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.3469e+05 | 262144 | 1 | 3.141e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.394442865402446 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.7264139619510632, dt = 0.0015173844601152004
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.70 us (2.2%)
patch tree reduce : 1.90 us (0.6%)
gen split merge : 915.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.49 us (0.5%)
LB compute : 279.43 us (92.6%)
LB move op cnt : 0
LB apply : 4.11 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.86 us (65.0%)
Info: cfl dt = 0.0015172885253066906 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.9363e+05 | 262144 | 1 | 3.303e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.537820353282374 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.7279313464111783, dt = 0.0015172885253066906
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.26 us (2.5%)
patch tree reduce : 1.86 us (0.6%)
gen split merge : 1.02 us (0.3%)
split / merge op : 0/0
apply split merge : 1.42 us (0.5%)
LB compute : 272.05 us (92.4%)
LB move op cnt : 0
LB apply : 4.16 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.45 us (66.4%)
Info: cfl dt = 0.0015171960734796377 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.8803e+05 | 262144 | 1 | 3.327e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.419984340865536 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.729448634936485, dt = 0.0015171960734796377
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.87 us (2.6%)
patch tree reduce : 1.77 us (0.7%)
gen split merge : 1.08 us (0.4%)
split / merge op : 0/0
apply split merge : 1.57 us (0.6%)
LB compute : 238.40 us (91.5%)
LB move op cnt : 0
LB apply : 4.22 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.56 us (66.6%)
Info: cfl dt = 0.001517107295658014 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.9658e+05 | 262144 | 1 | 3.291e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.59717953611225 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.7309658310099643, dt = 0.001517107295658014
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.09 us (2.5%)
patch tree reduce : 1.72 us (0.6%)
gen split merge : 943.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.58 us (0.6%)
LB compute : 257.74 us (92.1%)
LB move op cnt : 0
LB apply : 4.19 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.35 us (63.7%)
Info: cfl dt = 0.0015170224528540228 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.3989e+05 | 262144 | 1 | 3.121e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.4986021263721 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.732482938305622, dt = 0.0015170224528540228
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.73 us (2.4%)
patch tree reduce : 2.00 us (0.6%)
gen split merge : 935.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.50 us (0.5%)
LB compute : 296.30 us (92.7%)
LB move op cnt : 0
LB apply : 4.18 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.49 us (65.4%)
Info: cfl dt = 0.0015169416171948854 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.3995e+05 | 262144 | 1 | 3.121e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.498693810263457 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.733999960758476, dt = 0.0015169416171948854
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.60 us (2.1%)
patch tree reduce : 1.67 us (0.5%)
gen split merge : 851.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.63 us (0.5%)
LB compute : 293.06 us (93.2%)
LB move op cnt : 0
LB apply : 3.83 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.44 us (66.4%)
Info: cfl dt = 0.0015168647812692866 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.8632e+05 | 262144 | 1 | 3.334e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.380717985159855 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.735516902375671, dt = 0.0015168647812692866
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.54 us (2.3%)
patch tree reduce : 1.92 us (0.7%)
gen split merge : 941.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.55 us (0.5%)
LB compute : 262.15 us (92.2%)
LB move op cnt : 0
LB apply : 4.27 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.45 us (64.4%)
Info: cfl dt = 0.0015167919479624732 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.3173e+05 | 262144 | 1 | 3.152e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.32579984291306 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.7370337671569405, dt = 0.0015167919479624732
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.77 us (2.5%)
patch tree reduce : 1.66 us (0.6%)
gen split merge : 867.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.39 us (0.5%)
LB compute : 247.87 us (92.0%)
LB move op cnt : 0
LB apply : 4.02 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.43 us (64.5%)
Info: cfl dt = 0.0015167231894657924 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.3190e+05 | 262144 | 1 | 3.151e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.32847631295645 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.738550559104903, dt = 0.0015167231894657924
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.55 us (2.5%)
patch tree reduce : 1.73 us (0.7%)
gen split merge : 968.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.53 us (0.6%)
LB compute : 242.58 us (91.8%)
LB move op cnt : 0
LB apply : 4.25 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.74 us (64.9%)
Info: cfl dt = 0.0015166586748958596 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.1891e+05 | 262144 | 1 | 3.201e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.057109657951475 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.7400672822943686, dt = 0.0015166586748958596
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.37 us (2.4%)
patch tree reduce : 1.79 us (0.6%)
gen split merge : 1.01 us (0.3%)
split / merge op : 0/0
apply split merge : 1.43 us (0.5%)
LB compute : 284.29 us (92.7%)
LB move op cnt : 0
LB apply : 4.06 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.49 us (64.0%)
Info: cfl dt = 0.0015165986996247278 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.3199e+05 | 262144 | 1 | 3.151e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.328836238467506 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.7415839409692646, dt = 0.0015165986996247278
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.87 us (2.3%)
patch tree reduce : 1.87 us (0.6%)
gen split merge : 977.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.55 us (0.5%)
LB compute : 279.48 us (92.5%)
LB move op cnt : 0
LB apply : 4.01 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.43 us (63.3%)
Info: cfl dt = 0.0015165437461643627 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2286e+05 | 262144 | 1 | 3.186e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.138066498040896 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.7431005396688892, dt = 0.0015165437461643627
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.61 us (2.5%)
patch tree reduce : 1.84 us (0.7%)
gen split merge : 914.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.44 us (0.6%)
LB compute : 239.66 us (91.8%)
LB move op cnt : 0
LB apply : 4.20 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.43 us (67.0%)
Info: cfl dt = 0.0015164942672715618 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2379e+05 | 262144 | 1 | 3.182e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.156651114509888 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.7446170834150534, dt = 0.0015164942672715618
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.74 us (2.4%)
patch tree reduce : 1.84 us (0.7%)
gen split merge : 1.00 us (0.4%)
split / merge op : 0/0
apply split merge : 1.54 us (0.6%)
LB compute : 256.52 us (92.0%)
LB move op cnt : 0
LB apply : 4.13 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.61 us (65.5%)
Info: cfl dt = 0.001516450595324313 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2468e+05 | 262144 | 1 | 3.179e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.174592825991315 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.746133577682325, dt = 0.001516450595324313
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.43 us (2.3%)
patch tree reduce : 1.76 us (0.6%)
gen split merge : 979.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.82 us (0.7%)
LB compute : 256.42 us (92.0%)
LB move op cnt : 0
LB apply : 4.58 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.49 us (66.8%)
Info: cfl dt = 0.0015164129746310182 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2382e+05 | 262144 | 1 | 3.182e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.15632276255803 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.7476500282776493, dt = 0.0015164129746310182
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.78 us (2.6%)
patch tree reduce : 2.05 us (0.8%)
gen split merge : 998.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.65 us (0.6%)
LB compute : 240.58 us (91.5%)
LB move op cnt : 0
LB apply : 4.03 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.43 us (67.0%)
Info: cfl dt = 0.0015163815239267013 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2913e+05 | 262144 | 1 | 3.162e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.266351712849808 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.7491664412522803, dt = 0.0015163815239267013
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.75 us (2.4%)
patch tree reduce : 1.67 us (0.6%)
gen split merge : 1.04 us (0.4%)
split / merge op : 0/0
apply split merge : 1.44 us (0.5%)
LB compute : 254.53 us (92.2%)
LB move op cnt : 0
LB apply : 4.25 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.56 us (68.5%)
Info: cfl dt = 0.0015163562176670798 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.4387e+05 | 262144 | 1 | 3.106e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.57297163186505 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.750682822776207, dt = 0.0015163562176670798
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.44 us (2.4%)
patch tree reduce : 1.94 us (0.7%)
gen split merge : 938.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.36 us (0.5%)
LB compute : 250.11 us (91.9%)
LB move op cnt : 0
LB apply : 4.42 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.42 us (64.9%)
Info: cfl dt = 0.0015163369294719964 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2789e+05 | 262144 | 1 | 3.166e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.239900008830425 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.752199178993874, dt = 0.0015163369294719964
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.41 us (2.8%)
patch tree reduce : 1.68 us (0.6%)
gen split merge : 1.02 us (0.4%)
split / merge op : 0/0
apply split merge : 1.64 us (0.6%)
LB compute : 245.73 us (91.6%)
LB move op cnt : 0
LB apply : 4.33 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.76 us (63.4%)
Info: cfl dt = 0.0015163234734648816 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.4436e+05 | 262144 | 1 | 3.105e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.58273281717495 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.753715515923346, dt = 0.0015163234734648816
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.90 us (2.3%)
patch tree reduce : 1.85 us (0.6%)
gen split merge : 903.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.55 us (0.5%)
LB compute : 282.19 us (92.8%)
LB move op cnt : 0
LB apply : 3.98 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.31 us (62.6%)
Info: cfl dt = 0.0015163158747084737 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.6712e+05 | 262144 | 1 | 3.417e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.974223895395994 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.755231839396811, dt = 0.0015163158747084737
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.87 us (2.4%)
patch tree reduce : 1.82 us (0.6%)
gen split merge : 1.03 us (0.4%)
split / merge op : 0/0
apply split merge : 1.32 us (0.5%)
LB compute : 266.75 us (92.4%)
LB move op cnt : 0
LB apply : 4.10 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.39 us (63.7%)
Info: cfl dt = 0.001516313546854961 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2112e+05 | 262144 | 1 | 3.193e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.09862346649929 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.7567481552715196, dt = 0.001516313546854961
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.96 us (2.6%)
patch tree reduce : 1.96 us (0.7%)
gen split merge : 938.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.78 us (0.7%)
LB compute : 249.68 us (91.7%)
LB move op cnt : 0
LB apply : 4.33 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.67 us (69.8%)
Info: cfl dt = 0.001516316003748054 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.3366e+05 | 262144 | 1 | 3.145e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.359546771255836 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.7582644688183744, dt = 0.001516316003748054
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.35 us (2.1%)
patch tree reduce : 1.90 us (0.6%)
gen split merge : 1.08 us (0.4%)
split / merge op : 0/0
apply split merge : 1.77 us (0.6%)
LB compute : 286.15 us (92.9%)
LB move op cnt : 0
LB apply : 4.06 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.77 us (63.8%)
Info: cfl dt = 0.0015162903063132634 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.9462e+05 | 262144 | 1 | 3.299e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.546748996786537 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.7597807848221225, dt = 0.0015162903063132634
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.73 us (2.3%)
patch tree reduce : 1.67 us (0.6%)
gen split merge : 968.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.46 us (0.5%)
LB compute : 269.94 us (92.5%)
LB move op cnt : 0
LB apply : 3.91 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.50 us (65.2%)
Info: cfl dt = 0.0015162647996006403 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.1449e+05 | 262144 | 1 | 3.219e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.96008744482389 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.761297075128436, dt = 0.0015162647996006403
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.97 us (2.6%)
patch tree reduce : 1.86 us (0.7%)
gen split merge : 878.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.54 us (0.6%)
LB compute : 246.60 us (91.7%)
LB move op cnt : 0
LB apply : 4.48 us (1.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.36 us (66.1%)
Info: cfl dt = 0.0015162427419989411 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.9284e+05 | 262144 | 1 | 3.306e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.508991319737554 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.7628133399280363, dt = 0.0015162427419989411
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.65 us (2.3%)
patch tree reduce : 1.82 us (0.6%)
gen split merge : 846.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.43 us (0.5%)
LB compute : 265.56 us (92.5%)
LB move op cnt : 0
LB apply : 4.08 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.42 us (64.5%)
Info: cfl dt = 0.001516220003079443 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.7134e+05 | 262144 | 1 | 3.399e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.06121530372468 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.7643295826700354, dt = 0.001516220003079443
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.17 us (2.1%)
patch tree reduce : 1.97 us (0.7%)
gen split merge : 1.16 us (0.4%)
split / merge op : 0/0
apply split merge : 1.53 us (0.5%)
LB compute : 269.23 us (89.5%)
LB move op cnt : 0
LB apply : 4.03 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.45 us (65.6%)
Info: cfl dt = 0.001516143584971755 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.7510e+05 | 262144 | 1 | 3.382e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.139273342541877 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.7658458026731148, dt = 0.001516143584971755
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.97 us (2.7%)
patch tree reduce : 1.65 us (0.6%)
gen split merge : 875.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.44 us (0.6%)
LB compute : 234.19 us (91.4%)
LB move op cnt : 0
LB apply : 4.21 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.36 us (64.4%)
Info: cfl dt = 0.0015160710512218732 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2811e+05 | 262144 | 1 | 3.166e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.242155907621193 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.7673619462580863, dt = 0.0015160710512218732
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.84 us (2.2%)
patch tree reduce : 1.64 us (0.5%)
gen split merge : 894.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.52 us (0.5%)
LB compute : 293.39 us (93.0%)
LB move op cnt : 0
LB apply : 4.29 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.50 us (65.5%)
Info: cfl dt = 0.0015160025130583185 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2747e+05 | 262144 | 1 | 3.168e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.22791029556468 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.768878017309308, dt = 0.0015160025130583185
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.80 us (2.2%)
patch tree reduce : 1.77 us (0.6%)
gen split merge : 970.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.51 us (0.5%)
LB compute : 284.62 us (92.8%)
LB move op cnt : 0
LB apply : 4.65 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.46 us (64.3%)
Info: cfl dt = 0.0015159376219887508 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.1115e+05 | 262144 | 1 | 3.232e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.887423496231893 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.7703940198223664, dt = 0.0015159376219887508
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.79 us (2.5%)
patch tree reduce : 1.81 us (0.7%)
gen split merge : 991.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.59 us (0.6%)
LB compute : 254.24 us (92.3%)
LB move op cnt : 0
LB apply : 4.04 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.54 us (67.9%)
Info: cfl dt = 0.0015158760882831095 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2405e+05 | 262144 | 1 | 3.181e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.15520516414897 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.7719099574443553, dt = 0.0015158760882831095
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.99 us (2.5%)
patch tree reduce : 1.80 us (0.7%)
gen split merge : 1.12 us (0.4%)
split / merge op : 0/0
apply split merge : 1.44 us (0.5%)
LB compute : 252.06 us (91.9%)
LB move op cnt : 0
LB apply : 4.18 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.46 us (67.3%)
Info: cfl dt = 0.0015158177607736908 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.4451e+05 | 262144 | 1 | 3.104e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.58039449311622 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.7734258335326385, dt = 0.0015158177607736908
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.67 us (2.1%)
patch tree reduce : 1.73 us (0.6%)
gen split merge : 951.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.63 us (0.5%)
LB compute : 291.44 us (93.1%)
LB move op cnt : 0
LB apply : 4.06 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.54 us (68.0%)
Info: cfl dt = 0.001515762492856966 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2646e+05 | 262144 | 1 | 3.172e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.204092709332155 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.774941651293412, dt = 0.001515762492856966
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.80 us (2.3%)
patch tree reduce : 1.68 us (0.6%)
gen split merge : 890.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.43 us (0.5%)
LB compute : 268.89 us (92.6%)
LB move op cnt : 0
LB apply : 3.92 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.49 us (65.2%)
Info: cfl dt = 0.001515710174146698 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.3076e+05 | 262144 | 1 | 3.155e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.29303860356468 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.776457413786269, dt = 0.001515710174146698
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.98 us (2.6%)
patch tree reduce : 1.88 us (0.7%)
gen split merge : 971.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.42 us (0.5%)
LB compute : 246.86 us (91.8%)
LB move op cnt : 0
LB apply : 4.24 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.37 us (65.0%)
Info: cfl dt = 0.0015156607638206285 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.3530e+05 | 262144 | 1 | 3.138e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.386861931781088 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.7779731239604155, dt = 0.0001518760395846641
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.85 us (2.6%)
patch tree reduce : 1.73 us (0.6%)
gen split merge : 1.01 us (0.4%)
split / merge op : 0/0
apply split merge : 1.29 us (0.5%)
LB compute : 245.31 us (92.0%)
LB move op cnt : 0
LB apply : 4.24 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.53 us (65.7%)
Info: cfl dt = 0.001515654798420528 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.6857e+05 | 262144 | 1 | 3.411e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.603007351101832 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 600.721991824 (s) [Godunov][rank=0]
Info: dump to _to_trash/ramses_kh/periodic_0022.vtk [VTK Dump][rank=0]
- took 31.69 ms, bandwidth = 1.29 GB/s
amr::Godunov: t = 2.778125, dt = 0.001515654798420528
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.07 us (2.2%)
patch tree reduce : 2.08 us (0.7%)
gen split merge : 1.05 us (0.3%)
split / merge op : 0/0
apply split merge : 1.37 us (0.4%)
LB compute : 293.88 us (93.0%)
LB move op cnt : 0
LB apply : 4.37 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.50 us (64.6%)
Info: cfl dt = 0.001515612485924598 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2493e+05 | 262144 | 1 | 3.178e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.170387034372883 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.7796406547984205, dt = 0.001515612485924598
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.64 us (2.4%)
patch tree reduce : 1.93 us (0.6%)
gen split merge : 920.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.46 us (0.5%)
LB compute : 293.04 us (92.7%)
LB move op cnt : 0
LB apply : 4.35 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.63 us (67.9%)
Info: cfl dt = 0.0015155710893806562 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 6.9315e+05 | 262144 | 1 | 3.782e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.427110921776196 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.781156267284345, dt = 0.0015155710893806562
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.79 us (2.2%)
patch tree reduce : 1.89 us (0.6%)
gen split merge : 988.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.48 us (0.5%)
LB compute : 290.46 us (92.8%)
LB move op cnt : 0
LB apply : 4.49 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.51 us (66.3%)
Info: cfl dt = 0.0015155316666558966 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2193e+05 | 262144 | 1 | 3.189e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.107082963881492 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.7826718383737257, dt = 0.0015155316666558966
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.80 us (2.6%)
patch tree reduce : 1.70 us (0.6%)
gen split merge : 1.10 us (0.4%)
split / merge op : 0/0
apply split merge : 1.50 us (0.6%)
LB compute : 243.56 us (91.6%)
LB move op cnt : 0
LB apply : 4.75 us (1.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.55 us (65.8%)
Info: cfl dt = 0.0015154954372760033 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2781e+05 | 262144 | 1 | 3.167e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.228836309742437 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.7841873700403816, dt = 0.0015154954372760033
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.94 us (2.6%)
patch tree reduce : 1.86 us (0.7%)
gen split merge : 1.03 us (0.4%)
split / merge op : 0/0
apply split merge : 1.35 us (0.5%)
LB compute : 243.22 us (91.7%)
LB move op cnt : 0
LB apply : 4.10 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.59 us (66.6%)
Info: cfl dt = 0.0015154634694379218 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2674e+05 | 262144 | 1 | 3.171e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.206347940341193 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.7857028654776577, dt = 0.0015154634694379218
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.94 us (2.6%)
patch tree reduce : 1.79 us (0.7%)
gen split merge : 947.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.38 us (0.5%)
LB compute : 242.90 us (91.7%)
LB move op cnt : 0
LB apply : 4.11 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.44 us (66.2%)
Info: cfl dt = 0.0015154364686595725 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2462e+05 | 262144 | 1 | 3.179e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.161779455432704 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.7872183289470955, dt = 0.0015154364686595725
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.61 us (2.5%)
patch tree reduce : 1.70 us (0.6%)
gen split merge : 1.07 us (0.4%)
split / merge op : 0/0
apply split merge : 1.76 us (0.7%)
LB compute : 245.89 us (91.7%)
LB move op cnt : 0
LB apply : 4.55 us (1.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.88 us (63.7%)
Info: cfl dt = 0.0015154172553927796 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2983e+05 | 262144 | 1 | 3.159e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.269964068226976 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.788733765415755, dt = 0.0015154172553927796
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.68 us (2.5%)
patch tree reduce : 1.82 us (0.7%)
gen split merge : 938.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.56 us (0.6%)
LB compute : 247.96 us (91.9%)
LB move op cnt : 0
LB apply : 4.08 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.47 us (67.4%)
Info: cfl dt = 0.001515406187162554 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2192e+05 | 262144 | 1 | 3.189e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.105078503560357 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.7902491826711477, dt = 0.001515406187162554
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.68 us (2.9%)
patch tree reduce : 1.94 us (0.7%)
gen split merge : 940.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.32 us (0.5%)
LB compute : 237.07 us (91.0%)
LB move op cnt : 0
LB apply : 4.41 us (1.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.44 us (65.2%)
Info: cfl dt = 0.0015154020704280897 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2439e+05 | 262144 | 1 | 3.180e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.156344474951688 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.7917645888583102, dt = 0.0015154020704280897
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.71 us (2.5%)
patch tree reduce : 1.65 us (0.6%)
gen split merge : 942.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.45 us (0.5%)
LB compute : 245.17 us (91.9%)
LB move op cnt : 0
LB apply : 3.99 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.41 us (65.1%)
Info: cfl dt = 0.0015154044362668028 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.5341e+05 | 262144 | 1 | 3.072e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.760115308487947 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.7932799909287382, dt = 0.0015154044362668028
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.86 us (2.6%)
patch tree reduce : 1.97 us (0.7%)
gen split merge : 1.04 us (0.4%)
split / merge op : 0/0
apply split merge : 1.39 us (0.5%)
LB compute : 240.90 us (91.5%)
LB move op cnt : 0
LB apply : 4.15 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.79 us (64.6%)
Info: cfl dt = 0.0015154131569589267 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2228e+05 | 262144 | 1 | 3.188e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.11240495558698 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.794795395365005, dt = 0.0015154131569589267
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.55 us (2.4%)
patch tree reduce : 1.86 us (0.7%)
gen split merge : 1.22 us (0.4%)
split / merge op : 0/0
apply split merge : 1.56 us (0.6%)
LB compute : 253.98 us (91.7%)
LB move op cnt : 0
LB apply : 4.59 us (1.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.51 us (66.5%)
Info: cfl dt = 0.0015154282829658314 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.3249e+05 | 262144 | 1 | 3.149e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.32494094287617 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.7963108085219637, dt = 0.0015154282829658314
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.60 us (2.4%)
patch tree reduce : 1.75 us (0.6%)
gen split merge : 955.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.52 us (0.6%)
LB compute : 251.74 us (92.0%)
LB move op cnt : 0
LB apply : 4.18 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.41 us (65.1%)
Info: cfl dt = 0.0015154498256837413 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2247e+05 | 262144 | 1 | 3.187e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.116691707035358 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.7978262368049296, dt = 0.0015154498256837413
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.78 us (2.4%)
patch tree reduce : 1.86 us (0.7%)
gen split merge : 954.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.39 us (0.5%)
LB compute : 254.93 us (92.1%)
LB move op cnt : 0
LB apply : 4.13 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.48 us (67.7%)
Info: cfl dt = 0.0015154776859089049 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2625e+05 | 262144 | 1 | 3.173e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.195572764246833 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.7993416866306133, dt = 0.0015154776859089049
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.60 us (2.5%)
patch tree reduce : 1.80 us (0.7%)
gen split merge : 1.25 us (0.5%)
split / merge op : 0/0
apply split merge : 1.53 us (0.6%)
LB compute : 241.05 us (91.5%)
LB move op cnt : 0
LB apply : 4.49 us (1.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.41 us (66.5%)
Info: cfl dt = 0.0015155117294608509 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2076e+05 | 262144 | 1 | 3.194e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.08149922589392 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.8008571643165223, dt = 0.0015155117294608509
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.11 us (2.8%)
patch tree reduce : 1.95 us (0.8%)
gen split merge : 918.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.40 us (0.5%)
LB compute : 233.73 us (91.3%)
LB move op cnt : 0
LB apply : 4.41 us (1.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.50 us (65.2%)
Info: cfl dt = 0.0015155517915075266 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.1897e+05 | 262144 | 1 | 3.201e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.044749287524848 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.8023726760459833, dt = 0.0015155517915075266
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.68 us (2.6%)
patch tree reduce : 1.76 us (0.7%)
gen split merge : 1.10 us (0.4%)
split / merge op : 0/0
apply split merge : 1.57 us (0.6%)
LB compute : 234.67 us (91.4%)
LB move op cnt : 0
LB apply : 4.15 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.53 us (65.0%)
Info: cfl dt = 0.0015155976892007844 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2014e+05 | 262144 | 1 | 3.196e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.0695782278112 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.803888227837491, dt = 0.0015155976892007844
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.82 us (2.6%)
patch tree reduce : 1.81 us (0.7%)
gen split merge : 916.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.24 us (0.5%)
LB compute : 238.58 us (91.7%)
LB move op cnt : 0
LB apply : 4.09 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.38 us (65.6%)
Info: cfl dt = 0.0015156492588003058 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.6963e+05 | 262144 | 1 | 3.014e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.100024213492873 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.8054038255266915, dt = 0.0015156492588003058
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.27 us (2.8%)
patch tree reduce : 1.69 us (0.6%)
gen split merge : 968.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.68 us (0.6%)
LB compute : 237.37 us (91.3%)
LB move op cnt : 0
LB apply : 4.31 us (1.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.39 us (64.5%)
Info: cfl dt = 0.0015157064004577725 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2547e+05 | 262144 | 1 | 3.176e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.181483365562947 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.806919474785492, dt = 0.0015157064004577725
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.87 us (2.6%)
patch tree reduce : 1.77 us (0.7%)
gen split merge : 1.08 us (0.4%)
split / merge op : 0/0
apply split merge : 1.46 us (0.5%)
LB compute : 246.13 us (91.8%)
LB move op cnt : 0
LB apply : 3.95 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.52 us (66.7%)
Info: cfl dt = 0.0015157690833342307 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2984e+05 | 262144 | 1 | 3.159e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.273103866423558 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.8084351811859496, dt = 0.0015157690833342307
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.04 us (2.6%)
patch tree reduce : 2.23 us (0.8%)
gen split merge : 1.13 us (0.4%)
split / merge op : 0/0
apply split merge : 1.38 us (0.5%)
LB compute : 250.88 us (91.7%)
LB move op cnt : 0
LB apply : 4.11 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.46 us (64.8%)
Info: cfl dt = 0.0015158373365686067 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.4221e+05 | 262144 | 1 | 3.113e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.53135604047603 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.809950950269284, dt = 0.0015158373365686067
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.55 us (2.8%)
patch tree reduce : 1.69 us (0.6%)
gen split merge : 964.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.41 us (0.5%)
LB compute : 242.86 us (91.6%)
LB move op cnt : 0
LB apply : 3.96 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.73 us (63.5%)
Info: cfl dt = 0.0015159112432552087 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2915e+05 | 262144 | 1 | 3.162e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.26033581460939 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.8114667876058523, dt = 0.0015159112432552087
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.29 us (2.9%)
patch tree reduce : 1.75 us (0.7%)
gen split merge : 953.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.57 us (0.6%)
LB compute : 231.28 us (91.2%)
LB move op cnt : 0
LB apply : 4.03 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.36 us (66.2%)
Info: cfl dt = 0.0015159909236507922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2902e+05 | 262144 | 1 | 3.162e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.258375874852625 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.8129826988491073, dt = 0.0015159909236507922
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.75 us (2.6%)
patch tree reduce : 1.69 us (0.7%)
gen split merge : 926.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.69 us (0.7%)
LB compute : 234.47 us (91.4%)
LB move op cnt : 0
LB apply : 4.27 us (1.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.38 us (63.8%)
Info: cfl dt = 0.001516076527068507 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.3128e+05 | 262144 | 1 | 3.154e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.306343815495065 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.814498689772758, dt = 0.001516076527068507
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.19 us (2.4%)
patch tree reduce : 1.95 us (0.6%)
gen split merge : 889.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.52 us (0.5%)
LB compute : 281.22 us (92.5%)
LB move op cnt : 0
LB apply : 4.19 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.41 us (64.0%)
Info: cfl dt = 0.0015161682837895984 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.1943e+05 | 262144 | 1 | 3.199e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.06063630825236 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.8160147662998263, dt = 0.0015161682837895984
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.47 us (2.2%)
patch tree reduce : 1.77 us (0.6%)
gen split merge : 1.24 us (0.4%)
split / merge op : 0/0
apply split merge : 1.40 us (0.5%)
LB compute : 276.55 us (92.7%)
LB move op cnt : 0
LB apply : 3.71 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.35 us (64.2%)
Info: cfl dt = 0.0015162665352822283 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.1145e+05 | 262144 | 1 | 3.231e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.895432310546596 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.817530934583616, dt = 0.0015162665352822283
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.81 us (2.1%)
patch tree reduce : 1.83 us (0.6%)
gen split merge : 1.05 us (0.3%)
split / merge op : 0/0
apply split merge : 1.48 us (0.5%)
LB compute : 292.76 us (90.4%)
LB move op cnt : 0
LB apply : 4.00 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.67 us (64.1%)
Info: cfl dt = 0.001516371329525838 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.1948e+05 | 262144 | 1 | 3.199e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.06391063371244 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.8190472011188983, dt = 0.001516371329525838
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.69 us (2.1%)
patch tree reduce : 1.88 us (0.6%)
gen split merge : 904.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.36 us (0.4%)
LB compute : 295.85 us (93.1%)
LB move op cnt : 0
LB apply : 4.30 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.42 us (63.6%)
Info: cfl dt = 0.0015164827831204094 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.4656e+05 | 262144 | 1 | 3.097e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.628858481293477 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.820563572448424, dt = 0.0015164827831204094
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.72 us (2.0%)
patch tree reduce : 1.97 us (0.6%)
gen split merge : 1.00 us (0.3%)
split / merge op : 0/0
apply split merge : 1.43 us (0.4%)
LB compute : 312.15 us (93.4%)
LB move op cnt : 0
LB apply : 4.09 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.45 us (67.2%)
Info: cfl dt = 0.001516600703901376 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.5933e+05 | 262144 | 1 | 3.051e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.896174728497922 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.8220800552315444, dt = 0.001516600703901376
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.26 us (2.4%)
patch tree reduce : 1.96 us (0.7%)
gen split merge : 1.03 us (0.3%)
split / merge op : 0/0
apply split merge : 1.20 us (0.4%)
LB compute : 275.23 us (92.4%)
LB move op cnt : 0
LB apply : 4.47 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.47 us (64.9%)
Info: cfl dt = 0.0015165923007979926 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.5888e+05 | 262144 | 1 | 3.454e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.805446037579374 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.8235966559354457, dt = 0.0015165923007979926
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.79 us (2.5%)
patch tree reduce : 1.70 us (0.6%)
gen split merge : 953.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.42 us (0.5%)
LB compute : 248.57 us (92.0%)
LB move op cnt : 0
LB apply : 4.16 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.50 us (66.3%)
Info: cfl dt = 0.0015164531113504764 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.4507e+05 | 262144 | 1 | 3.102e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.60039469006409 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.8251132482362435, dt = 0.0015164531113504764
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.11 us (2.3%)
patch tree reduce : 1.66 us (0.5%)
gen split merge : 977.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.63 us (0.5%)
LB compute : 283.77 us (92.7%)
LB move op cnt : 0
LB apply : 4.15 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.48 us (65.2%)
Info: cfl dt = 0.0015163162704450856 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 6.9378e+05 | 262144 | 1 | 3.779e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.448116940698789 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.826629701347594, dt = 0.0015163162704450856
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.54 us (2.3%)
patch tree reduce : 1.61 us (0.6%)
gen split merge : 1.06 us (0.4%)
split / merge op : 0/0
apply split merge : 1.56 us (0.6%)
LB compute : 261.39 us (92.4%)
LB move op cnt : 0
LB apply : 4.34 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.36 us (65.2%)
Info: cfl dt = 0.0015161815822398016 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.0235e+05 | 262144 | 1 | 3.267e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.707625592375315 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.828146017618039, dt = 0.0015161815822398016
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.74 us (2.2%)
patch tree reduce : 1.93 us (0.6%)
gen split merge : 957.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.42 us (0.5%)
LB compute : 282.08 us (92.9%)
LB move op cnt : 0
LB apply : 3.96 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.44 us (64.3%)
Info: cfl dt = 0.0015160489409107366 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.9155e+05 | 262144 | 1 | 3.312e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.48127452215655 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.829662199200279, dt = 0.0015160489409107366
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.89 us (2.5%)
patch tree reduce : 1.82 us (0.6%)
gen split merge : 966.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.45 us (0.5%)
LB compute : 259.79 us (92.4%)
LB move op cnt : 0
LB apply : 4.05 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.69 us (69.1%)
Info: cfl dt = 0.0015159183217066012 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2381e+05 | 262144 | 1 | 3.182e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.15152807079781 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.83117824814119, dt = 0.0015159183217066012
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.66 us (2.6%)
patch tree reduce : 1.67 us (0.6%)
gen split merge : 878.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.37 us (0.5%)
LB compute : 238.99 us (91.6%)
LB move op cnt : 0
LB apply : 4.62 us (1.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.35 us (62.5%)
Info: cfl dt = 0.0015157897719186757 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.4988e+05 | 262144 | 1 | 3.084e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.692704370090173 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.8326941664628964, dt = 0.0015157897719186757
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.65 us (3.0%)
patch tree reduce : 1.80 us (0.7%)
gen split merge : 1.04 us (0.4%)
split / merge op : 0/0
apply split merge : 1.51 us (0.6%)
LB compute : 233.94 us (90.8%)
LB move op cnt : 0
LB apply : 4.43 us (1.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.45 us (65.2%)
Info: cfl dt = 0.0015156634206127252 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2603e+05 | 262144 | 1 | 3.174e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.1947097157872 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.834209956234815, dt = 0.0015156634206127252
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.92 us (2.7%)
patch tree reduce : 2.03 us (0.8%)
gen split merge : 949.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.51 us (0.6%)
LB compute : 237.22 us (91.5%)
LB move op cnt : 0
LB apply : 4.15 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.82 us (62.9%)
Info: cfl dt = 0.0015155395593065399 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.4959e+05 | 262144 | 1 | 3.086e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.683864625499563 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.8357256196554275, dt = 0.0015155395593065399
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.86 us (2.3%)
patch tree reduce : 1.84 us (0.6%)
gen split merge : 956.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.30 us (0.4%)
LB compute : 277.41 us (92.7%)
LB move op cnt : 0
LB apply : 4.13 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.42 us (65.8%)
Info: cfl dt = 0.0015154185088834657 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.9750e+05 | 262144 | 1 | 3.287e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.598234621922533 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.837241159214734, dt = 0.0015154185088834657
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.95 us (2.7%)
patch tree reduce : 1.84 us (0.7%)
gen split merge : 1.12 us (0.4%)
split / merge op : 0/0
apply split merge : 1.35 us (0.5%)
LB compute : 237.34 us (91.5%)
LB move op cnt : 0
LB apply : 4.07 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.42 us (65.3%)
Info: cfl dt = 0.00151530060909324 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.1315e+05 | 262144 | 1 | 3.224e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.922542241816746 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.8387565777236174, dt = 0.00151530060909324
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.13 us (2.4%)
patch tree reduce : 1.81 us (0.6%)
gen split merge : 1.14 us (0.4%)
split / merge op : 0/0
apply split merge : 1.79 us (0.6%)
LB compute : 279.66 us (92.5%)
LB move op cnt : 0
LB apply : 4.07 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.54 us (66.0%)
Info: cfl dt = 0.0015151861934185747 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2778e+05 | 262144 | 1 | 3.167e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.22576383068079 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.8402718783327106, dt = 0.0015151861934185747
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.92 us (2.2%)
patch tree reduce : 1.69 us (0.5%)
gen split merge : 1.02 us (0.3%)
split / merge op : 0/0
apply split merge : 1.33 us (0.4%)
LB compute : 288.77 us (93.0%)
LB move op cnt : 0
LB apply : 4.04 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.70 us (68.0%)
Info: cfl dt = 0.001515075582154235 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.3578e+05 | 262144 | 1 | 3.137e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.39076174032137 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.841787064526129, dt = 0.001515075582154235
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.06 us (2.3%)
patch tree reduce : 1.84 us (0.6%)
gen split merge : 955.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.55 us (0.5%)
LB compute : 289.33 us (92.8%)
LB move op cnt : 0
LB apply : 4.56 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.38 us (63.0%)
Info: cfl dt = 0.0015149690623992111 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.1944e+05 | 262144 | 1 | 3.199e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.049560122834624 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.843302140108283, dt = 0.0015149690623992111
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.05 us (2.7%)
patch tree reduce : 1.95 us (0.8%)
gen split merge : 1.03 us (0.4%)
split / merge op : 0/0
apply split merge : 1.40 us (0.5%)
LB compute : 237.16 us (91.4%)
LB move op cnt : 0
LB apply : 3.92 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.43 us (66.5%)
Info: cfl dt = 0.0015148668466845676 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.5512e+05 | 262144 | 1 | 3.066e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.790726782265867 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.844817109170682, dt = 0.0015148668466845676
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.65 us (2.5%)
patch tree reduce : 1.93 us (0.7%)
gen split merge : 1.07 us (0.4%)
split / merge op : 0/0
apply split merge : 1.32 us (0.5%)
LB compute : 240.42 us (91.7%)
LB move op cnt : 0
LB apply : 4.28 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.41 us (63.4%)
Info: cfl dt = 0.0015147690522014081 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2892e+05 | 262144 | 1 | 3.162e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.24450146619429 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.8463319760173666, dt = 0.0015147690522014081
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.84 us (2.2%)
patch tree reduce : 1.83 us (0.6%)
gen split merge : 841.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.91 us (0.6%)
LB compute : 285.69 us (92.8%)
LB move op cnt : 0
LB apply : 4.05 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.72 us (63.6%)
Info: cfl dt = 0.0015146756999455584 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.6536e+05 | 262144 | 1 | 3.029e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.001381590310498 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.847846745069568, dt = 0.0015146756999455584
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.56 us (2.2%)
patch tree reduce : 1.81 us (0.6%)
gen split merge : 978.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.84 us (0.6%)
LB compute : 277.15 us (92.3%)
LB move op cnt : 0
LB apply : 4.90 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.80 us (64.3%)
Info: cfl dt = 0.0015145867305857757 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.1978e+05 | 262144 | 1 | 3.198e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.052103854261 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.8493614207695135, dt = 0.0015145867305857757
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.37 us (2.0%)
patch tree reduce : 2.20 us (0.7%)
gen split merge : 981.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.56 us (0.5%)
LB compute : 300.28 us (93.1%)
LB move op cnt : 0
LB apply : 4.38 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.47 us (65.2%)
Info: cfl dt = 0.0015145020634624315 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.1757e+05 | 262144 | 1 | 3.206e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.00518144021264 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.850876007500099, dt = 0.0015145020634624315
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.69 us (2.5%)
patch tree reduce : 1.83 us (0.7%)
gen split merge : 975.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.67 us (0.6%)
LB compute : 242.87 us (91.6%)
LB move op cnt : 0
LB apply : 4.52 us (1.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.73 us (63.7%)
Info: cfl dt = 0.00151442159614864 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.7142e+05 | 262144 | 1 | 3.398e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.044310523487404 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.8523905095635618, dt = 0.00151442159614864
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.30 us (2.0%)
patch tree reduce : 1.64 us (0.5%)
gen split merge : 987.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.70 us (0.5%)
LB compute : 292.94 us (93.1%)
LB move op cnt : 0
LB apply : 4.18 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.42 us (63.4%)
Info: cfl dt = 0.0015143452461225705 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.7043e+05 | 262144 | 1 | 3.403e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.02298278847675 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.8539049311597102, dt = 0.0015143452461225705
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.86 us (2.3%)
patch tree reduce : 1.69 us (0.6%)
gen split merge : 873.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.55 us (0.5%)
LB compute : 273.26 us (92.7%)
LB move op cnt : 0
LB apply : 3.95 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.35 us (63.2%)
Info: cfl dt = 0.001514272915143187 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.2471e+05 | 262144 | 1 | 3.617e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.07142394918907 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.855419276405833, dt = 0.001514272915143187
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.92 us (2.7%)
patch tree reduce : 1.72 us (0.7%)
gen split merge : 812.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.70 us (0.7%)
LB compute : 233.75 us (91.6%)
LB move op cnt : 0
LB apply : 4.00 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.41 us (65.9%)
Info: cfl dt = 0.0015142045189706036 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.4426e+05 | 262144 | 1 | 3.105e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.556701984988 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.856933549320976, dt = 0.0015142045189706036
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.30 us (2.8%)
patch tree reduce : 1.81 us (0.7%)
gen split merge : 1.12 us (0.4%)
split / merge op : 0/0
apply split merge : 1.58 us (0.6%)
LB compute : 235.77 us (91.3%)
LB move op cnt : 0
LB apply : 4.03 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.42 us (63.8%)
Info: cfl dt = 0.0015141400280183868 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.4247e+05 | 262144 | 1 | 3.112e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.518686841748774 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.8584477538399464, dt = 0.0015141400280183868
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.63 us (2.1%)
patch tree reduce : 1.63 us (0.5%)
gen split merge : 1.08 us (0.3%)
split / merge op : 0/0
apply split merge : 1.60 us (0.5%)
LB compute : 288.21 us (92.9%)
LB move op cnt : 0
LB apply : 4.47 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.43 us (65.3%)
Info: cfl dt = 0.0015140794981288535 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.3804e+05 | 262144 | 1 | 3.128e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.425858328585498 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.8599618938679647, dt = 0.0015140794981288535
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.55 us (2.2%)
patch tree reduce : 1.80 us (0.6%)
gen split merge : 882.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.65 us (0.6%)
LB compute : 273.74 us (92.7%)
LB move op cnt : 0
LB apply : 4.05 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.40 us (63.8%)
Info: cfl dt = 0.001514023034559368 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.1167e+05 | 262144 | 1 | 3.230e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.876860209739746 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.8614759733660935, dt = 0.001514023034559368
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.20 us (2.4%)
patch tree reduce : 1.87 us (0.6%)
gen split merge : 989.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.40 us (0.5%)
LB compute : 272.76 us (92.4%)
LB move op cnt : 0
LB apply : 4.32 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.46 us (66.6%)
Info: cfl dt = 0.0015139707561729894 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.3220e+05 | 262144 | 1 | 3.150e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.302964558423085 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.862989996400653, dt = 0.0015139707561729894
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.64 us (2.6%)
patch tree reduce : 1.74 us (0.6%)
gen split merge : 989.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.37 us (0.5%)
LB compute : 271.43 us (92.3%)
LB move op cnt : 0
LB apply : 4.41 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.76 us (65.6%)
Info: cfl dt = 0.001513922771154085 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.7982e+05 | 262144 | 1 | 3.362e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.2134488408874 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.8645039671568258, dt = 0.001513922771154085
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.98 us (2.7%)
patch tree reduce : 1.97 us (0.8%)
gen split merge : 1.05 us (0.4%)
split / merge op : 0/0
apply split merge : 1.47 us (0.6%)
LB compute : 237.86 us (91.3%)
LB move op cnt : 0
LB apply : 4.26 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.45 us (64.3%)
Info: cfl dt = 0.0015138791660746398 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.4138e+05 | 262144 | 1 | 3.116e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.49277679601359 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.86601788992798, dt = 0.0015138791660746398
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.48 us (2.5%)
patch tree reduce : 1.63 us (0.6%)
gen split merge : 1.01 us (0.4%)
split / merge op : 0/0
apply split merge : 1.57 us (0.6%)
LB compute : 236.60 us (91.7%)
LB move op cnt : 0
LB apply : 4.17 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.40 us (66.2%)
Info: cfl dt = 0.0015138400045259285 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.3591e+05 | 262144 | 1 | 3.136e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.378510043102914 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.8675317690940547, dt = 0.0015138400045259285
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.31 us (2.9%)
patch tree reduce : 1.85 us (0.7%)
gen split merge : 899.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.47 us (0.6%)
LB compute : 231.08 us (91.0%)
LB move op cnt : 0
LB apply : 4.67 us (1.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.42 us (65.1%)
Info: cfl dt = 0.0015138053330645185 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.5100e+05 | 262144 | 1 | 3.080e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.69170712168985 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.8690456090985808, dt = 0.0015138053330645185
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.12 us (2.6%)
patch tree reduce : 1.87 us (0.7%)
gen split merge : 953.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.46 us (0.5%)
LB compute : 247.86 us (91.7%)
LB move op cnt : 0
LB apply : 4.25 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.30 us (63.0%)
Info: cfl dt = 0.0015137751903305779 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2078e+05 | 262144 | 1 | 3.194e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.063224156535156 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.870559414431645, dt = 0.0015137751903305779
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.81 us (2.9%)
patch tree reduce : 1.76 us (0.6%)
gen split merge : 1.10 us (0.4%)
split / merge op : 0/0
apply split merge : 1.41 us (0.5%)
LB compute : 248.94 us (91.5%)
LB move op cnt : 0
LB apply : 4.07 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.50 us (64.7%)
Info: cfl dt = 0.001513749610190356 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.6831e+05 | 262144 | 1 | 3.019e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.050819533947156 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.8720731896219758, dt = 0.001513749610190356
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.50 us (2.4%)
patch tree reduce : 1.86 us (0.6%)
gen split merge : 992.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.44 us (0.5%)
LB compute : 284.48 us (92.6%)
LB move op cnt : 0
LB apply : 4.28 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.43 us (64.2%)
Info: cfl dt = 0.0015137286328372654 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.1102e+05 | 262144 | 1 | 3.232e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.859653926286256 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.8735869392321662, dt = 0.0015137286328372654
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.77 us (2.1%)
patch tree reduce : 1.81 us (0.6%)
gen split merge : 1.02 us (0.3%)
split / merge op : 0/0
apply split merge : 1.48 us (0.5%)
LB compute : 300.41 us (93.2%)
LB move op cnt : 0
LB apply : 4.07 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.62 us (68.6%)
Info: cfl dt = 0.0015137123003179525 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.3005e+05 | 262144 | 1 | 3.158e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.255079008064808 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.8751006678650035, dt = 0.0015137123003179525
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.05 us (2.6%)
patch tree reduce : 1.89 us (0.7%)
gen split merge : 886.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.55 us (0.6%)
LB compute : 248.73 us (91.9%)
LB move op cnt : 0
LB apply : 4.08 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.36 us (64.9%)
Info: cfl dt = 0.0015137006515755283 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.1837e+05 | 262144 | 1 | 3.203e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.012075547024445 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.8766143801653214, dt = 0.0015137006515755283
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.60 us (2.6%)
patch tree reduce : 1.78 us (0.7%)
gen split merge : 1.05 us (0.4%)
split / merge op : 0/0
apply split merge : 1.47 us (0.6%)
LB compute : 236.57 us (91.7%)
LB move op cnt : 0
LB apply : 3.97 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.41 us (66.2%)
Info: cfl dt = 0.0015136937202307778 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.3184e+05 | 262144 | 1 | 3.151e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.291966547199227 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.878128080816897, dt = 0.0015136937202307778
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.45 us (2.3%)
patch tree reduce : 1.69 us (0.6%)
gen split merge : 770.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.49 us (0.5%)
LB compute : 259.08 us (92.1%)
LB move op cnt : 0
LB apply : 4.28 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.59 us (68.0%)
Info: cfl dt = 0.0015136915316584026 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.1930e+05 | 262144 | 1 | 3.200e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.03121784948869 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.8796417745371277, dt = 0.0015136915316584026
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.66 us (2.6%)
patch tree reduce : 1.63 us (0.6%)
gen split merge : 989.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.55 us (0.6%)
LB compute : 237.59 us (91.6%)
LB move op cnt : 0
LB apply : 4.08 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.43 us (66.4%)
Info: cfl dt = 0.0015136940950797359 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.3497e+05 | 262144 | 1 | 3.140e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.356862903262048 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.881155466068786, dt = 0.0015136940950797359
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.68 us (2.3%)
patch tree reduce : 1.84 us (0.6%)
gen split merge : 958.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.80 us (0.6%)
LB compute : 268.56 us (92.3%)
LB move op cnt : 0
LB apply : 4.14 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.60 us (65.5%)
Info: cfl dt = 0.0015137013934479256 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.5827e+05 | 262144 | 1 | 3.054e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.84122275330152 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.8826691601638657, dt = 0.0015137013934479256
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.69 us (2.6%)
patch tree reduce : 1.66 us (0.6%)
gen split merge : 1.18 us (0.5%)
split / merge op : 0/0
apply split merge : 1.31 us (0.5%)
LB compute : 236.52 us (91.6%)
LB move op cnt : 0
LB apply : 4.51 us (1.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.43 us (66.7%)
Info: cfl dt = 0.0015137133743153997 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2256e+05 | 262144 | 1 | 3.187e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.098999332709795 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.8841828615573135, dt = 0.0015137133743153997
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.91 us (2.3%)
patch tree reduce : 1.80 us (0.6%)
gen split merge : 926.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.53 us (0.5%)
LB compute : 274.09 us (92.4%)
LB move op cnt : 0
LB apply : 4.34 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.42 us (63.9%)
Info: cfl dt = 0.001513729999412867 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.3474e+05 | 262144 | 1 | 3.140e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.35227526785638 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.885696574931629, dt = 0.001513729999412867
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.87 us (2.6%)
patch tree reduce : 1.65 us (0.6%)
gen split merge : 1.10 us (0.4%)
split / merge op : 0/0
apply split merge : 1.36 us (0.5%)
LB compute : 239.08 us (91.6%)
LB move op cnt : 0
LB apply : 4.16 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.41 us (64.2%)
Info: cfl dt = 0.0015137511905417163 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2508e+05 | 262144 | 1 | 3.177e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.15175412511218 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.887210304931042, dt = 0.0015137511905417163
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.93 us (2.7%)
patch tree reduce : 1.64 us (0.6%)
gen split merge : 1.23 us (0.5%)
split / merge op : 0/0
apply split merge : 1.58 us (0.6%)
LB compute : 235.21 us (91.5%)
LB move op cnt : 0
LB apply : 4.18 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.43 us (63.9%)
Info: cfl dt = 0.0015137768389180083 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.6625e+05 | 262144 | 1 | 3.026e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.007880165333653 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.8887240561215837, dt = 0.0015137768389180083
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.98 us (2.3%)
patch tree reduce : 1.77 us (0.6%)
gen split merge : 1.07 us (0.3%)
split / merge op : 0/0
apply split merge : 1.51 us (0.5%)
LB compute : 286.44 us (92.8%)
LB move op cnt : 0
LB apply : 4.54 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.45 us (65.1%)
Info: cfl dt = 0.0015137627307265594 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2815e+05 | 262144 | 1 | 3.165e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.216147533506476 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.890237832960502, dt = 0.0015137627307265594
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.28 us (2.8%)
patch tree reduce : 1.70 us (0.7%)
gen split merge : 879.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.41 us (0.5%)
LB compute : 238.69 us (91.6%)
LB move op cnt : 0
LB apply : 4.07 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.38 us (61.1%)
Info: cfl dt = 0.001513748561952707 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.3089e+05 | 262144 | 1 | 3.155e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.27290409537861 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.8917515956912285, dt = 0.001513748561952707
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.38 us (2.3%)
patch tree reduce : 1.77 us (0.6%)
gen split merge : 999.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.63 us (0.6%)
LB compute : 258.18 us (92.2%)
LB move op cnt : 0
LB apply : 4.18 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.42 us (64.8%)
Info: cfl dt = 0.0015137384226942847 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2875e+05 | 262144 | 1 | 3.163e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.228134423601272 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.893265344253181, dt = 0.0015137384226942847
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.23 us (2.3%)
patch tree reduce : 1.63 us (0.5%)
gen split merge : 963.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.27 us (0.4%)
LB compute : 286.46 us (92.9%)
LB move op cnt : 0
LB apply : 4.01 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.38 us (64.7%)
Info: cfl dt = 0.0015137322163847082 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.3761e+05 | 262144 | 1 | 3.130e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.412364108030182 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.8947790826758752, dt = 0.0015137322163847082
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.64 us (2.5%)
patch tree reduce : 1.85 us (0.7%)
gen split merge : 1.00 us (0.4%)
split / merge op : 0/0
apply split merge : 1.55 us (0.6%)
LB compute : 240.46 us (91.6%)
LB move op cnt : 0
LB apply : 4.16 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.77 us (63.4%)
Info: cfl dt = 0.001513729871140335 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.1307e+05 | 262144 | 1 | 3.224e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.902010936103135 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.8962928148922598, dt = 0.001513729871140335
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.39 us (2.4%)
patch tree reduce : 1.77 us (0.7%)
gen split merge : 1.03 us (0.4%)
split / merge op : 0/0
apply split merge : 1.75 us (0.7%)
LB compute : 239.12 us (91.5%)
LB move op cnt : 0
LB apply : 4.42 us (1.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.42 us (62.7%)
Info: cfl dt = 0.0015137314541135028 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.4460e+05 | 262144 | 1 | 3.104e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.557510531779574 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.8978065447634003, dt = 0.0015137314541135028
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.84 us (3.0%)
patch tree reduce : 1.82 us (0.7%)
gen split merge : 970.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.35 us (0.5%)
LB compute : 235.77 us (91.1%)
LB move op cnt : 0
LB apply : 4.44 us (1.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.48 us (68.5%)
Info: cfl dt = 0.0015137365014985733 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.4302e+05 | 262144 | 1 | 3.110e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.5245477714336 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.8993202762175136, dt = 0.0015137365014985733
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.91 us (2.7%)
patch tree reduce : 1.74 us (0.7%)
gen split merge : 915.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.38 us (0.5%)
LB compute : 238.42 us (91.7%)
LB move op cnt : 0
LB apply : 4.15 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.32 us (62.0%)
Info: cfl dt = 0.001513745499904561 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.5934e+05 | 262144 | 1 | 3.051e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.863951727604963 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.900834012719012, dt = 0.001513745499904561
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.84 us (2.6%)
patch tree reduce : 1.70 us (0.7%)
gen split merge : 921.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.51 us (0.6%)
LB compute : 239.23 us (91.5%)
LB move op cnt : 0
LB apply : 4.28 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.53 us (69.0%)
Info: cfl dt = 0.0015137588155089644 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2987e+05 | 262144 | 1 | 3.159e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.251364401650136 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.9023477582189168, dt = 0.0015137588155089644
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.48 us (2.5%)
patch tree reduce : 1.71 us (0.7%)
gen split merge : 1.24 us (0.5%)
split / merge op : 0/0
apply split merge : 1.46 us (0.6%)
LB compute : 236.46 us (91.6%)
LB move op cnt : 0
LB apply : 4.11 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.74 us (63.7%)
Info: cfl dt = 0.001513776587949398 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.4575e+05 | 262144 | 1 | 3.100e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.58175340552909 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.9038615170344255, dt = 0.001513776587949398
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.63 us (2.4%)
patch tree reduce : 1.80 us (0.7%)
gen split merge : 1.01 us (0.4%)
split / merge op : 0/0
apply split merge : 1.27 us (0.5%)
LB compute : 253.44 us (92.1%)
LB move op cnt : 0
LB apply : 4.06 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.48 us (67.3%)
Info: cfl dt = 0.0015137987917873716 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2025e+05 | 262144 | 1 | 3.196e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.051888379588377 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.905375293622375, dt = 0.0015137987917873716
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.61 us (2.4%)
patch tree reduce : 1.71 us (0.6%)
gen split merge : 1.06 us (0.4%)
split / merge op : 0/0
apply split merge : 1.48 us (0.5%)
LB compute : 257.00 us (92.0%)
LB move op cnt : 0
LB apply : 4.36 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.44 us (67.1%)
Info: cfl dt = 0.0015138253851566198 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2450e+05 | 262144 | 1 | 3.179e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.140402595829556 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.9068890924141626, dt = 0.0015138253851566198
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.65 us (2.5%)
patch tree reduce : 1.85 us (0.6%)
gen split merge : 1.05 us (0.3%)
split / merge op : 0/0
apply split merge : 1.43 us (0.5%)
LB compute : 279.08 us (92.4%)
LB move op cnt : 0
LB apply : 4.15 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.38 us (63.0%)
Info: cfl dt = 0.001513856260233836 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.4886e+05 | 262144 | 1 | 3.088e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.647174972447495 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.9084029177993194, dt = 0.001513856260233836
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.31 us (2.7%)
patch tree reduce : 1.82 us (0.7%)
gen split merge : 1.06 us (0.4%)
split / merge op : 0/0
apply split merge : 1.47 us (0.5%)
LB compute : 247.75 us (91.7%)
LB move op cnt : 0
LB apply : 4.09 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.40 us (63.2%)
Info: cfl dt = 0.0015138910155625311 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.6111e+05 | 262144 | 1 | 3.044e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.902134322496547 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.9099167740595533, dt = 0.0004998926071135834
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.54 us (2.0%)
patch tree reduce : 1.77 us (0.6%)
gen split merge : 935.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.65 us (0.5%)
LB compute : 297.93 us (93.3%)
LB move op cnt : 0
LB apply : 4.13 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.42 us (66.1%)
Info: cfl dt = 0.0015139181142524397 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.3240e+05 | 262144 | 1 | 3.149e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5.714394646453819 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 629.2594157970001 (s) [Godunov][rank=0]
Info: dump to _to_trash/ramses_kh/periodic_0023.vtk [VTK Dump][rank=0]
- took 35.13 ms, bandwidth = 1.16 GB/s
amr::Godunov: t = 2.910416666666667, dt = 0.0015139181142524397
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 8.01 us (2.9%)
patch tree reduce : 1.95 us (0.7%)
gen split merge : 1.09 us (0.4%)
split / merge op : 0/0
apply split merge : 1.56 us (0.6%)
LB compute : 249.86 us (91.3%)
LB move op cnt : 0
LB apply : 4.42 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.62 us (70.4%)
Info: cfl dt = 0.0015139538468101474 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.3844e+05 | 262144 | 1 | 3.127e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.43159025724172 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.911930584780919, dt = 0.0015139538468101474
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.78 us (2.3%)
patch tree reduce : 1.75 us (0.6%)
gen split merge : 956.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.37 us (0.5%)
LB compute : 278.90 us (92.7%)
LB move op cnt : 0
LB apply : 4.17 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.60 us (69.0%)
Info: cfl dt = 0.0015139931391419466 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2326e+05 | 262144 | 1 | 3.184e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.116328707270405 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.9134445386277292, dt = 0.0015139931391419466
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.10 us (2.4%)
patch tree reduce : 1.90 us (0.6%)
gen split merge : 1.05 us (0.3%)
split / merge op : 0/0
apply split merge : 1.40 us (0.5%)
LB compute : 277.50 us (92.4%)
LB move op cnt : 0
LB apply : 4.26 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.54 us (65.8%)
Info: cfl dt = 0.0015140361469536182 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.6625e+05 | 262144 | 1 | 3.026e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.010630890174898 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.9149585317668714, dt = 0.0015140361469536182
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.74 us (2.2%)
patch tree reduce : 1.86 us (0.6%)
gen split merge : 1.01 us (0.3%)
split / merge op : 0/0
apply split merge : 1.43 us (0.5%)
LB compute : 283.05 us (92.9%)
LB move op cnt : 0
LB apply : 3.96 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.73 us (68.1%)
Info: cfl dt = 0.0015140829034040663 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2884e+05 | 262144 | 1 | 3.163e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.233258633210244 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.916472567913825, dt = 0.0015140829034040663
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.97 us (2.4%)
patch tree reduce : 1.66 us (0.6%)
gen split merge : 883.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.31 us (0.5%)
LB compute : 262.93 us (92.4%)
LB move op cnt : 0
LB apply : 4.05 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.48 us (66.4%)
Info: cfl dt = 0.001514133351716558 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.3674e+05 | 262144 | 1 | 3.133e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.39806506232983 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.917986650817229, dt = 0.001514133351716558
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.26 us (2.6%)
patch tree reduce : 1.95 us (0.7%)
gen split merge : 1.05 us (0.4%)
split / merge op : 0/0
apply split merge : 1.31 us (0.5%)
LB compute : 253.54 us (91.5%)
LB move op cnt : 0
LB apply : 4.44 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.52 us (66.4%)
Info: cfl dt = 0.0015141873541170585 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.7577e+05 | 262144 | 1 | 3.379e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.130939549593034 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.9195007841689455, dt = 0.0015141873541170585
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.99 us (2.3%)
patch tree reduce : 1.94 us (0.6%)
gen split merge : 998.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.41 us (0.5%)
LB compute : 278.72 us (92.7%)
LB move op cnt : 0
LB apply : 4.09 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.49 us (64.9%)
Info: cfl dt = 0.0015142447597728222 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.1369e+05 | 262144 | 1 | 3.222e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.920134931068713 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.9210149715230624, dt = 0.0015142447597728222
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.55 us (1.9%)
patch tree reduce : 1.80 us (0.5%)
gen split merge : 905.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.48 us (0.4%)
LB compute : 318.03 us (93.7%)
LB move op cnt : 0
LB apply : 4.16 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.56 us (67.9%)
Info: cfl dt = 0.0015143054200442497 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.1886e+05 | 262144 | 1 | 3.201e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.028209722066407 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.922529216282835, dt = 0.0015143054200442497
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.83 us (2.6%)
patch tree reduce : 1.62 us (0.6%)
gen split merge : 946.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.49 us (0.6%)
LB compute : 244.11 us (91.8%)
LB move op cnt : 0
LB apply : 4.34 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.48 us (67.1%)
Info: cfl dt = 0.001514369197344292 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.5573e+05 | 262144 | 1 | 3.063e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.79564850428646 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.9240435217028793, dt = 0.001514369197344292
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.88 us (2.4%)
patch tree reduce : 2.01 us (0.7%)
gen split merge : 891.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.56 us (0.6%)
LB compute : 258.27 us (91.9%)
LB move op cnt : 0
LB apply : 4.66 us (1.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.58 us (67.2%)
Info: cfl dt = 0.0015144359727453222 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.1873e+05 | 262144 | 1 | 3.202e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.02695651197124 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.925557890900224, dt = 0.0015144359727453222
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.54 us (2.5%)
patch tree reduce : 1.71 us (0.7%)
gen split merge : 916.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.47 us (0.6%)
LB compute : 240.14 us (91.7%)
LB move op cnt : 0
LB apply : 4.41 us (1.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.45 us (67.3%)
Info: cfl dt = 0.001514505655922173 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.7189e+05 | 262144 | 1 | 3.007e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.133266980071582 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.927072326872969, dt = 0.001514505655922173
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.90 us (2.7%)
patch tree reduce : 2.08 us (0.8%)
gen split merge : 897.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.29 us (0.5%)
LB compute : 234.38 us (91.5%)
LB move op cnt : 0
LB apply : 3.82 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.73 us (64.3%)
Info: cfl dt = 0.0015145781904667012 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2820e+05 | 262144 | 1 | 3.165e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.22533271814913 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.9285868325288913, dt = 0.0015145781904667012
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.38 us (2.7%)
patch tree reduce : 1.81 us (0.7%)
gen split merge : 946.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.27 us (0.5%)
LB compute : 246.36 us (91.6%)
LB move op cnt : 0
LB apply : 4.37 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.46 us (65.8%)
Info: cfl dt = 0.0015146535560271132 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.3736e+05 | 262144 | 1 | 3.131e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.41678577498325 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.930101410719358, dt = 0.0015146535560271132
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.72 us (2.5%)
patch tree reduce : 1.87 us (0.7%)
gen split merge : 929.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.57 us (0.6%)
LB compute : 250.41 us (91.9%)
LB move op cnt : 0
LB apply : 4.22 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.56 us (66.7%)
Info: cfl dt = 0.0015147321452182209 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3896e+05 | 262144 | 1 | 3.547e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.370733939441488 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.9316160642753855, dt = 0.0015147321452182209
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.54 us (2.2%)
patch tree reduce : 1.74 us (0.6%)
gen split merge : 967.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.64 us (0.5%)
LB compute : 282.07 us (92.8%)
LB move op cnt : 0
LB apply : 4.24 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.41 us (66.0%)
Info: cfl dt = 0.0015148140411841418 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.6038e+05 | 262144 | 1 | 3.047e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.89727029157697 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.9331307964206035, dt = 0.0015148140411841418
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.38 us (2.4%)
patch tree reduce : 1.82 us (0.7%)
gen split merge : 948.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.61 us (0.6%)
LB compute : 239.52 us (91.8%)
LB move op cnt : 0
LB apply : 4.03 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.67 us (62.6%)
Info: cfl dt = 0.0015148992385352268 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2631e+05 | 262144 | 1 | 3.172e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.18965471286722 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.9346456104617875, dt = 0.0015148992385352268
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.47 us (2.8%)
patch tree reduce : 2.31 us (0.9%)
gen split merge : 1.00 us (0.4%)
split / merge op : 0/0
apply split merge : 1.47 us (0.6%)
LB compute : 244.13 us (91.5%)
LB move op cnt : 0
LB apply : 3.93 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.45 us (65.6%)
Info: cfl dt = 0.0015149877942888155 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.4439e+05 | 262144 | 1 | 3.105e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.56658653827072 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.936160509700323, dt = 0.0015149877942888155
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.72 us (2.2%)
patch tree reduce : 1.79 us (0.6%)
gen split merge : 1.05 us (0.3%)
split / merge op : 0/0
apply split merge : 1.44 us (0.5%)
LB compute : 285.50 us (92.7%)
LB move op cnt : 0
LB apply : 4.09 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.45 us (63.1%)
Info: cfl dt = 0.00151507978928987 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.9214e+05 | 262144 | 1 | 3.309e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.480528842976135 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.9376754974946118, dt = 0.00151507978928987
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.04 us (2.6%)
patch tree reduce : 1.94 us (0.7%)
gen split merge : 10.43 us (3.8%)
split / merge op : 0/0
apply split merge : 1.58 us (0.6%)
LB compute : 239.64 us (88.2%)
LB move op cnt : 0
LB apply : 4.36 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.49 us (66.0%)
Info: cfl dt = 0.0015151753049182644 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2586e+05 | 262144 | 1 | 3.174e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.183123792992937 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.9391905772839015, dt = 0.0015151753049182644
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.84 us (2.5%)
patch tree reduce : 1.79 us (0.7%)
gen split merge : 1.09 us (0.4%)
split / merge op : 0/0
apply split merge : 1.47 us (0.5%)
LB compute : 248.51 us (91.8%)
LB move op cnt : 0
LB apply : 4.25 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.81 us (65.2%)
Info: cfl dt = 0.0015152744181629663 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2699e+05 | 262144 | 1 | 3.170e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.20777549186201 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.9407057525888196, dt = 0.0015152744181629663
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.92 us (2.3%)
patch tree reduce : 1.88 us (0.6%)
gen split merge : 1.02 us (0.3%)
split / merge op : 0/0
apply split merge : 1.50 us (0.5%)
LB compute : 275.35 us (92.5%)
LB move op cnt : 0
LB apply : 4.63 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.51 us (66.2%)
Info: cfl dt = 0.0015153261504207989 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2703e+05 | 262144 | 1 | 3.170e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.209700125868267 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.9422210270069824, dt = 0.0015153261504207989
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.53 us (2.5%)
patch tree reduce : 1.71 us (0.6%)
gen split merge : 947.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.32 us (0.4%)
LB compute : 275.57 us (92.5%)
LB move op cnt : 0
LB apply : 4.33 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.54 us (66.0%)
Info: cfl dt = 0.0015153658068953304 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.1859e+05 | 262144 | 1 | 3.202e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.03482880349916 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.9437363531574032, dt = 0.0015153658068953304
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.86 us (2.4%)
patch tree reduce : 1.83 us (0.6%)
gen split merge : 1.02 us (0.4%)
split / merge op : 0/0
apply split merge : 1.42 us (0.5%)
LB compute : 260.63 us (92.2%)
LB move op cnt : 0
LB apply : 4.02 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.52 us (68.0%)
Info: cfl dt = 0.0015154101903143299 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.7114e+05 | 262144 | 1 | 3.009e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.128725612039453 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.9452517189642986, dt = 0.0015154101903143299
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.41 us (2.2%)
patch tree reduce : 1.72 us (0.6%)
gen split merge : 1.04 us (0.4%)
split / merge op : 0/0
apply split merge : 1.25 us (0.4%)
LB compute : 274.14 us (92.8%)
LB move op cnt : 0
LB apply : 4.20 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.74 us (70.8%)
Info: cfl dt = 0.0015154591761117155 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.1836e+05 | 262144 | 1 | 3.203e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.030869095321915 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.946767129154613, dt = 0.0015154591761117155
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.86 us (2.3%)
patch tree reduce : 2.12 us (0.7%)
gen split merge : 1.01 us (0.3%)
split / merge op : 0/0
apply split merge : 1.30 us (0.4%)
LB compute : 270.03 us (92.5%)
LB move op cnt : 0
LB apply : 3.89 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.83 us (65.4%)
Info: cfl dt = 0.001515512758515192 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.4031e+05 | 262144 | 1 | 3.120e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.48828125371337 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.948282588330725, dt = 0.001515512758515192
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.99 us (2.2%)
patch tree reduce : 2.06 us (0.8%)
gen split merge : 997.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.34 us (0.5%)
LB compute : 253.88 us (92.3%)
LB move op cnt : 0
LB apply : 3.88 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.45 us (66.8%)
Info: cfl dt = 0.0015155711235613609 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.1530e+05 | 262144 | 1 | 3.215e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.96827538521698 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.94979810108924, dt = 0.0015155711235613609
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.37 us (2.4%)
patch tree reduce : 2.16 us (0.7%)
gen split merge : 926.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.52 us (0.5%)
LB compute : 279.72 us (92.4%)
LB move op cnt : 0
LB apply : 4.32 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.67 us (62.0%)
Info: cfl dt = 0.0015156345699963358 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.4017e+05 | 262144 | 1 | 3.120e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.486583094844125 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.9513136722128013, dt = 0.0015156345699963358
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.46 us (2.2%)
patch tree reduce : 1.87 us (0.6%)
gen split merge : 10.68 us (3.6%)
split / merge op : 0/0
apply split merge : 1.51 us (0.5%)
LB compute : 266.27 us (89.4%)
LB move op cnt : 0
LB apply : 4.42 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.84 us (64.5%)
Info: cfl dt = 0.0015157032495444146 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2098e+05 | 262144 | 1 | 3.193e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.08803167170078 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.9528293067827978, dt = 0.0015157032495444146
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.90 us (2.6%)
patch tree reduce : 1.69 us (0.6%)
gen split merge : 852.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.53 us (0.6%)
LB compute : 241.09 us (91.7%)
LB move op cnt : 0
LB apply : 4.08 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.42 us (65.8%)
Info: cfl dt = 0.0015157771281056741 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.1885e+05 | 262144 | 1 | 3.201e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.044470654997234 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.954345010032342, dt = 0.0015157771281056741
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.48 us (2.5%)
patch tree reduce : 1.84 us (0.6%)
gen split merge : 1.04 us (0.3%)
split / merge op : 0/0
apply split merge : 1.37 us (0.5%)
LB compute : 275.36 us (92.4%)
LB move op cnt : 0
LB apply : 4.16 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.37 us (64.6%)
Info: cfl dt = 0.0015158560585658858 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2445e+05 | 262144 | 1 | 3.180e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.161732103657002 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.955860787160448, dt = 0.0015158560585658858
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.62 us (2.6%)
patch tree reduce : 1.71 us (0.7%)
gen split merge : 846.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.28 us (0.5%)
LB compute : 233.37 us (91.6%)
LB move op cnt : 0
LB apply : 3.94 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.39 us (66.3%)
Info: cfl dt = 0.0015159398838577162 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.1590e+05 | 262144 | 1 | 3.213e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.984769197525505 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.9573766432190136, dt = 0.0015159398838577162
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.62 us (2.1%)
patch tree reduce : 1.84 us (0.6%)
gen split merge : 928.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.43 us (0.5%)
LB compute : 292.26 us (93.0%)
LB move op cnt : 0
LB apply : 4.27 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.51 us (65.9%)
Info: cfl dt = 0.0015160286088810536 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.1922e+05 | 262144 | 1 | 3.200e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.05472650472094 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.9588925831028714, dt = 0.0015160286088810536
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.91 us (2.3%)
patch tree reduce : 1.85 us (0.6%)
gen split merge : 944.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.44 us (0.5%)
LB compute : 273.47 us (92.6%)
LB move op cnt : 0
LB apply : 3.97 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.48 us (66.8%)
Info: cfl dt = 0.0015161221929970955 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2936e+05 | 262144 | 1 | 3.161e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.266767009522475 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.9604086117117525, dt = 0.0015161221929970955
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.51 us (2.5%)
patch tree reduce : 1.86 us (0.7%)
gen split merge : 997.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.30 us (0.5%)
LB compute : 239.86 us (91.9%)
LB move op cnt : 0
LB apply : 4.15 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.44 us (66.6%)
Info: cfl dt = 0.0015162206667123776 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.4044e+05 | 262144 | 1 | 3.119e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.498551249777098 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.9619247339047496, dt = 0.0015162206667123776
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.99 us (2.2%)
patch tree reduce : 1.82 us (0.6%)
gen split merge : 1.06 us (0.3%)
split / merge op : 0/0
apply split merge : 1.42 us (0.5%)
LB compute : 292.79 us (93.0%)
LB move op cnt : 0
LB apply : 4.08 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.48 us (67.0%)
Info: cfl dt = 0.0015163241583407213 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.3106e+05 | 262144 | 1 | 3.154e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.30437993334617 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.963440954571462, dt = 0.0015163241583407213
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.59 us (2.2%)
patch tree reduce : 1.87 us (0.6%)
gen split merge : 1.07 us (0.4%)
split / merge op : 0/0
apply split merge : 1.64 us (0.5%)
LB compute : 279.57 us (92.6%)
LB move op cnt : 0
LB apply : 4.03 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.50 us (63.7%)
Info: cfl dt = 0.0015164328513112427 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.4388e+05 | 262144 | 1 | 3.524e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.49012482541998 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.964957278729803, dt = 0.0015164328513112427
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.97 us (2.3%)
patch tree reduce : 1.66 us (0.6%)
gen split merge : 1.05 us (0.3%)
split / merge op : 0/0
apply split merge : 1.55 us (0.5%)
LB compute : 276.73 us (92.6%)
LB move op cnt : 0
LB apply : 4.36 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.45 us (65.9%)
Info: cfl dt = 0.0015165470045095122 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.1057e+05 | 262144 | 1 | 3.234e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.880092425645536 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.966473711581114, dt = 0.0015165470045095122
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.62 us (2.4%)
patch tree reduce : 1.75 us (0.6%)
gen split merge : 1.03 us (0.4%)
split / merge op : 0/0
apply split merge : 1.36 us (0.5%)
LB compute : 253.37 us (92.2%)
LB move op cnt : 0
LB apply : 4.22 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.56 us (67.4%)
Info: cfl dt = 0.0015166668289555375 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.1444e+05 | 262144 | 1 | 3.219e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.962099486270187 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.9679902585856235, dt = 0.0015166668289555375
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.61 us (2.2%)
patch tree reduce : 1.94 us (0.7%)
gen split merge : 1.04 us (0.4%)
split / merge op : 0/0
apply split merge : 1.36 us (0.5%)
LB compute : 276.14 us (92.8%)
LB move op cnt : 0
LB apply : 3.98 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.47 us (66.3%)
Info: cfl dt = 0.0015167924267402307 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.5237e+05 | 262144 | 1 | 3.484e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.670605582709856 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.969506925414579, dt = 0.0015167924267402307
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.97 us (2.5%)
patch tree reduce : 1.98 us (0.7%)
gen split merge : 1.06 us (0.4%)
split / merge op : 0/0
apply split merge : 1.61 us (0.6%)
LB compute : 254.57 us (91.5%)
LB move op cnt : 0
LB apply : 4.52 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.45 us (68.1%)
Info: cfl dt = 0.0015168697167079774 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.4007e+05 | 262144 | 1 | 3.120e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.49871768833196 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.9710237178413195, dt = 0.0015168697167079774
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.22 us (2.7%)
patch tree reduce : 1.79 us (0.7%)
gen split merge : 993.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.53 us (0.6%)
LB compute : 239.79 us (91.3%)
LB move op cnt : 0
LB apply : 4.48 us (1.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.37 us (64.6%)
Info: cfl dt = 0.0015167805799889949 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2729e+05 | 262144 | 1 | 3.169e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.233351696331724 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.9725405875580275, dt = 0.0015167805799889949
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.90 us (2.6%)
patch tree reduce : 1.76 us (0.7%)
gen split merge : 1.11 us (0.4%)
split / merge op : 0/0
apply split merge : 1.41 us (0.5%)
LB compute : 243.47 us (91.8%)
LB move op cnt : 0
LB apply : 4.01 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.39 us (63.3%)
Info: cfl dt = 0.0015166937676758265 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.3727e+05 | 262144 | 1 | 3.131e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.440162021502747 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.9740573681380167, dt = 0.0015166937676758265
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.00 us (2.2%)
patch tree reduce : 2.30 us (0.7%)
gen split merge : 1.19 us (0.4%)
split / merge op : 0/0
apply split merge : 1.25 us (0.4%)
LB compute : 291.86 us (92.8%)
LB move op cnt : 0
LB apply : 3.71 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.62 us (67.3%)
Info: cfl dt = 0.0015166092689664378 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.7632e+05 | 262144 | 1 | 3.377e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.169656669426864 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.9755740619056925, dt = 0.0015166092689664378
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.60 us (2.2%)
patch tree reduce : 1.67 us (0.6%)
gen split merge : 1.16 us (0.4%)
split / merge op : 0/0
apply split merge : 1.34 us (0.5%)
LB compute : 274.14 us (92.6%)
LB move op cnt : 0
LB apply : 4.21 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.82 us (64.0%)
Info: cfl dt = 0.0015165271292119965 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.1732e+05 | 262144 | 1 | 3.207e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.022602866639286 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.977090671174659, dt = 0.0015165271292119965
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.98 us (2.2%)
patch tree reduce : 2.04 us (0.7%)
gen split merge : 1.14 us (0.4%)
split / merge op : 0/0
apply split merge : 1.38 us (0.4%)
LB compute : 289.12 us (92.9%)
LB move op cnt : 0
LB apply : 4.09 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.53 us (69.3%)
Info: cfl dt = 0.00151644744508862 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2183e+05 | 262144 | 1 | 3.190e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.115723303512848 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.978607198303871, dt = 0.00151644744508862
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.97 us (2.6%)
patch tree reduce : 1.93 us (0.7%)
gen split merge : 1.07 us (0.4%)
split / merge op : 0/0
apply split merge : 1.62 us (0.6%)
LB compute : 246.55 us (91.6%)
LB move op cnt : 0
LB apply : 3.81 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.36 us (64.4%)
Info: cfl dt = 0.0015163703532176092 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2653e+05 | 262144 | 1 | 3.172e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.21266122135417 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.9801236457489595, dt = 0.0015163703532176092
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.96 us (2.3%)
patch tree reduce : 1.73 us (0.6%)
gen split merge : 962.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.56 us (0.5%)
LB compute : 286.70 us (92.9%)
LB move op cnt : 0
LB apply : 3.98 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.38 us (64.8%)
Info: cfl dt = 0.0015162959964158172 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2877e+05 | 262144 | 1 | 3.163e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.25855329950881 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.981640016102177, dt = 0.0015162959964158172
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.09 us (2.7%)
patch tree reduce : 1.93 us (0.7%)
gen split merge : 947.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.45 us (0.6%)
LB compute : 237.47 us (91.4%)
LB move op cnt : 0
LB apply : 4.15 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.45 us (66.6%)
Info: cfl dt = 0.001516224535963824 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.1932e+05 | 262144 | 1 | 3.200e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.0609299387698 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.983156312098593, dt = 0.001516224535963824
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.87 us (2.6%)
patch tree reduce : 1.70 us (0.6%)
gen split merge : 949.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.50 us (0.6%)
LB compute : 240.76 us (91.8%)
LB move op cnt : 0
LB apply : 4.07 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.43 us (66.5%)
Info: cfl dt = 0.0015161561115093257 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2986e+05 | 262144 | 1 | 3.159e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.279565640139392 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.9846725366345566, dt = 0.0015161561115093257
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.42 us (2.1%)
patch tree reduce : 1.79 us (0.6%)
gen split merge : 1.02 us (0.3%)
split / merge op : 0/0
apply split merge : 1.64 us (0.5%)
LB compute : 277.27 us (92.7%)
LB move op cnt : 0
LB apply : 4.43 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.45 us (64.8%)
Info: cfl dt = 0.0015160908162935285 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.8677e+05 | 262144 | 1 | 3.332e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.38151565668083 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.9861886927460657, dt = 0.0015160908162935285
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.48 us (2.5%)
patch tree reduce : 2.25 us (0.9%)
gen split merge : 946.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.54 us (0.6%)
LB compute : 239.73 us (91.5%)
LB move op cnt : 0
LB apply : 4.08 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.49 us (66.8%)
Info: cfl dt = 0.0015160287098673958 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.2376e+05 | 262144 | 1 | 3.622e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.068953058121519 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.9877047835623594, dt = 0.0015160287098673958
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.41 us (2.5%)
patch tree reduce : 1.66 us (0.6%)
gen split merge : 884.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.61 us (0.6%)
LB compute : 237.29 us (91.8%)
LB move op cnt : 0
LB apply : 3.99 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.39 us (65.3%)
Info: cfl dt = 0.0015159698121613562 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2184e+05 | 262144 | 1 | 3.190e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.11019581173132 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.989220812272227, dt = 0.0015159698121613562
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.62 us (2.2%)
patch tree reduce : 1.90 us (0.6%)
gen split merge : 960.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.63 us (0.5%)
LB compute : 279.19 us (92.4%)
LB move op cnt : 0
LB apply : 4.43 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.54 us (68.9%)
Info: cfl dt = 0.0015159140978895074 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.6071e+05 | 262144 | 1 | 3.446e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.836875850372687 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.990736782084388, dt = 0.0015159140978895074
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.74 us (2.3%)
patch tree reduce : 1.87 us (0.6%)
gen split merge : 1.02 us (0.3%)
split / merge op : 0/0
apply split merge : 1.56 us (0.5%)
LB compute : 271.52 us (92.7%)
LB move op cnt : 0
LB apply : 3.94 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.90 us (67.5%)
Info: cfl dt = 0.00151586150586323 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.6723e+05 | 262144 | 1 | 3.417e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.972100531521331 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.9922526961822773, dt = 0.00151586150586323
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.84 us (2.3%)
patch tree reduce : 1.91 us (0.7%)
gen split merge : 934.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.45 us (0.5%)
LB compute : 272.22 us (92.5%)
LB move op cnt : 0
LB apply : 4.05 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.65 us (63.2%)
Info: cfl dt = 0.0015158119342900196 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.4028e+05 | 262144 | 1 | 3.120e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.49235519786117 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.9937685576881403, dt = 0.0015158119342900196
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.44 us (2.1%)
patch tree reduce : 1.81 us (0.6%)
gen split merge : 848.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.85 us (0.6%)
LB compute : 282.67 us (92.9%)
LB move op cnt : 0
LB apply : 4.18 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.49 us (66.7%)
Info: cfl dt = 0.0015157652695703308 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2759e+05 | 262144 | 1 | 3.168e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.22753523639977 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.9952843696224303, dt = 0.0015157652695703308
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.56 us (2.4%)
patch tree reduce : 1.92 us (0.7%)
gen split merge : 998.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.36 us (0.5%)
LB compute : 257.40 us (92.2%)
LB move op cnt : 0
LB apply : 3.90 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.43 us (66.0%)
Info: cfl dt = 0.0015157213859561688 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2945e+05 | 262144 | 1 | 3.160e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.265743750034083 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.9968001348920006, dt = 0.0015157213859561688
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.97 us (2.3%)
patch tree reduce : 1.78 us (0.6%)
gen split merge : 855.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.35 us (0.4%)
LB compute : 284.78 us (92.9%)
LB move op cnt : 0
LB apply : 4.33 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.44 us (64.8%)
Info: cfl dt = 0.0015156801812625782 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.4557e+05 | 262144 | 1 | 3.100e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.600760431723693 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.998315856277957, dt = 0.0015156801812625782
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.96 us (2.4%)
patch tree reduce : 1.72 us (0.6%)
gen split merge : 1.02 us (0.4%)
split / merge op : 0/0
apply split merge : 1.45 us (0.5%)
LB compute : 264.47 us (92.4%)
LB move op cnt : 0
LB apply : 3.89 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.77 us (64.0%)
Info: cfl dt = 0.0015156415719529508 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.3922e+05 | 262144 | 1 | 3.124e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.468161419269254 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.999831536459219, dt = 0.0015156415719529508
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.21 us (2.8%)
patch tree reduce : 1.82 us (0.7%)
gen split merge : 1.02 us (0.4%)
split / merge op : 0/0
apply split merge : 1.44 us (0.6%)
LB compute : 234.20 us (91.2%)
LB move op cnt : 0
LB apply : 4.37 us (1.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.42 us (65.6%)
Info: cfl dt = 0.0015156054850431545 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2633e+05 | 262144 | 1 | 3.172e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.19941502936658 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 3.001347178031172, dt = 0.0015156054850431545
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.87 us (2.2%)
patch tree reduce : 1.73 us (0.6%)
gen split merge : 980.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.58 us (0.5%)
LB compute : 288.36 us (92.8%)
LB move op cnt : 0
LB apply : 4.43 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.72 us (64.6%)
Info: cfl dt = 0.001515571851890059 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2475e+05 | 262144 | 1 | 3.178e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.166028568752484 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 3.0028627835162154, dt = 0.001515571851890059
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.39 us (2.3%)
patch tree reduce : 1.84 us (0.6%)
gen split merge : 1.01 us (0.3%)
split / merge op : 0/0
apply split merge : 1.40 us (0.4%)
LB compute : 293.44 us (92.8%)
LB move op cnt : 0
LB apply : 4.39 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.41 us (63.0%)
Info: cfl dt = 0.0015155406034392217 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.3026e+05 | 262144 | 1 | 3.157e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.28034998136068 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 3.0043783553681056, dt = 0.0015155406034392217
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.57 us (1.9%)
patch tree reduce : 15.05 us (4.3%)
gen split merge : 1.16 us (0.3%)
split / merge op : 0/0
apply split merge : 1.62 us (0.5%)
LB compute : 318.33 us (89.9%)
LB move op cnt : 0
LB apply : 4.38 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.49 us (65.5%)
Info: cfl dt = 0.0015155117262914545 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.0840e+05 | 262144 | 1 | 3.701e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.743741920739387 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 3.005893895971545, dt = 0.0015155117262914545
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.39 us (1.9%)
patch tree reduce : 1.99 us (0.6%)
gen split merge : 1.00 us (0.3%)
split / merge op : 0/0
apply split merge : 1.31 us (0.4%)
LB compute : 308.79 us (93.5%)
LB move op cnt : 0
LB apply : 4.15 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.44 us (65.1%)
Info: cfl dt = 0.0015154852770668096 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 6.6749e+05 | 262144 | 1 | 3.927e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.89198168891492 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 3.0074094076978364, dt = 0.0015154852770668096
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.89 us (2.5%)
patch tree reduce : 1.93 us (0.7%)
gen split merge : 938.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.43 us (0.5%)
LB compute : 251.86 us (91.9%)
LB move op cnt : 0
LB apply : 4.14 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.52 us (65.5%)
Info: cfl dt = 0.001515461347178684 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.6411e+05 | 262144 | 1 | 3.431e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.90262276182398 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 3.0089248929749033, dt = 0.001515461347178684
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.84 us (2.3%)
patch tree reduce : 1.94 us (0.6%)
gen split merge : 1.04 us (0.3%)
split / merge op : 0/0
apply split merge : 1.44 us (0.5%)
LB compute : 281.23 us (92.6%)
LB move op cnt : 0
LB apply : 4.01 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.64 us (69.1%)
Info: cfl dt = 0.0015154400519389322 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2124e+05 | 262144 | 1 | 3.192e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.091361770242024 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 3.010440354322082, dt = 0.0015154400519389322
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.48 us (2.4%)
patch tree reduce : 1.70 us (0.6%)
gen split merge : 934.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.35 us (0.5%)
LB compute : 249.62 us (92.0%)
LB move op cnt : 0
LB apply : 4.38 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.49 us (66.3%)
Info: cfl dt = 0.0015154215237168313 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2016e+05 | 262144 | 1 | 3.196e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.06857998604755 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 3.0119557943740207, dt = 0.0015154215237168313
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.46 us (2.9%)
patch tree reduce : 2.01 us (0.8%)
gen split merge : 942.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.32 us (0.5%)
LB compute : 237.66 us (91.1%)
LB move op cnt : 0
LB apply : 4.30 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.91 us (64.5%)
Info: cfl dt = 0.0015154059066079205 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2703e+05 | 262144 | 1 | 3.170e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.211438368783345 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 3.0134712158977375, dt = 0.0015154059066079205
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.60 us (2.5%)
patch tree reduce : 1.92 us (0.7%)
gen split merge : 1.01 us (0.4%)
split / merge op : 0/0
apply split merge : 1.63 us (0.6%)
LB compute : 237.30 us (91.6%)
LB move op cnt : 0
LB apply : 4.07 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.41 us (65.7%)
Info: cfl dt = 0.0015153933497477634 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2728e+05 | 262144 | 1 | 3.169e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.216391579738755 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 3.0149866218043453, dt = 0.0015153933497477634
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.84 us (2.6%)
patch tree reduce : 1.73 us (0.7%)
gen split merge : 1.03 us (0.4%)
split / merge op : 0/0
apply split merge : 1.29 us (0.5%)
LB compute : 238.11 us (91.6%)
LB move op cnt : 0
LB apply : 4.56 us (1.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.37 us (63.7%)
Info: cfl dt = 0.0015153840124235262 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.4372e+05 | 262144 | 1 | 3.107e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.558470369720926 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 3.016502015154093, dt = 0.0015153840124235262
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.39 us (2.4%)
patch tree reduce : 1.71 us (0.7%)
gen split merge : 1.05 us (0.4%)
split / merge op : 0/0
apply split merge : 1.65 us (0.6%)
LB compute : 241.09 us (91.8%)
LB move op cnt : 0
LB apply : 4.13 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.37 us (65.4%)
Info: cfl dt = 0.0015153780617198158 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.8974e+05 | 262144 | 1 | 3.319e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.434931235689902 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 3.0180173991665167, dt = 0.0015153780617198158
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.77 us (2.5%)
patch tree reduce : 1.75 us (0.6%)
gen split merge : 959.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.50 us (0.5%)
LB compute : 251.89 us (91.8%)
LB move op cnt : 0
LB apply : 4.63 us (1.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.47 us (66.9%)
Info: cfl dt = 0.0015153756456894494 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2362e+05 | 262144 | 1 | 3.183e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.140039152017938 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 3.0195327772282363, dt = 0.0015153756456894494
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.73 us (2.4%)
patch tree reduce : 1.93 us (0.7%)
gen split merge : 1.03 us (0.4%)
split / merge op : 0/0
apply split merge : 1.33 us (0.5%)
LB compute : 253.68 us (92.1%)
LB move op cnt : 0
LB apply : 4.21 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.34 us (64.9%)
Info: cfl dt = 0.001515376914254306 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.4704e+05 | 262144 | 1 | 3.095e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.6274170300516 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 3.021048152873926, dt = 0.001515376914254306
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.54 us (2.3%)
patch tree reduce : 2.16 us (0.7%)
gen split merge : 953.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.69 us (0.6%)
LB compute : 267.80 us (92.5%)
LB move op cnt : 0
LB apply : 3.89 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.40 us (66.0%)
Info: cfl dt = 0.0015153820124678256 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2683e+05 | 262144 | 1 | 3.170e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.206759746094367 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 3.0225635297881803, dt = 0.0015153820124678256
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.47 us (2.3%)
patch tree reduce : 1.91 us (0.7%)
gen split merge : 955.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.42 us (0.5%)
LB compute : 259.84 us (92.2%)
LB move op cnt : 0
LB apply : 4.38 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.39 us (65.5%)
Info: cfl dt = 0.0015153910871337378 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2290e+05 | 262144 | 1 | 3.186e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.12511423991344 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 3.024078911800648, dt = 0.0015153910871337378
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.96 us (2.7%)
patch tree reduce : 1.94 us (0.7%)
gen split merge : 1.02 us (0.4%)
split / merge op : 0/0
apply split merge : 1.52 us (0.6%)
LB compute : 237.88 us (91.4%)
LB move op cnt : 0
LB apply : 4.17 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.60 us (67.8%)
Info: cfl dt = 0.001515404324355273 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2417e+05 | 262144 | 1 | 3.181e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.15163184986905 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 3.025594302887782, dt = 0.001515404324355273
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.97 us (2.1%)
patch tree reduce : 1.81 us (0.5%)
gen split merge : 1.02 us (0.3%)
split / merge op : 0/0
apply split merge : 1.63 us (0.5%)
LB compute : 310.34 us (93.3%)
LB move op cnt : 0
LB apply : 4.07 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.55 us (67.5%)
Info: cfl dt = 0.0015154218966057418 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2477e+05 | 262144 | 1 | 3.178e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.164293334196824 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 3.027109707212137, dt = 0.0015154218966057418
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.36 us (2.0%)
patch tree reduce : 1.74 us (0.6%)
gen split merge : 895.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.41 us (0.5%)
LB compute : 289.94 us (93.1%)
LB move op cnt : 0
LB apply : 4.40 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.45 us (65.0%)
Info: cfl dt = 0.0015154429042071658 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2479e+05 | 262144 | 1 | 3.178e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.164859494053708 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 3.0286251291087427, dt = 0.0015154429042071658
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.95 us (2.3%)
patch tree reduce : 2.31 us (0.8%)
gen split merge : 966.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.33 us (0.4%)
LB compute : 281.09 us (92.6%)
LB move op cnt : 0
LB apply : 3.95 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.46 us (65.2%)
Info: cfl dt = 0.001515425174250915 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.1493e+05 | 262144 | 1 | 3.217e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.959962110648217 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 3.0301405720129497, dt = 0.001515425174250915
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.55 us (2.2%)
patch tree reduce : 1.79 us (0.6%)
gen split merge : 973.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.51 us (0.5%)
LB compute : 277.81 us (92.7%)
LB move op cnt : 0
LB apply : 4.33 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.47 us (63.5%)
Info: cfl dt = 0.0015154111382894928 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.8675e+05 | 262144 | 1 | 3.332e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.373165413106264 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 3.0316559971872006, dt = 0.0015154111382894928
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.64 us (2.5%)
patch tree reduce : 1.68 us (0.6%)
gen split merge : 1.07 us (0.4%)
split / merge op : 0/0
apply split merge : 1.55 us (0.6%)
LB compute : 241.89 us (91.8%)
LB move op cnt : 0
LB apply : 4.21 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.38 us (64.7%)
Info: cfl dt = 0.0015154007715633753 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.3240e+05 | 262144 | 1 | 3.149e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.323072022665 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 3.03317140832549, dt = 0.0015154007715633753
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.06 us (2.3%)
patch tree reduce : 1.84 us (0.6%)
gen split merge : 914.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.43 us (0.5%)
LB compute : 281.04 us (92.6%)
LB move op cnt : 0
LB apply : 3.85 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.89 us (65.1%)
Info: cfl dt = 0.0015153940071035783 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.1969e+05 | 262144 | 1 | 3.198e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.058374242706478 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 3.0346868090970536, dt = 0.0015153940071035783
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.57 us (2.4%)
patch tree reduce : 1.74 us (0.6%)
gen split merge : 866.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.40 us (0.5%)
LB compute : 248.80 us (91.9%)
LB move op cnt : 0
LB apply : 4.24 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.55 us (68.2%)
Info: cfl dt = 0.0015153907730331483 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.0153e+05 | 262144 | 1 | 3.737e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.599365686739935 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 3.0362022031041573, dt = 0.0015153907730331483
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.51 us (2.1%)
patch tree reduce : 1.96 us (0.6%)
gen split merge : 1.00 us (0.3%)
split / merge op : 0/0
apply split merge : 1.34 us (0.4%)
LB compute : 285.27 us (92.7%)
LB move op cnt : 0
LB apply : 4.73 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.50 us (64.7%)
Info: cfl dt = 0.0015153907753273053 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.3227e+05 | 262144 | 1 | 3.150e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.32010057024293 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 3.0377175938771903, dt = 0.0015153907753273053
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.42 us (2.4%)
patch tree reduce : 1.67 us (0.6%)
gen split merge : 1.02 us (0.4%)
split / merge op : 0/0
apply split merge : 11.24 us (4.1%)
LB compute : 239.95 us (88.4%)
LB move op cnt : 0
LB apply : 4.15 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.65 us (66.8%)
Info: cfl dt = 0.0015153939144565602 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.3877e+05 | 262144 | 1 | 3.125e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.455398730236666 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 3.0392329846525175, dt = 0.0015153939144565602
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.48 us (2.3%)
patch tree reduce : 1.80 us (0.6%)
gen split merge : 1.02 us (0.4%)
split / merge op : 0/0
apply split merge : 1.35 us (0.5%)
LB compute : 266.27 us (92.6%)
LB move op cnt : 0
LB apply : 4.16 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.46 us (65.1%)
Info: cfl dt = 0.001515400137354644 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 6.9736e+05 | 262144 | 1 | 3.759e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.512606812497397 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 3.040748378566974, dt = 0.001515400137354644
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.23 us (2.3%)
patch tree reduce : 1.87 us (0.6%)
gen split merge : 971.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.44 us (0.5%)
LB compute : 294.17 us (93.0%)
LB move op cnt : 0
LB apply : 3.92 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.45 us (66.7%)
Info: cfl dt = 0.0015154094092094715 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2000e+05 | 262144 | 1 | 3.197e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.064966893624135 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 3.0422637787043287, dt = 0.0004445546290048341
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.67 us (2.7%)
patch tree reduce : 2.09 us (0.7%)
gen split merge : 984.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.38 us (0.5%)
LB compute : 261.75 us (91.9%)
LB move op cnt : 0
LB apply : 4.17 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.41 us (64.9%)
Info: cfl dt = 0.00151541288628109 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.0005e+05 | 262144 | 1 | 3.745e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.273808986220734 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 658.367067164 (s) [Godunov][rank=0]
Info: dump to _to_trash/ramses_kh/periodic_0024.vtk [VTK Dump][rank=0]
- took 33.44 ms, bandwidth = 1.22 GB/s
amr::Godunov: t = 3.0427083333333336, dt = 0.00151541288628109
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 8.19 us (2.3%)
patch tree reduce : 1.88 us (0.5%)
gen split merge : 877.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.45 us (0.4%)
LB compute : 330.23 us (93.4%)
LB move op cnt : 0
LB apply : 4.21 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.33 us (64.7%)
Info: cfl dt = 0.0015154300826208877 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.4726e+05 | 262144 | 1 | 3.094e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.63228078576893 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 3.0442237462196147, dt = 0.0015154300826208877
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.08 us (2.3%)
patch tree reduce : 1.79 us (0.6%)
gen split merge : 1.07 us (0.4%)
split / merge op : 0/0
apply split merge : 1.44 us (0.5%)
LB compute : 280.39 us (92.6%)
LB move op cnt : 0
LB apply : 4.49 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.45 us (65.6%)
Info: cfl dt = 0.001515448127612928 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.6127e+05 | 262144 | 1 | 3.443e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.843087643168081 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 3.0457391763022357, dt = 0.001515448127612928
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.92 us (2.1%)
patch tree reduce : 1.89 us (0.6%)
gen split merge : 972.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.69 us (0.5%)
LB compute : 304.63 us (93.1%)
LB move op cnt : 0
LB apply : 4.47 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.52 us (67.4%)
Info: cfl dt = 0.0015154674465765168 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.0535e+05 | 262144 | 1 | 3.717e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.67930444387051 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 3.0472546244298484, dt = 0.0015154674465765168
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.01 us (2.4%)
patch tree reduce : 1.73 us (0.6%)
gen split merge : 1.02 us (0.3%)
split / merge op : 0/0
apply split merge : 1.49 us (0.5%)
LB compute : 271.53 us (92.3%)
LB move op cnt : 0
LB apply : 4.19 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.45 us (65.9%)
Info: cfl dt = 0.0015154887370203722 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 6.8201e+05 | 262144 | 1 | 3.844e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.193853969993715 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 3.048770091876425, dt = 0.0015154887370203722
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.96 us (2.2%)
patch tree reduce : 1.77 us (0.5%)
gen split merge : 908.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.40 us (0.4%)
LB compute : 300.91 us (93.2%)
LB move op cnt : 0
LB apply : 4.29 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.48 us (65.4%)
Info: cfl dt = 0.0015155126799600222 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.0551e+05 | 262144 | 1 | 3.716e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.683190527106664 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 3.0502855806134455, dt = 0.0015155126799600222
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.65 us (2.2%)
patch tree reduce : 1.92 us (0.6%)
gen split merge : 1.11 us (0.4%)
split / merge op : 0/0
apply split merge : 1.47 us (0.5%)
LB compute : 287.29 us (92.9%)
LB move op cnt : 0
LB apply : 3.99 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.51 us (66.0%)
Info: cfl dt = 0.0015155397887503838 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.1913e+05 | 262144 | 1 | 3.200e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.04803628174759 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 3.0518010932934057, dt = 0.0015155397887503838
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.54 us (2.0%)
patch tree reduce : 1.63 us (0.5%)
gen split merge : 932.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.49 us (0.5%)
LB compute : 302.85 us (93.4%)
LB move op cnt : 0
LB apply : 4.30 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.85 us (65.5%)
Info: cfl dt = 0.001515570370582603 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.8890e+05 | 262144 | 1 | 3.323e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.419193421547355 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 3.053316633082156, dt = 0.001515570370582603
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.08 us (2.4%)
patch tree reduce : 1.86 us (0.6%)
gen split merge : 940.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.53 us (0.5%)
LB compute : 276.18 us (92.6%)
LB move op cnt : 0
LB apply : 4.07 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.44 us (66.4%)
Info: cfl dt = 0.0015156045490808813 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 6.7612e+05 | 262144 | 1 | 3.877e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.072157070977461 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 3.054832203452739, dt = 0.0015156045490808813
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.05 us (2.5%)
patch tree reduce : 1.94 us (0.7%)
gen split merge : 902.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.47 us (0.5%)
LB compute : 262.19 us (92.0%)
LB move op cnt : 0
LB apply : 4.37 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.41 us (64.8%)
Info: cfl dt = 0.0015156423110062969 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.3137e+05 | 262144 | 1 | 3.153e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.30382652902281 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 3.05634780800182, dt = 0.0015156423110062969
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.11 us (2.6%)
patch tree reduce : 1.85 us (0.7%)
gen split merge : 947.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.23 us (0.5%)
LB compute : 250.83 us (91.9%)
LB move op cnt : 0
LB apply : 4.26 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.57 us (68.2%)
Info: cfl dt = 0.0015156862371648158 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.0254e+05 | 262144 | 1 | 3.266e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.704254198745375 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 3.057863450312826, dt = 0.0015156862371648158
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.73 us (2.2%)
patch tree reduce : 2.10 us (0.7%)
gen split merge : 943.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.36 us (0.4%)
LB compute : 283.97 us (92.7%)
LB move op cnt : 0
LB apply : 4.39 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.42 us (64.4%)
Info: cfl dt = 0.001515734872975682 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2330e+05 | 262144 | 1 | 3.184e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.136835923891123 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 3.0593791365499907, dt = 0.001515734872975682
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.63 us (2.3%)
patch tree reduce : 1.66 us (0.6%)
gen split merge : 830.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.34 us (0.5%)
LB compute : 270.38 us (92.6%)
LB move op cnt : 0
LB apply : 4.21 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.43 us (66.0%)
Info: cfl dt = 0.001515787377940388 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2255e+05 | 262144 | 1 | 3.187e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.121733380935247 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 3.0608948714229665, dt = 0.001515787377940388
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.47 us (2.4%)
patch tree reduce : 1.83 us (0.7%)
gen split merge : 1.11 us (0.4%)
split / merge op : 0/0
apply split merge : 1.25 us (0.5%)
LB compute : 244.85 us (92.0%)
LB move op cnt : 0
LB apply : 3.97 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.32 us (64.5%)
Info: cfl dt = 0.001515843479157141 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.4728e+05 | 262144 | 1 | 3.094e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.637185915038597 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 3.062410658800907, dt = 0.001515843479157141
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.83 us (2.5%)
patch tree reduce : 1.71 us (0.6%)
gen split merge : 967.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.40 us (0.5%)
LB compute : 245.96 us (91.8%)
LB move op cnt : 0
LB apply : 4.48 us (1.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.43 us (66.6%)
Info: cfl dt = 0.0015159032245213697 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2510e+05 | 262144 | 1 | 3.177e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.176016040603624 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 3.063926502280064, dt = 0.0015159032245213697
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.91 us (2.3%)
patch tree reduce : 1.91 us (0.6%)
gen split merge : 997.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.55 us (0.5%)
LB compute : 276.39 us (92.5%)
LB move op cnt : 0
LB apply : 4.60 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.41 us (65.3%)
Info: cfl dt = 0.0015159667828851446 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2166e+05 | 262144 | 1 | 3.190e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.10505249635189 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 3.0654424055045855, dt = 0.0015159667828851446
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.50 us (2.2%)
patch tree reduce : 1.73 us (0.6%)
gen split merge : 847.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.44 us (0.5%)
LB compute : 274.18 us (92.8%)
LB move op cnt : 0
LB apply : 4.20 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.56 us (68.7%)
Info: cfl dt = 0.0015160343226325345 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.6808e+05 | 262144 | 1 | 3.413e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.990475081888139 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 3.0669583722874707, dt = 0.0015160343226325345
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.85 us (2.3%)
patch tree reduce : 1.96 us (0.7%)
gen split merge : 827.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.43 us (0.5%)
LB compute : 277.37 us (92.5%)
LB move op cnt : 0
LB apply : 4.09 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.41 us (65.6%)
Info: cfl dt = 0.0015161059439542158 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.4895e+05 | 262144 | 1 | 3.088e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.674725695614377 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 3.068474406610103, dt = 0.0015161059439542158
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.90 us (2.6%)
patch tree reduce : 1.86 us (0.6%)
gen split merge : 1.05 us (0.3%)
split / merge op : 0/0
apply split merge : 1.60 us (0.5%)
LB compute : 281.69 us (92.1%)
LB move op cnt : 0
LB apply : 4.48 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.52 us (67.0%)
Info: cfl dt = 0.0015161818132272207 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.5459e+05 | 262144 | 1 | 3.474e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.710930213828494 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 3.069990512554057, dt = 0.0015161818132272207
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.01 us (2.2%)
patch tree reduce : 1.77 us (0.6%)
gen split merge : 1.01 us (0.3%)
split / merge op : 0/0
apply split merge : 1.39 us (0.4%)
LB compute : 296.02 us (93.0%)
LB move op cnt : 0
LB apply : 4.23 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.44 us (65.8%)
Info: cfl dt = 0.0015162619563372926 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.3935e+05 | 262144 | 1 | 3.546e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.394422294038181 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 3.0715066943672844, dt = 0.0015162619563372926
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.64 us (2.4%)
patch tree reduce : 1.74 us (0.6%)
gen split merge : 966.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.56 us (0.6%)
LB compute : 247.15 us (88.7%)
LB move op cnt : 0
LB apply : 13.71 us (4.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.50 us (67.3%)
Info: cfl dt = 0.0015163462513685779 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.5761e+05 | 262144 | 1 | 3.460e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.775396706740029 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 3.0730229563236215, dt = 0.0015163462513685779
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.80 us (2.5%)
patch tree reduce : 1.90 us (0.7%)
gen split merge : 962.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.49 us (0.5%)
LB compute : 254.27 us (92.1%)
LB move op cnt : 0
LB apply : 4.07 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.47 us (65.6%)
Info: cfl dt = 0.0015164345170216097 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.1652e+05 | 262144 | 1 | 3.211e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.003031337093752 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 3.07453930257499, dt = 0.0015164345170216097
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.59 us (2.2%)
patch tree reduce : 1.90 us (0.6%)
gen split merge : 883.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.41 us (0.5%)
LB compute : 275.94 us (92.7%)
LB move op cnt : 0
LB apply : 4.19 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.50 us (65.6%)
Info: cfl dt = 0.0015165265390396183 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.8918e+05 | 262144 | 1 | 3.322e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.434665220597505 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 3.0760557370920116, dt = 0.0015165265390396183
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.16 us (2.3%)
patch tree reduce : 1.90 us (0.6%)
gen split merge : 824.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.55 us (0.5%)
LB compute : 293.85 us (92.9%)
LB move op cnt : 0
LB apply : 4.60 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.57 us (66.4%)
Info: cfl dt = 0.0015166220925487708 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.1810e+05 | 262144 | 1 | 3.204e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.037941298152894 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 3.077572263631051, dt = 0.0015166220925487708
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.43 us (2.4%)
patch tree reduce : 2.04 us (0.8%)
gen split merge : 895.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.50 us (0.6%)
LB compute : 243.46 us (91.6%)
LB move op cnt : 0
LB apply : 4.37 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.50 us (66.0%)
Info: cfl dt = 0.00151672114130779 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.3503e+05 | 262144 | 1 | 3.139e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.391674913436844 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 3.0790888857236, dt = 0.00151672114130779
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.51 us (2.3%)
patch tree reduce : 1.69 us (0.5%)
gen split merge : 834.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.39 us (0.4%)
LB compute : 303.24 us (93.1%)
LB move op cnt : 0
LB apply : 4.22 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.66 us (67.1%)
Info: cfl dt = 0.001516823836544423 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2520e+05 | 262144 | 1 | 3.177e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.18803759172135 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 3.0806056068649075, dt = 0.001516823836544423
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.00 us (2.5%)
patch tree reduce : 1.74 us (0.6%)
gen split merge : 973.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.42 us (0.5%)
LB compute : 255.96 us (92.1%)
LB move op cnt : 0
LB apply : 4.32 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.56 us (66.8%)
Info: cfl dt = 0.0015169301594636642 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.3109e+05 | 262144 | 1 | 3.154e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.312033658841685 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 3.082122430701452, dt = 0.0015169301594636642
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.41 us (2.8%)
patch tree reduce : 1.73 us (0.6%)
gen split merge : 1.16 us (0.4%)
split / merge op : 0/0
apply split merge : 1.45 us (0.5%)
LB compute : 244.16 us (91.6%)
LB move op cnt : 0
LB apply : 4.40 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.39 us (64.3%)
Info: cfl dt = 0.0015170399187086636 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2053e+05 | 262144 | 1 | 3.195e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.093120535664912 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 3.0836393608609156, dt = 0.0015170399187086636
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.21 us (2.3%)
patch tree reduce : 1.71 us (0.6%)
gen split merge : 997.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.64 us (0.5%)
LB compute : 285.15 us (92.5%)
LB move op cnt : 0
LB apply : 4.45 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.42 us (63.2%)
Info: cfl dt = 0.0015171528169255649 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.1245e+05 | 262144 | 1 | 3.227e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.926087412688343 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 3.085156400779624, dt = 0.0015171528169255649
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.62 us (2.5%)
patch tree reduce : 2.08 us (0.8%)
gen split merge : 984.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.44 us (0.5%)
LB compute : 240.79 us (91.6%)
LB move op cnt : 0
LB apply : 4.18 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.51 us (66.5%)
Info: cfl dt = 0.0015172685845092576 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2074e+05 | 262144 | 1 | 3.194e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.10003779973796 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 3.0866735535965497, dt = 0.0015172685845092576
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.93 us (2.5%)
patch tree reduce : 1.93 us (0.7%)
gen split merge : 1.03 us (0.4%)
split / merge op : 0/0
apply split merge : 1.34 us (0.5%)
LB compute : 257.07 us (92.1%)
LB move op cnt : 0
LB apply : 4.30 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.45 us (65.5%)
Info: cfl dt = 0.0015173870381570904 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.1782e+05 | 262144 | 1 | 3.205e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.040607357086202 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 3.088190822181059, dt = 0.0015173870381570904
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.65 us (2.1%)
patch tree reduce : 1.91 us (0.6%)
gen split merge : 858.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.35 us (0.4%)
LB compute : 299.00 us (93.2%)
LB move op cnt : 0
LB apply : 4.59 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.57 us (66.5%)
Info: cfl dt = 0.001517508532836976 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2706e+05 | 262144 | 1 | 3.170e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.234370282141853 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 3.089708209219216, dt = 0.001517508532836976
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.00 us (2.2%)
patch tree reduce : 1.89 us (0.6%)
gen split merge : 914.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.41 us (0.4%)
LB compute : 292.28 us (92.7%)
LB move op cnt : 0
LB apply : 4.37 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.45 us (64.8%)
Info: cfl dt = 0.001517632949150745 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.6281e+05 | 262144 | 1 | 3.437e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.896733162048562 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 3.091225717752053, dt = 0.001517632949150745
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.81 us (2.2%)
patch tree reduce : 2.13 us (0.7%)
gen split merge : 985.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.52 us (0.5%)
LB compute : 293.92 us (93.0%)
LB move op cnt : 0
LB apply : 4.08 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.60 us (67.8%)
Info: cfl dt = 0.0015177601599644613 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2068e+05 | 262144 | 1 | 3.194e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.104160572248507 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 3.0927433507012037, dt = 0.0015177601599644613
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.78 us (2.2%)
patch tree reduce : 1.76 us (0.6%)
gen split merge : 943.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.30 us (0.4%)
LB compute : 290.91 us (93.1%)
LB move op cnt : 0
LB apply : 4.05 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.88 us (64.6%)
Info: cfl dt = 0.0015178901241101452 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.6397e+05 | 262144 | 1 | 3.034e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.007887882195234 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 3.094261110861168, dt = 0.0015178901241101452
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.83 us (2.6%)
patch tree reduce : 1.78 us (0.7%)
gen split merge : 962.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.67 us (0.6%)
LB compute : 238.64 us (91.6%)
LB move op cnt : 0
LB apply : 4.24 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.42 us (65.0%)
Info: cfl dt = 0.0015180228541349585 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2650e+05 | 262144 | 1 | 3.172e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.228442785199686 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 3.0957790009852784, dt = 0.0015180228541349585
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.31 us (2.6%)
patch tree reduce : 2.37 us (0.8%)
gen split merge : 1.09 us (0.4%)
split / merge op : 0/0
apply split merge : 1.42 us (0.5%)
LB compute : 255.18 us (91.7%)
LB move op cnt : 0
LB apply : 4.29 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.39 us (64.5%)
Info: cfl dt = 0.0015181584061698822 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2717e+05 | 262144 | 1 | 3.169e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.244005923476294 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 3.0972970238394133, dt = 0.0015181584061698822
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.59 us (2.8%)
patch tree reduce : 2.02 us (0.8%)
gen split merge : 1.04 us (0.4%)
split / merge op : 0/0
apply split merge : 1.35 us (0.5%)
LB compute : 243.92 us (91.3%)
LB move op cnt : 0
LB apply : 4.61 us (1.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.49 us (66.7%)
Info: cfl dt = 0.0015182968578862069 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.4993e+05 | 262144 | 1 | 3.084e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.7199685182772 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 3.098815182245583, dt = 0.0015182968578862069
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.45 us (2.3%)
patch tree reduce : 1.84 us (0.6%)
gen split merge : 878.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.70 us (0.5%)
LB compute : 294.71 us (92.7%)
LB move op cnt : 0
LB apply : 4.52 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.63 us (67.7%)
Info: cfl dt = 0.0015184382977082864 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2597e+05 | 262144 | 1 | 3.174e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.222055501169535 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 3.1003334791034693, dt = 0.0015184382977082864
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.05 us (2.3%)
patch tree reduce : 1.72 us (0.6%)
gen split merge : 954.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.49 us (0.5%)
LB compute : 288.60 us (92.8%)
LB move op cnt : 0
LB apply : 4.55 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.53 us (67.5%)
Info: cfl dt = 0.00151858282522369 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.4694e+05 | 262144 | 1 | 3.095e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.660927328019824 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 3.1018519174011776, dt = 0.00151858282522369
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.38 us (2.4%)
patch tree reduce : 1.71 us (0.5%)
gen split merge : 908.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.58 us (0.5%)
LB compute : 290.56 us (92.9%)
LB move op cnt : 0
LB apply : 3.89 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.44 us (66.0%)
Info: cfl dt = 0.0015187305475160159 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2392e+05 | 262144 | 1 | 3.182e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.18253666702907 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 3.103370500226401, dt = 0.0015187305475160159
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.81 us (1.7%)
patch tree reduce : 1.96 us (0.5%)
gen split merge : 1.30 us (0.3%)
split / merge op : 0/0
apply split merge : 1.54 us (0.4%)
LB compute : 384.54 us (94.4%)
LB move op cnt : 0
LB apply : 4.16 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.61 us (68.8%)
Info: cfl dt = 0.0015188815698566173 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.1647e+05 | 262144 | 1 | 3.211e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.0288323550503 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 3.1048892307739173, dt = 0.0015188815698566173
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.51 us (2.9%)
patch tree reduce : 2.04 us (0.8%)
gen split merge : 943.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.34 us (0.5%)
LB compute : 236.20 us (91.0%)
LB move op cnt : 0
LB apply : 4.22 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.48 us (64.5%)
Info: cfl dt = 0.0015190360293930356 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2166e+05 | 262144 | 1 | 3.190e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.138676120544996 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 3.106408112343774, dt = 0.0015190360293930356
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.51 us (2.1%)
patch tree reduce : 1.85 us (0.6%)
gen split merge : 1.04 us (0.3%)
split / merge op : 0/0
apply split merge : 1.58 us (0.5%)
LB compute : 285.20 us (92.7%)
LB move op cnt : 0
LB apply : 4.66 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.41 us (65.3%)
Info: cfl dt = 0.001519194045362695 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2559e+05 | 262144 | 1 | 3.175e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.222522671169585 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 3.1079271483731667, dt = 0.001519194045362695
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.31 us (2.8%)
patch tree reduce : 1.80 us (0.7%)
gen split merge : 995.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.37 us (0.5%)
LB compute : 237.07 us (91.3%)
LB move op cnt : 0
LB apply : 4.34 us (1.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.47 us (67.0%)
Info: cfl dt = 0.0015193556812159621 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.3014e+05 | 262144 | 1 | 3.158e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.3191629369857 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 3.1094463424185292, dt = 0.0015193556812159621
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.00 us (2.3%)
patch tree reduce : 1.86 us (0.6%)
gen split merge : 870.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.28 us (0.4%)
LB compute : 287.98 us (92.9%)
LB move op cnt : 0
LB apply : 3.99 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.43 us (65.6%)
Info: cfl dt = 0.0015195205374633246 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.2664e+05 | 262144 | 1 | 3.608e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.161403812519357 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 3.1109656980997453, dt = 0.0015195205374633246
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.85 us (2.7%)
patch tree reduce : 1.97 us (0.8%)
gen split merge : 1.08 us (0.4%)
split / merge op : 0/0
apply split merge : 1.48 us (0.6%)
LB compute : 235.33 us (91.3%)
LB move op cnt : 0
LB apply : 4.31 us (1.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.39 us (63.2%)
Info: cfl dt = 0.0015196893681854585 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.8224e+05 | 262144 | 1 | 3.351e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.323362712615715 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 3.1124852186372087, dt = 0.0015196893681854585
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.95 us (2.5%)
patch tree reduce : 2.02 us (0.7%)
gen split merge : 876.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.40 us (0.5%)
LB compute : 252.77 us (91.9%)
LB move op cnt : 0
LB apply : 4.20 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.55 us (67.5%)
Info: cfl dt = 0.001519862331722133 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.1295e+05 | 262144 | 1 | 3.225e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.965996373656644 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 3.114004908005394, dt = 0.001519862331722133
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.03 us (2.6%)
patch tree reduce : 1.98 us (0.7%)
gen split merge : 1.07 us (0.4%)
split / merge op : 0/0
apply split merge : 1.41 us (0.5%)
LB compute : 243.26 us (91.6%)
LB move op cnt : 0
LB apply : 4.23 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.51 us (66.3%)
Info: cfl dt = 0.0015200393040285044 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2114e+05 | 262144 | 1 | 3.192e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.138977844648224 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 3.115524770337116, dt = 0.0015200393040285044
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.86 us (3.0%)
patch tree reduce : 1.81 us (0.7%)
gen split merge : 1.00 us (0.4%)
split / merge op : 0/0
apply split merge : 1.35 us (0.5%)
LB compute : 243.12 us (91.3%)
LB move op cnt : 0
LB apply : 4.26 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.34 us (64.2%)
Info: cfl dt = 0.0015202201936814225 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2286e+05 | 262144 | 1 | 3.186e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.17674971991939 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 3.1170448096411447, dt = 0.0015202201936814225
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.86 us (2.1%)
patch tree reduce : 1.78 us (0.5%)
gen split merge : 1.05 us (0.3%)
split / merge op : 0/0
apply split merge : 1.57 us (0.5%)
LB compute : 305.24 us (93.3%)
LB move op cnt : 0
LB apply : 4.50 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.50 us (65.1%)
Info: cfl dt = 0.0015204042886740893 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2149e+05 | 262144 | 1 | 3.191e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.150191369457144 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 3.118565029834826, dt = 0.0015204042886740893
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.68 us (2.5%)
patch tree reduce : 1.74 us (0.7%)
gen split merge : 939.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.64 us (0.6%)
LB compute : 244.58 us (91.7%)
LB move op cnt : 0
LB apply : 4.11 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.41 us (64.5%)
Info: cfl dt = 0.0015204616254958867 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2602e+05 | 262144 | 1 | 3.174e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.24690615123272 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 3.1200854341235003, dt = 0.0015204616254958867
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.76 us (2.4%)
patch tree reduce : 1.84 us (0.7%)
gen split merge : 1.17 us (0.4%)
split / merge op : 0/0
apply split merge : 1.46 us (0.5%)
LB compute : 255.99 us (92.0%)
LB move op cnt : 0
LB apply : 4.38 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.53 us (66.8%)
Info: cfl dt = 0.001520407634848765 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2105e+05 | 262144 | 1 | 3.193e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.14379994567013 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 3.121605895748996, dt = 0.001520407634848765
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.91 us (2.6%)
patch tree reduce : 1.74 us (0.7%)
gen split merge : 1.12 us (0.4%)
split / merge op : 0/0
apply split merge : 1.38 us (0.5%)
LB compute : 243.06 us (91.8%)
LB move op cnt : 0
LB apply : 4.16 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.36 us (63.6%)
Info: cfl dt = 0.0015203548056675201 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2264e+05 | 262144 | 1 | 3.187e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.176454593506765 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 3.123126303383845, dt = 0.0015203548056675201
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.94 us (2.6%)
patch tree reduce : 1.93 us (0.7%)
gen split merge : 1.03 us (0.4%)
split / merge op : 0/0
apply split merge : 1.39 us (0.5%)
LB compute : 242.39 us (91.6%)
LB move op cnt : 0
LB apply : 4.47 us (1.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.36 us (63.5%)
Info: cfl dt = 0.0015203031301114812 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2653e+05 | 262144 | 1 | 3.172e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.256995537595028 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 3.1246466581895125, dt = 0.0015203031301114812
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.77 us (2.1%)
patch tree reduce : 1.85 us (0.6%)
gen split merge : 1.02 us (0.3%)
split / merge op : 0/0
apply split merge : 1.43 us (0.4%)
LB compute : 296.88 us (93.1%)
LB move op cnt : 0
LB apply : 4.17 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.45 us (67.2%)
Info: cfl dt = 0.0015202526192163396 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.3343e+05 | 262144 | 1 | 3.145e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.40043697800142 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 3.126166961319624, dt = 0.0015202526192163396
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.02 us (2.3%)
patch tree reduce : 1.82 us (0.6%)
gen split merge : 1.04 us (0.3%)
split / merge op : 0/0
apply split merge : 1.24 us (0.4%)
LB compute : 277.79 us (92.7%)
LB move op cnt : 0
LB apply : 4.12 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.85 us (69.4%)
Info: cfl dt = 0.0015202033093761995 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2188e+05 | 262144 | 1 | 3.190e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.15875042995192 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 3.1276872139388403, dt = 0.0015202033093761995
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.25 us (2.7%)
patch tree reduce : 1.99 us (0.7%)
gen split merge : 885.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.30 us (0.5%)
LB compute : 247.01 us (91.6%)
LB move op cnt : 0
LB apply : 4.17 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.41 us (63.2%)
Info: cfl dt = 0.0015201552674344952 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.5414e+05 | 262144 | 1 | 3.069e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.831818405766526 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 3.1292074172482165, dt = 0.0015201552674344952
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.89 us (2.7%)
patch tree reduce : 1.80 us (0.7%)
gen split merge : 1.06 us (0.4%)
split / merge op : 0/0
apply split merge : 1.31 us (0.5%)
LB compute : 235.49 us (91.4%)
LB move op cnt : 0
LB apply : 4.25 us (1.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.36 us (63.6%)
Info: cfl dt = 0.0015201086739841981 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2606e+05 | 262144 | 1 | 3.173e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.244991580624745 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 3.130727572515651, dt = 0.0015201086739841981
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.72 us (2.5%)
patch tree reduce : 1.92 us (0.7%)
gen split merge : 937.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.37 us (0.5%)
LB compute : 250.57 us (91.9%)
LB move op cnt : 0
LB apply : 4.14 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.44 us (66.0%)
Info: cfl dt = 0.0015200637173200602 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2492e+05 | 262144 | 1 | 3.178e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.22058578112013 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 3.1322476811896354, dt = 0.0015200637173200602
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.33 us (2.7%)
patch tree reduce : 2.04 us (0.7%)
gen split merge : 1.24 us (0.5%)
split / merge op : 0/0
apply split merge : 1.46 us (0.5%)
LB compute : 250.69 us (91.3%)
LB move op cnt : 0
LB apply : 4.43 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.46 us (66.2%)
Info: cfl dt = 0.0015200205926460028 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.6821e+05 | 262144 | 1 | 3.019e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 18.12372515512156 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 3.1337677449069554, dt = 0.0015200205926460028
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.95 us (2.7%)
patch tree reduce : 1.96 us (0.8%)
gen split merge : 1.07 us (0.4%)
split / merge op : 0/0
apply split merge : 1.35 us (0.5%)
LB compute : 234.33 us (91.1%)
LB move op cnt : 0
LB apply : 4.37 us (1.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.45 us (64.1%)
Info: cfl dt = 0.0015199794934892521 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2369e+05 | 262144 | 1 | 3.183e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.193854353453883 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 3.1352877654996014, dt = 0.0015199794934892521
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.71 us (2.4%)
patch tree reduce : 1.72 us (0.6%)
gen split merge : 875.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.28 us (0.5%)
LB compute : 252.04 us (91.9%)
LB move op cnt : 0
LB apply : 4.59 us (1.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.47 us (66.6%)
Info: cfl dt = 0.0015199406004063503 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2016e+05 | 262144 | 1 | 3.196e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.119849869159523 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 3.1368077449930905, dt = 0.0015199406004063503
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.27 us (2.0%)
patch tree reduce : 1.99 us (0.6%)
gen split merge : 1.05 us (0.3%)
split / merge op : 0/0
apply split merge : 1.56 us (0.5%)
LB compute : 289.21 us (93.0%)
LB move op cnt : 0
LB apply : 4.18 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.73 us (63.5%)
Info: cfl dt = 0.0015199040851215694 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.5020e+05 | 262144 | 1 | 3.083e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.746470326718867 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 3.138327685593497, dt = 0.0015199040851215694
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.11 us (2.2%)
patch tree reduce : 1.87 us (0.6%)
gen split merge : 1.17 us (0.4%)
split / merge op : 0/0
apply split merge : 1.30 us (0.4%)
LB compute : 298.91 us (92.9%)
LB move op cnt : 0
LB apply : 4.21 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.53 us (66.4%)
Info: cfl dt = 0.0015198700980280219 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.2294e+05 | 262144 | 1 | 3.626e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.089765672390088 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 3.1398475896786184, dt = 0.0015198700980280219
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.88 us (2.1%)
patch tree reduce : 1.72 us (0.5%)
gen split merge : 972.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.44 us (0.4%)
LB compute : 305.05 us (93.2%)
LB move op cnt : 0
LB apply : 4.48 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.48 us (66.1%)
Info: cfl dt = 0.0015198387258634296 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.3157e+05 | 262144 | 1 | 3.152e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.35667890143527 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 3.1413674597766463, dt = 0.0015198387258634296
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.74 us (2.1%)
patch tree reduce : 1.97 us (0.6%)
gen split merge : 979.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.27 us (0.4%)
LB compute : 293.06 us (92.9%)
LB move op cnt : 0
LB apply : 4.37 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.44 us (64.3%)
Info: cfl dt = 0.0015198100206017795 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.1771e+05 | 262144 | 1 | 3.206e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.067056474978802 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 3.14288729850251, dt = 0.0015198100206017795
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.69 us (2.2%)
patch tree reduce : 1.81 us (0.6%)
gen split merge : 930.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.30 us (0.4%)
LB compute : 280.62 us (92.8%)
LB move op cnt : 0
LB apply : 4.29 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.91 us (61.1%)
Info: cfl dt = 0.0015197843381165655 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.7795e+05 | 262144 | 1 | 3.370e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.237011494850407 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 3.1444071085231116, dt = 0.0015197843381165655
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.62 us (2.1%)
patch tree reduce : 1.90 us (0.6%)
gen split merge : 1.01 us (0.3%)
split / merge op : 0/0
apply split merge : 1.24 us (0.4%)
LB compute : 294.49 us (93.2%)
LB move op cnt : 0
LB apply : 4.08 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.48 us (66.8%)
Info: cfl dt = 0.0015197620964468262 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.5291e+05 | 262144 | 1 | 3.482e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.713988315111367 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 3.1459268928612283, dt = 0.0015197620964468262
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.41 us (2.2%)
patch tree reduce : 1.82 us (0.6%)
gen split merge : 1.01 us (0.4%)
split / merge op : 0/0
apply split merge : 1.52 us (0.5%)
LB compute : 265.36 us (92.7%)
LB move op cnt : 0
LB apply : 3.86 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.50 us (65.8%)
Info: cfl dt = 0.0015197431995498045 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2490e+05 | 262144 | 1 | 3.178e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.216339385987276 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 3.147446654957675, dt = 0.0015197431995498045
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.39 us (2.1%)
patch tree reduce : 1.83 us (0.6%)
gen split merge : 896.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.41 us (0.5%)
LB compute : 279.24 us (93.0%)
LB move op cnt : 0
LB apply : 4.00 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.49 us (67.5%)
Info: cfl dt = 0.0015197274918203965 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2589e+05 | 262144 | 1 | 3.174e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.23663661278275 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 3.148966398157225, dt = 0.0015197274918203965
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.61 us (2.2%)
patch tree reduce : 1.82 us (0.6%)
gen split merge : 891.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.43 us (0.5%)
LB compute : 276.19 us (92.8%)
LB move op cnt : 0
LB apply : 4.01 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.32 us (62.0%)
Info: cfl dt = 0.0015197147924704692 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2665e+05 | 262144 | 1 | 3.171e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.25246977284097 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 3.1504861256490457, dt = 0.0015197147924704692
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.90 us (2.7%)
patch tree reduce : 1.95 us (0.7%)
gen split merge : 932.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.37 us (0.5%)
LB compute : 237.52 us (91.5%)
LB move op cnt : 0
LB apply : 3.99 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.39 us (65.4%)
Info: cfl dt = 0.0015197049210970133 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.8286e+05 | 262144 | 1 | 3.349e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.338293687319787 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 3.1520058404415163, dt = 0.0015197049210970133
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.60 us (2.3%)
patch tree reduce : 1.96 us (0.7%)
gen split merge : 971.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.33 us (0.5%)
LB compute : 260.77 us (92.4%)
LB move op cnt : 0
LB apply : 3.97 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.92 us (65.6%)
Info: cfl dt = 0.0015196977131684674 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2538e+05 | 262144 | 1 | 3.176e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.225622327634348 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 3.1535255453626134, dt = 0.0015196977131684674
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.99 us (2.8%)
patch tree reduce : 1.82 us (0.7%)
gen split merge : 972.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.40 us (0.5%)
LB compute : 232.15 us (91.4%)
LB move op cnt : 0
LB apply : 3.91 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.38 us (64.9%)
Info: cfl dt = 0.0015196930289473947 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2957e+05 | 262144 | 1 | 3.160e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.31303471401558 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 3.155045243075782, dt = 0.0015196930289473947
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.14 us (2.5%)
patch tree reduce : 1.76 us (0.6%)
gen split merge : 1.13 us (0.4%)
split / merge op : 0/0
apply split merge : 1.43 us (0.5%)
LB compute : 265.92 us (92.2%)
LB move op cnt : 0
LB apply : 4.10 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.59 us (66.4%)
Info: cfl dt = 0.0015196907566968362 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2809e+05 | 262144 | 1 | 3.166e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.282166986337472 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 3.1565649361047297, dt = 0.0015196907566968362
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.56 us (2.5%)
patch tree reduce : 1.81 us (0.7%)
gen split merge : 776.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.50 us (0.6%)
LB compute : 245.09 us (92.1%)
LB move op cnt : 0
LB apply : 3.93 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.76 us (64.0%)
Info: cfl dt = 0.0015196908104934041 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.1871e+05 | 262144 | 1 | 3.202e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.086264395295792 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 3.1580846268614264, dt = 0.0015196908104934041
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.30 us (2.2%)
patch tree reduce : 1.89 us (0.7%)
gen split merge : 1.10 us (0.4%)
split / merge op : 0/0
apply split merge : 1.54 us (0.5%)
LB compute : 263.53 us (92.2%)
LB move op cnt : 0
LB apply : 4.47 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.49 us (66.5%)
Info: cfl dt = 0.0015196931254368975 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 7.6012e+05 | 262144 | 1 | 3.449e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.863585141166773 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 3.1596043176719197, dt = 0.0015196931254368975
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.87 us (2.3%)
patch tree reduce : 1.89 us (0.6%)
gen split merge : 1.06 us (0.4%)
split / merge op : 0/0
apply split merge : 1.72 us (0.6%)
LB compute : 275.13 us (92.3%)
LB move op cnt : 0
LB apply : 4.37 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.38 us (62.4%)
Info: cfl dt = 0.0015196976530024548 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.3068e+05 | 262144 | 1 | 3.156e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.33615246636898 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 3.161124010797357, dt = 0.0015196976530024548
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.15 us (2.7%)
patch tree reduce : 1.98 us (0.7%)
gen split merge : 949.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.60 us (0.6%)
LB compute : 245.72 us (91.5%)
LB move op cnt : 0
LB apply : 4.34 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.53 us (68.2%)
Info: cfl dt = 0.001519704357321424 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.1919e+05 | 262144 | 1 | 3.200e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.09630608916562 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 3.1626437084503594, dt = 0.001519704357321424
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.82 us (2.6%)
patch tree reduce : 1.72 us (0.6%)
gen split merge : 997.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.37 us (0.5%)
LB compute : 243.74 us (91.7%)
LB move op cnt : 0
LB apply : 4.59 us (1.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.37 us (63.6%)
Info: cfl dt = 0.0015197132147939405 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2033e+05 | 262144 | 1 | 3.196e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.12025969213007 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 3.1641634128076808, dt = 0.0015197132147939405
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.48 us (2.5%)
patch tree reduce : 1.78 us (0.7%)
gen split merge : 1.01 us (0.4%)
split / merge op : 0/0
apply split merge : 1.48 us (0.6%)
LB compute : 242.29 us (91.8%)
LB move op cnt : 0
LB apply : 4.19 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.43 us (65.7%)
Info: cfl dt = 0.0015197242258609346 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.4268e+05 | 262144 | 1 | 3.111e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.58672261132891 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 3.1656831260224747, dt = 0.0015197242258609346
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.12 us (2.6%)
patch tree reduce : 2.02 us (0.7%)
gen split merge : 966.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.72 us (0.6%)
LB compute : 254.93 us (91.7%)
LB move op cnt : 0
LB apply : 4.47 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.39 us (64.0%)
Info: cfl dt = 0.0015197374033955016 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.1445e+05 | 262144 | 1 | 3.219e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.997796826523174 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 3.167202850248336, dt = 0.0015197374033955016
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.47 us (2.6%)
patch tree reduce : 2.00 us (0.7%)
gen split merge : 1.00 us (0.4%)
split / merge op : 0/0
apply split merge : 1.65 us (0.6%)
LB compute : 262.52 us (91.7%)
LB move op cnt : 0
LB apply : 4.43 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.67 us (67.8%)
Info: cfl dt = 0.0015197527885220832 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2584e+05 | 262144 | 1 | 3.174e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.23555002184179 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 3.168722587651731, dt = 0.0015197527885220832
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.70 us (2.6%)
patch tree reduce : 1.90 us (0.7%)
gen split merge : 923.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.37 us (0.5%)
LB compute : 239.27 us (91.4%)
LB move op cnt : 0
LB apply : 4.17 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.93 us (63.5%)
Info: cfl dt = 0.0015197704287912123 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.1668e+05 | 262144 | 1 | 3.210e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.044586731711583 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 3.1702423404402533, dt = 0.0015197704287912123
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.65 us (2.4%)
patch tree reduce : 1.97 us (0.7%)
gen split merge : 1.09 us (0.4%)
split / merge op : 0/0
apply split merge : 1.49 us (0.5%)
LB compute : 252.61 us (91.8%)
LB move op cnt : 0
LB apply : 4.49 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.50 us (66.2%)
Info: cfl dt = 0.0015197903739150246 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.1574e+05 | 262144 | 1 | 3.214e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.025265790396148 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 3.1717621108690444, dt = 0.0015197903739150246
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.79 us (2.6%)
patch tree reduce : 1.75 us (0.7%)
gen split merge : 1.02 us (0.4%)
split / merge op : 0/0
apply split merge : 1.63 us (0.6%)
LB compute : 242.71 us (91.5%)
LB move op cnt : 0
LB apply : 4.30 us (1.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.45 us (67.2%)
Info: cfl dt = 0.0015198126785642275 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2358e+05 | 262144 | 1 | 3.183e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.18915186289703 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 3.173281901242959, dt = 0.0015198126785642275
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.31 us (2.8%)
patch tree reduce : 1.70 us (0.7%)
gen split merge : 969.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1.37 us (0.5%)
LB compute : 237.91 us (91.7%)
LB move op cnt : 0
LB apply : 3.92 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.42 us (64.9%)
Info: cfl dt = 0.0015198374055686355 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 8.2180e+05 | 262144 | 1 | 3.190e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.152189981657653 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 3.174801713921523, dt = 0.00019828607847660606
Info: Summary (strategy = round robin): [LoadBalance][rank=0]
- strategy "psweep" : max = 32768.0 min = 32768.0 factor = 1
- strategy "round robin" : max = 31129.6 min = 31129.6 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.62 us (2.2%)
patch tree reduce : 1.82 us (0.6%)
gen split merge : 944.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.38 us (0.5%)
LB compute : 283.57 us (92.9%)
LB move op cnt : 0
LB apply : 4.03 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.38 us (64.2%)
Info: cfl dt = 0.001519840925056047 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 6.8520e+05 | 262144 | 1 | 3.826e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.8658404007116387 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 687.525623913 (s) [Godunov][rank=0]
Total running time of the script: (11 minutes 30.084 seconds)
Estimated memory usage: 1145 MB