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.animation as animation
12 import matplotlib.pyplot as plt
13 import numpy as np
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 9.74 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 : 5.00 us (53.5%)
Info: Summary (strategy = parallel sweep): [LoadBalance][rank=0]
- strategy "psweep" : max = 0.0 min = 0.0 factor = 1
- strategy "round robin" : max = 0.0 min = 0.0 factor = 0.95
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.36 us (0.1%)
patch tree reduce : 1.50 us (0.2%)
gen split merge : 801.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 952.00 ns (0.1%)
LB compute : 929.87 us (98.7%)
LB move op cnt : 0
LB apply : 4.01 us (0.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 46.42 ms, bandwidth = 880.90 MB/s
Info: time since start : 13.389158781 (s) [Godunov][rank=0]
Info: dump to _to_trash/ramses_kh/periodic_0001.vtk [VTK Dump][rank=0]
- took 34.51 ms, bandwidth = 1.19 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 : 6.58 us (1.8%)
patch tree reduce : 1.59 us (0.4%)
gen split merge : 831.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.15 us (0.3%)
LB compute : 343.91 us (94.5%)
LB move op cnt : 0
LB apply : 3.47 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.93 us (65.6%)
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 | 6.1548e+05 | 262144 | 1 | 4.259e-01 | 0.0% | 0.3% 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.00 us (1.6%)
patch tree reduce : 1.48 us (0.4%)
gen split merge : 1.14 us (0.3%)
split / merge op : 0/0
apply split merge : 852.00 ns (0.2%)
LB compute : 352.34 us (94.7%)
LB move op cnt : 0
LB apply : 3.58 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.92 us (69.4%)
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.7407e+05 | 262144 | 1 | 3.387e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.092165902714086 (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.11 us (1.9%)
patch tree reduce : 2.97 us (0.8%)
gen split merge : 3.06 us (0.8%)
split / merge op : 0/0
apply split merge : 1.66 us (0.4%)
LB compute : 352.31 us (93.1%)
LB move op cnt : 0
LB apply : 3.96 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.21 us (71.6%)
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 | 7.8428e+05 | 262144 | 1 | 3.342e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.316635616356038 (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 : 5.98 us (1.6%)
patch tree reduce : 1.66 us (0.4%)
gen split merge : 912.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 892.00 ns (0.2%)
LB compute : 361.29 us (94.8%)
LB move op cnt : 0
LB apply : 4.22 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.86 us (72.2%)
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 | 7.7341e+05 | 262144 | 1 | 3.389e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.07526524018826 (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.36 us (1.6%)
patch tree reduce : 1.40 us (0.4%)
gen split merge : 821.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.21 us (0.3%)
LB compute : 367.77 us (94.8%)
LB move op cnt : 0
LB apply : 4.11 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.23 us (68.0%)
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 | 7.8482e+05 | 262144 | 1 | 3.340e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.32602374688879 (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 : 6.48 us (1.6%)
patch tree reduce : 1.36 us (0.3%)
gen split merge : 1.03 us (0.2%)
split / merge op : 0/0
apply split merge : 1.43 us (0.3%)
LB compute : 396.24 us (94.8%)
LB move op cnt : 0
LB apply : 4.75 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.12 us (73.2%)
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 | 6.8935e+05 | 262144 | 1 | 3.803e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.217464307138359 (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 : 5.99 us (1.5%)
patch tree reduce : 1.42 us (0.4%)
gen split merge : 831.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.09 us (0.3%)
LB compute : 368.09 us (94.7%)
LB move op cnt : 0
LB apply : 4.61 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.28 us (68.5%)
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.9225e+05 | 262144 | 1 | 3.309e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.48782216746399 (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 : 6.53 us (1.7%)
patch tree reduce : 1.30 us (0.3%)
gen split merge : 992.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.09 us (0.3%)
LB compute : 353.03 us (94.5%)
LB move op cnt : 0
LB apply : 4.13 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.31 us (71.9%)
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 | 7.7934e+05 | 262144 | 1 | 3.364e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.201793975552476 (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 : 6.49 us (1.9%)
patch tree reduce : 1.48 us (0.4%)
gen split merge : 822.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.15 us (0.3%)
LB compute : 329.61 us (94.1%)
LB move op cnt : 0
LB apply : 3.85 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.16 us (72.7%)
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 | 7.9344e+05 | 262144 | 1 | 3.304e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.51188384068724 (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 : 6.37 us (1.7%)
patch tree reduce : 1.57 us (0.4%)
gen split merge : 932.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.07 us (0.3%)
LB compute : 354.16 us (94.3%)
LB move op cnt : 0
LB apply : 4.44 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.96 us (73.0%)
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 | 7.8242e+05 | 262144 | 1 | 3.350e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.26776852811081 (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 : 6.81 us (1.6%)
patch tree reduce : 1.44 us (0.3%)
gen split merge : 822.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.09 us (0.3%)
LB compute : 395.46 us (95.0%)
LB move op cnt : 0
LB apply : 4.07 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.84 us (72.0%)
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 | 7.2976e+05 | 262144 | 1 | 3.592e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.104813469612775 (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 : 6.72 us (1.7%)
patch tree reduce : 1.72 us (0.4%)
gen split merge : 901.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.20 us (0.3%)
LB compute : 379.30 us (94.5%)
LB move op cnt : 0
LB apply : 4.42 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.96 us (74.1%)
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 | 7.2953e+05 | 262144 | 1 | 3.593e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.09873287770488 (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.61 us (1.7%)
patch tree reduce : 1.63 us (0.4%)
gen split merge : 1.01 us (0.3%)
split / merge op : 0/0
apply split merge : 1.21 us (0.3%)
LB compute : 366.14 us (94.6%)
LB move op cnt : 0
LB apply : 4.09 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.95 us (68.5%)
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 | 7.7060e+05 | 262144 | 1 | 3.402e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.003914623373337 (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.04 us (1.6%)
patch tree reduce : 1.69 us (0.4%)
gen split merge : 992.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 922.00 ns (0.2%)
LB compute : 429.81 us (95.0%)
LB move op cnt : 0
LB apply : 4.93 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.49 us (76.7%)
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 | 7.6995e+05 | 262144 | 1 | 3.405e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.98869855294376 (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 : 5.85 us (1.4%)
patch tree reduce : 1.78 us (0.4%)
gen split merge : 832.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.10 us (0.3%)
LB compute : 391.35 us (95.1%)
LB move op cnt : 0
LB apply : 4.27 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.66 us (71.8%)
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 | 7.7248e+05 | 262144 | 1 | 3.394e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.043775832453964 (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 : 6.28 us (1.9%)
patch tree reduce : 1.35 us (0.4%)
gen split merge : 932.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.10 us (0.3%)
LB compute : 311.36 us (94.1%)
LB move op cnt : 0
LB apply : 3.80 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.03 us (72.6%)
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 | 7.8137e+05 | 262144 | 1 | 3.355e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.23889211585936 (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 : 6.30 us (1.9%)
patch tree reduce : 1.42 us (0.4%)
gen split merge : 1.32 us (0.4%)
split / merge op : 0/0
apply split merge : 1.10 us (0.3%)
LB compute : 315.94 us (94.0%)
LB move op cnt : 0
LB apply : 3.87 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.55 us (70.8%)
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 | 6.7817e+05 | 262144 | 1 | 3.865e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.961588115432631 (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 : 6.44 us (1.8%)
patch tree reduce : 1.30 us (0.4%)
gen split merge : 1.24 us (0.3%)
split / merge op : 0/0
apply split merge : 1.29 us (0.4%)
LB compute : 337.57 us (94.4%)
LB move op cnt : 0
LB apply : 3.69 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.41 us (67.3%)
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 | 7.7838e+05 | 262144 | 1 | 3.368e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.17166932623803 (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 : 6.22 us (1.8%)
patch tree reduce : 1.72 us (0.5%)
gen split merge : 821.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 882.00 ns (0.3%)
LB compute : 316.85 us (94.2%)
LB move op cnt : 0
LB apply : 3.94 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.18 us (67.3%)
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 | 7.8652e+05 | 262144 | 1 | 3.333e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.350632849122885 (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 : 6.43 us (1.6%)
patch tree reduce : 1.40 us (0.4%)
gen split merge : 881.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.2%)
LB compute : 371.55 us (94.8%)
LB move op cnt : 0
LB apply : 3.82 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.70 us (73.5%)
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 | 7.7574e+05 | 262144 | 1 | 3.379e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.1122388748111 (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 : 6.65 us (2.0%)
patch tree reduce : 1.41 us (0.4%)
gen split merge : 902.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.13 us (0.3%)
LB compute : 304.87 us (93.8%)
LB move op cnt : 0
LB apply : 3.63 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.18 us (67.3%)
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 | 7.7522e+05 | 262144 | 1 | 3.382e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.10023810059048 (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 : 6.44 us (1.7%)
patch tree reduce : 1.73 us (0.5%)
gen split merge : 852.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.09 us (0.3%)
LB compute : 350.19 us (94.5%)
LB move op cnt : 0
LB apply : 4.10 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.82 us (70.8%)
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.7174e+05 | 262144 | 1 | 3.397e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.023105760226663 (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 : 6.83 us (1.8%)
patch tree reduce : 1.39 us (0.4%)
gen split merge : 1.08 us (0.3%)
split / merge op : 0/0
apply split merge : 1.01 us (0.3%)
LB compute : 362.93 us (94.5%)
LB move op cnt : 0
LB apply : 4.13 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.87 us (74.5%)
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.1077e+05 | 262144 | 1 | 3.688e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.677972683387353 (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 : 6.20 us (1.5%)
patch tree reduce : 1.48 us (0.4%)
gen split merge : 831.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 892.00 ns (0.2%)
LB compute : 391.02 us (94.9%)
LB move op cnt : 0
LB apply : 4.61 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.43 us (73.7%)
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 | 6.7276e+05 | 262144 | 1 | 3.897e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.83902694021648 (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.42 us (1.5%)
patch tree reduce : 1.40 us (0.3%)
gen split merge : 841.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.13 us (0.3%)
LB compute : 402.89 us (95.2%)
LB move op cnt : 0
LB apply : 3.79 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.76 us (74.3%)
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.8007e+05 | 262144 | 1 | 3.361e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.205288138443088 (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.29 us (1.7%)
patch tree reduce : 1.41 us (0.4%)
gen split merge : 852.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.02 us (0.3%)
LB compute : 343.52 us (94.5%)
LB move op cnt : 0
LB apply : 4.18 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.49 us (69.5%)
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 | 7.8975e+05 | 262144 | 1 | 3.319e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.41815514040331 (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 : 6.12 us (1.6%)
patch tree reduce : 1.53 us (0.4%)
gen split merge : 812.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 891.00 ns (0.2%)
LB compute : 351.08 us (94.6%)
LB move op cnt : 0
LB apply : 4.21 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.92 us (73.5%)
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 | 7.7534e+05 | 262144 | 1 | 3.381e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.099447370393264 (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 : 6.39 us (1.5%)
patch tree reduce : 1.79 us (0.4%)
gen split merge : 912.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 891.00 ns (0.2%)
LB compute : 394.59 us (95.0%)
LB move op cnt : 0
LB apply : 4.25 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.65 us (71.7%)
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 | 7.7878e+05 | 262144 | 1 | 3.366e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.174549689740136 (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 : 6.34 us (1.7%)
patch tree reduce : 1.35 us (0.4%)
gen split merge : 832.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.22 us (0.3%)
LB compute : 346.78 us (94.3%)
LB move op cnt : 0
LB apply : 4.22 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.58 us (72.4%)
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 | 7.9489e+05 | 262144 | 1 | 3.298e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.529101498110073 (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 : 6.25 us (1.6%)
patch tree reduce : 1.61 us (0.4%)
gen split merge : 922.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.09 us (0.3%)
LB compute : 369.64 us (94.9%)
LB move op cnt : 0
LB apply : 3.94 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.77 us (72.8%)
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 | 7.9296e+05 | 262144 | 1 | 3.306e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.485850827526516 (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.26 us (1.6%)
patch tree reduce : 1.30 us (0.3%)
gen split merge : 831.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.09 us (0.3%)
LB compute : 381.16 us (94.9%)
LB move op cnt : 0
LB apply : 4.75 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.75 us (71.9%)
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 | 7.8236e+05 | 262144 | 1 | 3.351e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.25132382899941 (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 : 6.63 us (1.6%)
patch tree reduce : 1.47 us (0.4%)
gen split merge : 832.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 851.00 ns (0.2%)
LB compute : 387.77 us (95.0%)
LB move op cnt : 0
LB apply : 4.16 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.15 us (73.0%)
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 | 7.7628e+05 | 262144 | 1 | 3.377e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.116521737795132 (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.13 us (2.1%)
patch tree reduce : 1.44 us (0.4%)
gen split merge : 1.25 us (0.4%)
split / merge op : 0/0
apply split merge : 1.01 us (0.3%)
LB compute : 326.03 us (93.8%)
LB move op cnt : 0
LB apply : 4.09 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.50 us (70.6%)
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 | 7.0854e+05 | 262144 | 1 | 3.700e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.622246964412087 (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 : 6.49 us (1.9%)
patch tree reduce : 1.37 us (0.4%)
gen split merge : 972.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.13 us (0.3%)
LB compute : 313.62 us (94.0%)
LB move op cnt : 0
LB apply : 3.82 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.53 us (70.3%)
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 | 7.8275e+05 | 262144 | 1 | 3.349e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.257790722481445 (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 : 6.28 us (1.8%)
patch tree reduce : 1.36 us (0.4%)
gen split merge : 1.13 us (0.3%)
split / merge op : 0/0
apply split merge : 1.21 us (0.3%)
LB compute : 328.69 us (94.0%)
LB move op cnt : 0
LB apply : 4.07 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.98 us (70.5%)
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 | 7.1799e+05 | 262144 | 1 | 3.651e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.829479006961629 (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 : 6.45 us (1.9%)
patch tree reduce : 1.30 us (0.4%)
gen split merge : 821.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.04 us (0.3%)
LB compute : 314.39 us (94.0%)
LB move op cnt : 0
LB apply : 3.63 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.58 us (71.6%)
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 | 7.8291e+05 | 262144 | 1 | 3.348e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.26015184365189 (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 : 6.54 us (1.9%)
patch tree reduce : 1.40 us (0.4%)
gen split merge : 1.13 us (0.3%)
split / merge op : 0/0
apply split merge : 872.00 ns (0.2%)
LB compute : 331.29 us (94.4%)
LB move op cnt : 0
LB apply : 3.77 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.45 us (71.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 | 7.8067e+05 | 262144 | 1 | 3.358e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.210109539166766 (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 : 6.59 us (1.8%)
patch tree reduce : 1.65 us (0.5%)
gen split merge : 831.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.00 us (0.3%)
LB compute : 339.91 us (94.5%)
LB move op cnt : 0
LB apply : 3.81 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.17 us (68.9%)
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 | 7.8639e+05 | 262144 | 1 | 3.334e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.335592642966958 (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 : 6.74 us (1.8%)
patch tree reduce : 1.29 us (0.4%)
gen split merge : 912.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.26 us (0.3%)
LB compute : 344.91 us (94.3%)
LB move op cnt : 0
LB apply : 3.83 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.59 us (70.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 | 7.4704e+05 | 262144 | 1 | 3.509e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.467485974934466 (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 : 6.70 us (2.0%)
patch tree reduce : 1.53 us (0.5%)
gen split merge : 831.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 862.00 ns (0.3%)
LB compute : 310.16 us (93.8%)
LB move op cnt : 0
LB apply : 4.30 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.55 us (72.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 | 7.8291e+05 | 262144 | 1 | 3.348e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.257756214018272 (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 : 5.98 us (1.6%)
patch tree reduce : 1.30 us (0.4%)
gen split merge : 832.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.08 us (0.3%)
LB compute : 351.08 us (94.5%)
LB move op cnt : 0
LB apply : 4.62 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.47 us (70.6%)
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.9586e+05 | 262144 | 1 | 3.767e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.338414871517768 (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 : 5.98 us (1.7%)
patch tree reduce : 1.71 us (0.5%)
gen split merge : 852.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.16 us (0.3%)
LB compute : 339.58 us (94.5%)
LB move op cnt : 0
LB apply : 3.87 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.49 us (70.9%)
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 | 7.5273e+05 | 262144 | 1 | 3.483e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.591639916665883 (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.59 us (1.6%)
patch tree reduce : 1.66 us (0.4%)
gen split merge : 922.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.01 us (0.2%)
LB compute : 387.00 us (95.0%)
LB move op cnt : 0
LB apply : 3.98 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.56 us (70.7%)
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 | 7.0615e+05 | 262144 | 1 | 3.712e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.564438743737549 (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 : 5.94 us (1.5%)
patch tree reduce : 1.20 us (0.3%)
gen split merge : 571.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 782.00 ns (0.2%)
LB compute : 372.71 us (95.2%)
LB move op cnt : 0
LB apply : 4.41 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.74 us (72.8%)
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 | 7.8002e+05 | 262144 | 1 | 3.361e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.192379702946756 (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.14 us (1.8%)
patch tree reduce : 1.48 us (0.4%)
gen split merge : 882.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.09 us (0.3%)
LB compute : 383.75 us (94.7%)
LB move op cnt : 0
LB apply : 4.18 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.86 us (74.4%)
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 | 7.8243e+05 | 262144 | 1 | 3.350e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.245009528592348 (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 : 6.79 us (1.8%)
patch tree reduce : 1.56 us (0.4%)
gen split merge : 912.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 942.00 ns (0.2%)
LB compute : 359.93 us (94.7%)
LB move op cnt : 0
LB apply : 3.74 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.58 us (70.1%)
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 | 7.7141e+05 | 262144 | 1 | 3.398e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.001717051969585 (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 : 7.50 us (2.0%)
patch tree reduce : 1.58 us (0.4%)
gen split merge : 972.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 891.00 ns (0.2%)
LB compute : 351.06 us (94.1%)
LB move op cnt : 0
LB apply : 4.47 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.67 us (71.7%)
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 | 7.8295e+05 | 262144 | 1 | 3.348e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.255560513140924 (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 : 6.03 us (1.7%)
patch tree reduce : 1.51 us (0.4%)
gen split merge : 932.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 912.00 ns (0.3%)
LB compute : 341.52 us (94.7%)
LB move op cnt : 0
LB apply : 3.54 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.13 us (73.4%)
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 | 7.8266e+05 | 262144 | 1 | 3.349e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.248935856511302 (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 : 6.54 us (1.6%)
patch tree reduce : 1.81 us (0.4%)
gen split merge : 1.22 us (0.3%)
split / merge op : 0/0
apply split merge : 871.00 ns (0.2%)
LB compute : 398.36 us (95.0%)
LB move op cnt : 0
LB apply : 4.29 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.63 us (71.4%)
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 | 7.7484e+05 | 262144 | 1 | 3.383e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.076279830080303 (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 : 6.32 us (2.0%)
patch tree reduce : 1.38 us (0.4%)
gen split merge : 962.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.10 us (0.3%)
LB compute : 303.56 us (93.7%)
LB move op cnt : 0
LB apply : 3.90 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.47 us (69.5%)
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 | 6.6436e+05 | 262144 | 1 | 3.946e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.64132245919077 (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 : 6.66 us (2.0%)
patch tree reduce : 1.40 us (0.4%)
gen split merge : 811.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.39 us (0.4%)
LB compute : 311.57 us (93.8%)
LB move op cnt : 0
LB apply : 3.84 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.77 us (74.2%)
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 | 7.7499e+05 | 262144 | 1 | 3.383e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.07914079131697 (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 : 6.61 us (1.6%)
patch tree reduce : 1.61 us (0.4%)
gen split merge : 821.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.00 us (0.2%)
LB compute : 380.43 us (94.8%)
LB move op cnt : 0
LB apply : 3.95 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.43 us (70.8%)
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 | 7.7496e+05 | 262144 | 1 | 3.383e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.07841171567001 (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.17 us (1.7%)
patch tree reduce : 1.52 us (0.4%)
gen split merge : 851.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 882.00 ns (0.2%)
LB compute : 346.00 us (94.6%)
LB move op cnt : 0
LB apply : 3.82 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.93 us (66.6%)
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.8340e+05 | 262144 | 1 | 3.346e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.264374446083544 (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 : 6.58 us (1.9%)
patch tree reduce : 1.42 us (0.4%)
gen split merge : 1.01 us (0.3%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.3%)
LB compute : 320.94 us (94.0%)
LB move op cnt : 0
LB apply : 4.10 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.43 us (68.6%)
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 | 7.9092e+05 | 262144 | 1 | 3.314e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.43003743909011 (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 : 6.99 us (2.0%)
patch tree reduce : 1.62 us (0.5%)
gen split merge : 892.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.04 us (0.3%)
LB compute : 335.75 us (94.2%)
LB move op cnt : 0
LB apply : 3.75 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.27 us (70.1%)
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 | 7.8677e+05 | 262144 | 1 | 3.332e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.338751920775334 (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 : 5.88 us (1.8%)
patch tree reduce : 1.60 us (0.5%)
gen split merge : 811.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.07 us (0.3%)
LB compute : 314.19 us (94.0%)
LB move op cnt : 0
LB apply : 3.95 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.52 us (68.0%)
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 | 7.7738e+05 | 262144 | 1 | 3.372e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.13176330961042 (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 : 6.60 us (1.8%)
patch tree reduce : 1.78 us (0.5%)
gen split merge : 951.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 852.00 ns (0.2%)
LB compute : 354.74 us (94.7%)
LB move op cnt : 0
LB apply : 3.84 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.60 us (72.8%)
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 | 6.9804e+05 | 262144 | 1 | 3.755e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.383428864481584 (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 : 6.07 us (1.5%)
patch tree reduce : 1.29 us (0.3%)
gen split merge : 1.04 us (0.3%)
split / merge op : 0/0
apply split merge : 1.09 us (0.3%)
LB compute : 389.72 us (95.0%)
LB move op cnt : 0
LB apply : 4.12 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.90 us (72.8%)
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 | 7.8337e+05 | 262144 | 1 | 3.346e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.264142824288164 (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.59 us (1.7%)
patch tree reduce : 1.67 us (0.4%)
gen split merge : 832.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 902.00 ns (0.2%)
LB compute : 375.46 us (94.7%)
LB move op cnt : 0
LB apply : 4.47 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.58 us (72.7%)
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 | 7.8055e+05 | 262144 | 1 | 3.358e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.201967068881537 (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 : 6.55 us (1.8%)
patch tree reduce : 1.34 us (0.4%)
gen split merge : 832.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.00 us (0.3%)
LB compute : 344.56 us (94.6%)
LB move op cnt : 0
LB apply : 3.80 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.02 us (65.6%)
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 | 7.7773e+05 | 262144 | 1 | 3.371e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.1399826838591 (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 : 6.21 us (1.6%)
patch tree reduce : 1.31 us (0.3%)
gen split merge : 812.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.02 us (0.3%)
LB compute : 357.56 us (94.8%)
LB move op cnt : 0
LB apply : 3.58 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.09 us (72.5%)
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 | 6.8434e+05 | 262144 | 1 | 3.831e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.082031180409878 (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 : 6.34 us (1.8%)
patch tree reduce : 1.36 us (0.4%)
gen split merge : 892.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.00 us (0.3%)
LB compute : 339.66 us (94.2%)
LB move op cnt : 0
LB apply : 3.99 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.05 us (74.1%)
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 | 7.1260e+05 | 262144 | 1 | 3.679e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.704766006850912 (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 : 6.96 us (2.1%)
patch tree reduce : 1.33 us (0.4%)
gen split merge : 832.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.00 us (0.3%)
LB compute : 313.28 us (93.7%)
LB move op cnt : 0
LB apply : 4.66 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.45 us (68.7%)
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 | 6.8262e+05 | 262144 | 1 | 3.840e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.044246772947174 (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 : 6.36 us (1.8%)
patch tree reduce : 1.53 us (0.4%)
gen split merge : 901.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.3%)
LB compute : 336.93 us (94.1%)
LB move op cnt : 0
LB apply : 4.58 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.39 us (69.6%)
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 | 7.0493e+05 | 262144 | 1 | 3.719e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.535960846886717 (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.43 us (1.9%)
patch tree reduce : 1.41 us (0.4%)
gen split merge : 831.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.02 us (0.3%)
LB compute : 325.66 us (94.1%)
LB move op cnt : 0
LB apply : 3.84 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.06 us (70.8%)
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 | 7.8807e+05 | 262144 | 1 | 3.326e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.368307609638727 (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 : 6.22 us (1.9%)
patch tree reduce : 1.42 us (0.4%)
gen split merge : 1.21 us (0.4%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.3%)
LB compute : 306.26 us (93.7%)
LB move op cnt : 0
LB apply : 4.47 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.93 us (69.2%)
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 | 7.6113e+05 | 262144 | 1 | 3.444e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.774619701504278 (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 : 6.63 us (2.0%)
patch tree reduce : 1.37 us (0.4%)
gen split merge : 821.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.29 us (0.4%)
LB compute : 306.46 us (93.7%)
LB move op cnt : 0
LB apply : 4.04 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.43 us (68.8%)
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 | 7.0748e+05 | 262144 | 1 | 3.705e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.592105844583395 (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 : 6.54 us (1.9%)
patch tree reduce : 1.71 us (0.5%)
gen split merge : 832.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.27 us (0.4%)
LB compute : 328.00 us (94.0%)
LB move op cnt : 0
LB apply : 3.89 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.80 us (74.4%)
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 | 7.7752e+05 | 262144 | 1 | 3.372e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.13567209095308 (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 : 5.99 us (1.7%)
patch tree reduce : 1.59 us (0.5%)
gen split merge : 922.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 871.00 ns (0.2%)
LB compute : 313.57 us (88.6%)
LB move op cnt : 0
LB apply : 24.66 us (7.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.82 us (71.5%)
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 | 7.3822e+05 | 262144 | 1 | 3.551e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.26949534628712 (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.33 us (1.9%)
patch tree reduce : 1.66 us (0.5%)
gen split merge : 842.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.23 us (0.4%)
LB compute : 307.00 us (93.8%)
LB move op cnt : 0
LB apply : 4.21 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.72 us (72.1%)
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 | 7.7197e+05 | 262144 | 1 | 3.396e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.013165601365955 (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 : 6.78 us (1.9%)
patch tree reduce : 1.27 us (0.4%)
gen split merge : 1.15 us (0.3%)
split / merge op : 0/0
apply split merge : 1.10 us (0.3%)
LB compute : 332.08 us (94.2%)
LB move op cnt : 0
LB apply : 3.90 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.78 us (71.2%)
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.7346e+05 | 262144 | 1 | 3.389e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.04581695052829 (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.75 us (1.7%)
patch tree reduce : 1.41 us (0.4%)
gen split merge : 921.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 7.66 us (2.0%)
LB compute : 362.10 us (93.0%)
LB move op cnt : 0
LB apply : 3.71 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.97 us (73.6%)
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 | 7.3045e+05 | 262144 | 1 | 3.589e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.09752593679462 (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 : 5.90 us (1.6%)
patch tree reduce : 1.51 us (0.4%)
gen split merge : 832.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 881.00 ns (0.2%)
LB compute : 343.55 us (94.4%)
LB move op cnt : 0
LB apply : 4.06 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.14 us (68.2%)
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 | 7.1523e+05 | 262144 | 1 | 3.665e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.761837362268798 (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 : 5.81 us (1.6%)
patch tree reduce : 1.48 us (0.4%)
gen split merge : 861.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 902.00 ns (0.3%)
LB compute : 336.60 us (94.7%)
LB move op cnt : 0
LB apply : 3.54 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.40 us (70.2%)
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 | 7.8619e+05 | 262144 | 1 | 3.334e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.325466045847307 (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 : 6.84 us (1.8%)
patch tree reduce : 1.70 us (0.5%)
gen split merge : 831.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.30 us (0.4%)
LB compute : 349.12 us (94.2%)
LB move op cnt : 0
LB apply : 3.96 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.97 us (74.7%)
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 | 7.6524e+05 | 262144 | 1 | 3.426e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.863312954313134 (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 : 6.29 us (1.3%)
patch tree reduce : 1.81 us (0.4%)
gen split merge : 862.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.15 us (0.2%)
LB compute : 445.76 us (95.5%)
LB move op cnt : 0
LB apply : 4.24 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.67 us (72.9%)
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 | 7.6758e+05 | 262144 | 1 | 3.415e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.914630996514134 (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 : 6.57 us (1.7%)
patch tree reduce : 1.44 us (0.4%)
gen split merge : 832.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.14 us (0.3%)
LB compute : 359.49 us (94.6%)
LB move op cnt : 0
LB apply : 3.81 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.56 us (70.6%)
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 | 7.4356e+05 | 262144 | 1 | 3.526e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.384803774303368 (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 : 5.93 us (1.5%)
patch tree reduce : 1.49 us (0.4%)
gen split merge : 812.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 961.00 ns (0.2%)
LB compute : 366.28 us (94.8%)
LB move op cnt : 0
LB apply : 4.17 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.10 us (72.2%)
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 | 7.4508e+05 | 262144 | 1 | 3.518e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.417833592876985 (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.55 us (1.8%)
patch tree reduce : 1.34 us (0.4%)
gen split merge : 912.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.10 us (0.3%)
LB compute : 353.10 us (94.5%)
LB move op cnt : 0
LB apply : 4.17 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.60 us (71.3%)
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 | 7.3660e+05 | 262144 | 1 | 3.559e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.23055750275593 (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.36 us (1.6%)
patch tree reduce : 1.59 us (0.4%)
gen split merge : 722.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.3%)
LB compute : 369.12 us (94.9%)
LB move op cnt : 0
LB apply : 3.92 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.35 us (69.7%)
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 | 6.8418e+05 | 262144 | 1 | 3.831e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.075099385559612 (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.58 us (1.7%)
patch tree reduce : 1.65 us (0.4%)
gen split merge : 801.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.11 us (0.3%)
LB compute : 367.64 us (94.7%)
LB move op cnt : 0
LB apply : 4.44 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.47 us (75.7%)
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 | 6.7060e+05 | 262144 | 1 | 3.909e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.775286159291769 (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 : 6.31 us (1.8%)
patch tree reduce : 1.76 us (0.5%)
gen split merge : 831.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.05 us (0.3%)
LB compute : 338.85 us (94.2%)
LB move op cnt : 0
LB apply : 4.23 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.84 us (72.6%)
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 | 7.0462e+05 | 262144 | 1 | 3.720e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.524565817643433 (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 : 6.32 us (1.8%)
patch tree reduce : 1.34 us (0.4%)
gen split merge : 931.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.00 us (0.3%)
LB compute : 340.22 us (94.2%)
LB move op cnt : 0
LB apply : 4.09 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.76 us (72.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 | 7.8041e+05 | 262144 | 1 | 3.359e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.19376695062937 (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 : 6.61 us (1.7%)
patch tree reduce : 1.42 us (0.4%)
gen split merge : 811.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.01 us (0.3%)
LB compute : 368.83 us (94.8%)
LB move op cnt : 0
LB apply : 4.09 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.78 us (71.2%)
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 | 7.0285e+05 | 262144 | 1 | 3.730e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 6.177816203338846 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 43.351653461000005 (s) [Godunov][rank=0]
Info: dump to _to_trash/ramses_kh/periodic_0002.vtk [VTK Dump][rank=0]
- took 35.02 ms, bandwidth = 1.17 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 : 6.48 us (1.8%)
patch tree reduce : 1.52 us (0.4%)
gen split merge : 901.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 892.00 ns (0.2%)
LB compute : 344.92 us (94.5%)
LB move op cnt : 0
LB apply : 3.69 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.17 us (67.6%)
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 | 6.8905e+05 | 262144 | 1 | 3.804e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.180280455202922 (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 : 6.29 us (1.7%)
patch tree reduce : 1.72 us (0.5%)
gen split merge : 841.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.03 us (0.3%)
LB compute : 355.38 us (94.4%)
LB move op cnt : 0
LB apply : 4.21 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.55 us (72.4%)
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 | 7.8480e+05 | 262144 | 1 | 3.340e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.289183689329185 (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 : 6.64 us (1.8%)
patch tree reduce : 1.62 us (0.4%)
gen split merge : 1.13 us (0.3%)
split / merge op : 0/0
apply split merge : 901.00 ns (0.2%)
LB compute : 350.48 us (94.4%)
LB move op cnt : 0
LB apply : 4.30 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.08 us (68.2%)
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 | 7.4425e+05 | 262144 | 1 | 3.522e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.395241238764164 (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 : 6.05 us (1.6%)
patch tree reduce : 1.38 us (0.4%)
gen split merge : 821.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.01 us (0.3%)
LB compute : 355.72 us (94.6%)
LB move op cnt : 0
LB apply : 4.02 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.65 us (72.3%)
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 | 7.8423e+05 | 262144 | 1 | 3.343e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.27545086296562 (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 : 6.30 us (1.9%)
patch tree reduce : 1.56 us (0.5%)
gen split merge : 842.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.09 us (0.3%)
LB compute : 317.71 us (93.9%)
LB move op cnt : 0
LB apply : 4.12 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.26 us (73.3%)
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 | 7.7001e+05 | 262144 | 1 | 3.404e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.96159306746824 (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.08 us (2.1%)
patch tree reduce : 1.41 us (0.4%)
gen split merge : 862.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 912.00 ns (0.3%)
LB compute : 310.33 us (93.5%)
LB move op cnt : 0
LB apply : 4.74 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.67 us (51.6%)
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 | 7.8396e+05 | 262144 | 1 | 3.344e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.268310361108657 (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 : 28.37 us (7.4%)
patch tree reduce : 1.56 us (0.4%)
gen split merge : 962.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 881.00 ns (0.2%)
LB compute : 343.41 us (89.1%)
LB move op cnt : 0
LB apply : 4.11 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.52 us (71.8%)
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 | 7.7929e+05 | 262144 | 1 | 3.364e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.1648900573973 (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 : 5.99 us (1.6%)
patch tree reduce : 1.32 us (0.4%)
gen split merge : 852.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.10 us (0.3%)
LB compute : 350.70 us (94.5%)
LB move op cnt : 0
LB apply : 4.43 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.37 us (72.9%)
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.7410e+05 | 262144 | 1 | 3.386e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.050019469863226 (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 : 6.42 us (1.9%)
patch tree reduce : 1.32 us (0.4%)
gen split merge : 812.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 981.00 ns (0.3%)
LB compute : 320.93 us (93.9%)
LB move op cnt : 0
LB apply : 3.81 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.33 us (74.4%)
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 | 7.6876e+05 | 262144 | 1 | 3.410e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.931702217605764 (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 : 6.81 us (1.7%)
patch tree reduce : 1.77 us (0.5%)
gen split merge : 952.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.53 us (0.4%)
LB compute : 371.80 us (94.4%)
LB move op cnt : 0
LB apply : 4.05 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.77 us (72.6%)
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.7354e+05 | 262144 | 1 | 3.389e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.03649199888328 (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 : 6.48 us (1.7%)
patch tree reduce : 1.61 us (0.4%)
gen split merge : 842.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 881.00 ns (0.2%)
LB compute : 352.75 us (94.5%)
LB move op cnt : 0
LB apply : 4.06 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.23 us (68.0%)
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 | 7.8378e+05 | 262144 | 1 | 3.345e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.261573654339067 (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 : 6.99 us (1.8%)
patch tree reduce : 1.63 us (0.4%)
gen split merge : 831.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.15 us (0.3%)
LB compute : 357.97 us (94.4%)
LB move op cnt : 0
LB apply : 4.07 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.12 us (75.5%)
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.8027e+05 | 262144 | 1 | 3.360e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.183715456841124 (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.46 us (1.9%)
patch tree reduce : 1.49 us (0.4%)
gen split merge : 821.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.23 us (0.4%)
LB compute : 320.61 us (93.9%)
LB move op cnt : 0
LB apply : 3.77 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.48 us (70.8%)
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 | 7.7618e+05 | 262144 | 1 | 3.377e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.09322035122729 (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.57 us (1.8%)
patch tree reduce : 1.53 us (0.4%)
gen split merge : 842.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.3%)
LB compute : 342.42 us (94.2%)
LB move op cnt : 0
LB apply : 4.24 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.56 us (69.6%)
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 | 7.7817e+05 | 262144 | 1 | 3.369e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.136558853679677 (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 : 5.88 us (1.7%)
patch tree reduce : 1.83 us (0.5%)
gen split merge : 841.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 912.00 ns (0.3%)
LB compute : 324.90 us (94.2%)
LB move op cnt : 0
LB apply : 3.71 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.21 us (72.9%)
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 | 6.8144e+05 | 262144 | 1 | 3.847e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.005973566627016 (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 : 6.12 us (1.8%)
patch tree reduce : 1.30 us (0.4%)
gen split merge : 821.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.01 us (0.3%)
LB compute : 315.25 us (94.0%)
LB move op cnt : 0
LB apply : 3.89 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.21 us (72.9%)
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 | 7.3513e+05 | 262144 | 1 | 3.566e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.187978077546852 (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 : 6.44 us (1.8%)
patch tree reduce : 1.34 us (0.4%)
gen split merge : 1.17 us (0.3%)
split / merge op : 0/0
apply split merge : 1.35 us (0.4%)
LB compute : 327.05 us (93.8%)
LB move op cnt : 0
LB apply : 4.09 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.62 us (72.7%)
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 | 7.6806e+05 | 262144 | 1 | 3.413e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.912753656655948 (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 (1.9%)
patch tree reduce : 1.44 us (0.4%)
gen split merge : 1.11 us (0.3%)
split / merge op : 0/0
apply split merge : 901.00 ns (0.3%)
LB compute : 333.15 us (94.3%)
LB move op cnt : 0
LB apply : 3.77 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.46 us (69.2%)
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 | 7.5147e+05 | 262144 | 1 | 3.488e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.547142604424558 (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.57 us (1.9%)
patch tree reduce : 1.81 us (0.5%)
gen split merge : 831.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.3%)
LB compute : 318.16 us (93.9%)
LB move op cnt : 0
LB apply : 3.70 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.28 us (69.3%)
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 | 6.2444e+05 | 262144 | 1 | 4.198e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.749779046133428 (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 : 6.70 us (1.9%)
patch tree reduce : 1.42 us (0.4%)
gen split merge : 1.12 us (0.3%)
split / merge op : 0/0
apply split merge : 1.51 us (0.4%)
LB compute : 327.20 us (94.0%)
LB move op cnt : 0
LB apply : 3.70 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.62 us (69.1%)
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 | 7.2573e+05 | 262144 | 1 | 3.612e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.97976799564281 (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 : 6.33 us (1.6%)
patch tree reduce : 1.58 us (0.4%)
gen split merge : 1.06 us (0.3%)
split / merge op : 0/0
apply split merge : 882.00 ns (0.2%)
LB compute : 373.07 us (94.7%)
LB move op cnt : 0
LB apply : 4.08 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.54 us (71.7%)
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 | 6.9177e+05 | 262144 | 1 | 3.789e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.231853771177178 (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.42 us (1.8%)
patch tree reduce : 1.63 us (0.5%)
gen split merge : 851.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 952.00 ns (0.3%)
LB compute : 334.36 us (94.5%)
LB move op cnt : 0
LB apply : 3.52 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.64 us (73.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 | 7.2374e+05 | 262144 | 1 | 3.622e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.935664457930866 (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 : 5.98 us (1.7%)
patch tree reduce : 1.40 us (0.4%)
gen split merge : 902.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.12 us (0.3%)
LB compute : 322.99 us (94.3%)
LB move op cnt : 0
LB apply : 3.76 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.90 us (69.7%)
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 | 7.7762e+05 | 262144 | 1 | 3.371e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.121660349065653 (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 : 6.67 us (2.0%)
patch tree reduce : 1.53 us (0.5%)
gen split merge : 982.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.38 us (0.4%)
LB compute : 314.07 us (93.8%)
LB move op cnt : 0
LB apply : 3.76 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.62 us (71.1%)
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 | 7.8082e+05 | 262144 | 1 | 3.357e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.191870264972103 (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 : 6.19 us (1.9%)
patch tree reduce : 1.43 us (0.4%)
gen split merge : 831.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 961.00 ns (0.3%)
LB compute : 306.90 us (94.0%)
LB move op cnt : 0
LB apply : 3.72 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.56 us (71.0%)
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.5238e+05 | 262144 | 1 | 3.484e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.565530442938133 (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 : 6.68 us (1.8%)
patch tree reduce : 1.51 us (0.4%)
gen split merge : 821.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.33 us (0.4%)
LB compute : 355.92 us (94.4%)
LB move op cnt : 0
LB apply : 4.46 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.73 us (75.9%)
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 | 7.7882e+05 | 262144 | 1 | 3.366e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.147549944418227 (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.60 us (1.7%)
patch tree reduce : 1.45 us (0.4%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.3%)
LB compute : 357.72 us (94.6%)
LB move op cnt : 0
LB apply : 4.00 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.72 us (71.9%)
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 | 7.8236e+05 | 262144 | 1 | 3.351e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.225226448688577 (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 : 6.44 us (1.9%)
patch tree reduce : 1.70 us (0.5%)
gen split merge : 1.07 us (0.3%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.3%)
LB compute : 326.53 us (94.1%)
LB move op cnt : 0
LB apply : 3.68 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.47 us (69.5%)
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 | 7.7867e+05 | 262144 | 1 | 3.367e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.14397154400176 (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 : 5.83 us (1.6%)
patch tree reduce : 1.56 us (0.4%)
gen split merge : 911.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.10 us (0.3%)
LB compute : 338.45 us (94.6%)
LB move op cnt : 0
LB apply : 3.49 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.93 us (68.0%)
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 | 7.7874e+05 | 262144 | 1 | 3.366e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.145484694612364 (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 : 6.81 us (2.0%)
patch tree reduce : 1.53 us (0.5%)
gen split merge : 1.11 us (0.3%)
split / merge op : 0/0
apply split merge : 1.01 us (0.3%)
LB compute : 311.73 us (93.7%)
LB move op cnt : 0
LB apply : 4.01 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.26 us (67.0%)
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 | 7.8146e+05 | 262144 | 1 | 3.355e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.205297921307952 (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.78 us (1.9%)
patch tree reduce : 1.75 us (0.5%)
gen split merge : 901.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 891.00 ns (0.2%)
LB compute : 337.87 us (94.0%)
LB move op cnt : 0
LB apply : 4.24 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.73 us (70.1%)
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.8062e+05 | 262144 | 1 | 3.358e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.18662483116271 (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 : 6.70 us (1.7%)
patch tree reduce : 1.53 us (0.4%)
gen split merge : 942.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 881.00 ns (0.2%)
LB compute : 349.46 us (89.5%)
LB move op cnt : 0
LB apply : 3.84 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.37 us (72.4%)
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 | 7.2976e+05 | 262144 | 1 | 3.592e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.06672102008125 (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 : 5.93 us (1.7%)
patch tree reduce : 1.54 us (0.4%)
gen split merge : 921.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.3%)
LB compute : 327.04 us (94.3%)
LB move op cnt : 0
LB apply : 4.22 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.18 us (70.1%)
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.4085e+05 | 262144 | 1 | 3.538e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.310906658156856 (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 : 6.76 us (1.7%)
patch tree reduce : 1.78 us (0.5%)
gen split merge : 1.28 us (0.3%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.3%)
LB compute : 366.19 us (94.2%)
LB move op cnt : 0
LB apply : 4.33 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.58 us (73.2%)
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 | 7.6744e+05 | 262144 | 1 | 3.416e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.896243213990008 (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 : 6.26 us (1.7%)
patch tree reduce : 1.44 us (0.4%)
gen split merge : 1.19 us (0.3%)
split / merge op : 0/0
apply split merge : 931.00 ns (0.3%)
LB compute : 352.12 us (94.6%)
LB move op cnt : 0
LB apply : 3.55 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.34 us (74.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 | 7.7396e+05 | 262144 | 1 | 3.387e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.039758861970434 (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 : 6.24 us (1.8%)
patch tree reduce : 1.33 us (0.4%)
gen split merge : 1.26 us (0.4%)
split / merge op : 0/0
apply split merge : 1.11 us (0.3%)
LB compute : 336.22 us (94.3%)
LB move op cnt : 0
LB apply : 3.61 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.89 us (68.9%)
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 | 7.7759e+05 | 262144 | 1 | 3.371e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.119546045248253 (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.58 us (2.0%)
patch tree reduce : 1.57 us (0.5%)
gen split merge : 1.09 us (0.3%)
split / merge op : 0/0
apply split merge : 952.00 ns (0.3%)
LB compute : 312.15 us (93.7%)
LB move op cnt : 0
LB apply : 3.89 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.52 us (69.0%)
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 | 7.7765e+05 | 262144 | 1 | 3.371e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.1209922379352 (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 : 6.42 us (1.8%)
patch tree reduce : 1.43 us (0.4%)
gen split merge : 1.03 us (0.3%)
split / merge op : 0/0
apply split merge : 1.41 us (0.4%)
LB compute : 342.47 us (94.4%)
LB move op cnt : 0
LB apply : 3.96 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.76 us (70.9%)
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 | 7.8048e+05 | 262144 | 1 | 3.359e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.183244520408653 (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 : 6.46 us (1.6%)
patch tree reduce : 1.50 us (0.4%)
gen split merge : 1.14 us (0.3%)
split / merge op : 0/0
apply split merge : 882.00 ns (0.2%)
LB compute : 372.52 us (94.7%)
LB move op cnt : 0
LB apply : 4.35 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.40 us (69.7%)
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 | 7.8417e+05 | 262144 | 1 | 3.343e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.264274434513588 (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 : 6.43 us (1.6%)
patch tree reduce : 1.44 us (0.4%)
gen split merge : 832.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 862.00 ns (0.2%)
LB compute : 371.58 us (94.8%)
LB move op cnt : 0
LB apply : 4.33 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.49 us (70.1%)
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.7177e+05 | 262144 | 1 | 3.397e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.991237620317705 (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 : 6.40 us (1.8%)
patch tree reduce : 1.77 us (0.5%)
gen split merge : 942.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 922.00 ns (0.3%)
LB compute : 330.46 us (93.9%)
LB move op cnt : 0
LB apply : 4.34 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.39 us (72.5%)
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 | 7.9022e+05 | 262144 | 1 | 3.317e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.397413555923663 (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 : 5.65 us (1.5%)
patch tree reduce : 1.89 us (0.5%)
gen split merge : 641.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 842.00 ns (0.2%)
LB compute : 349.45 us (94.7%)
LB move op cnt : 0
LB apply : 3.83 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.74 us (72.6%)
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 | 7.7037e+05 | 262144 | 1 | 3.403e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.960385968595123 (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 : 5.93 us (1.6%)
patch tree reduce : 1.38 us (0.4%)
gen split merge : 831.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.00 us (0.3%)
LB compute : 345.14 us (94.7%)
LB move op cnt : 0
LB apply : 3.76 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.48 us (70.0%)
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 | 7.3224e+05 | 262144 | 1 | 3.580e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.12078112287791 (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.51 us (1.8%)
patch tree reduce : 1.28 us (0.4%)
gen split merge : 841.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.42 us (0.4%)
LB compute : 340.41 us (94.2%)
LB move op cnt : 0
LB apply : 4.19 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.22 us (70.0%)
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 | 7.4638e+05 | 262144 | 1 | 3.512e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.431934252362424 (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 : 6.76 us (1.7%)
patch tree reduce : 1.32 us (0.3%)
gen split merge : 822.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.05 us (0.3%)
LB compute : 381.97 us (94.8%)
LB move op cnt : 0
LB apply : 4.37 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.81 us (74.3%)
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 | 7.3151e+05 | 262144 | 1 | 3.584e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.104465522424267 (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.34 us (1.6%)
patch tree reduce : 1.59 us (0.4%)
gen split merge : 842.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.3%)
LB compute : 368.42 us (94.8%)
LB move op cnt : 0
LB apply : 4.13 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.65 us (75.1%)
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 | 7.6403e+05 | 262144 | 1 | 3.431e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.820239761010058 (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 : 6.42 us (1.5%)
patch tree reduce : 1.46 us (0.4%)
gen split merge : 851.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.00 us (0.2%)
LB compute : 394.19 us (95.0%)
LB move op cnt : 0
LB apply : 3.97 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.44 us (77.4%)
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.4100e+05 | 262144 | 1 | 3.538e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.313210573511533 (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 : 6.52 us (1.7%)
patch tree reduce : 1.43 us (0.4%)
gen split merge : 1.17 us (0.3%)
split / merge op : 0/0
apply split merge : 1.08 us (0.3%)
LB compute : 337.45 us (88.8%)
LB move op cnt : 0
LB apply : 3.74 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.76 us (71.2%)
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 | 7.3474e+05 | 262144 | 1 | 3.568e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.175177008440077 (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 : 6.49 us (1.7%)
patch tree reduce : 1.56 us (0.4%)
gen split merge : 812.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.09 us (0.3%)
LB compute : 354.17 us (94.5%)
LB move op cnt : 0
LB apply : 3.90 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.67 us (71.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 | 7.7944e+05 | 262144 | 1 | 3.363e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.159129417650234 (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 : 6.26 us (1.5%)
patch tree reduce : 1.57 us (0.4%)
gen split merge : 811.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.16 us (0.3%)
LB compute : 397.78 us (95.1%)
LB move op cnt : 0
LB apply : 3.96 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.24 us (76.9%)
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 | 7.7781e+05 | 262144 | 1 | 3.370e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.12317665150166 (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 : 6.29 us (1.7%)
patch tree reduce : 1.47 us (0.4%)
gen split merge : 921.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 961.00 ns (0.3%)
LB compute : 341.86 us (94.6%)
LB move op cnt : 0
LB apply : 3.59 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.01 us (68.2%)
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 | 7.6987e+05 | 262144 | 1 | 3.405e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.94820731509022 (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.47 us (1.7%)
patch tree reduce : 1.34 us (0.3%)
gen split merge : 942.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.02 us (0.3%)
LB compute : 370.55 us (94.6%)
LB move op cnt : 0
LB apply : 4.78 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.75 us (72.9%)
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 | 7.6783e+05 | 262144 | 1 | 3.414e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.90318426382197 (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 : 6.33 us (1.8%)
patch tree reduce : 1.55 us (0.4%)
gen split merge : 821.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.28 us (0.4%)
LB compute : 339.26 us (94.5%)
LB move op cnt : 0
LB apply : 3.76 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.08 us (70.9%)
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 | 7.8359e+05 | 262144 | 1 | 3.345e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.249865761424754 (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 : 6.32 us (0.8%)
patch tree reduce : 1.37 us (0.2%)
gen split merge : 821.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.1%)
LB compute : 813.12 us (97.3%)
LB move op cnt : 0
LB apply : 4.78 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.73 us (78.3%)
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 | 7.7680e+05 | 262144 | 1 | 3.375e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.100317510207663 (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.39 us (1.7%)
patch tree reduce : 1.41 us (0.4%)
gen split merge : 962.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.3%)
LB compute : 348.72 us (94.2%)
LB move op cnt : 0
LB apply : 4.72 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.94 us (73.1%)
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 | 7.7836e+05 | 262144 | 1 | 3.368e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.134302800916547 (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 : 6.40 us (1.9%)
patch tree reduce : 1.67 us (0.5%)
gen split merge : 922.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.22 us (0.4%)
LB compute : 312.45 us (93.9%)
LB move op cnt : 0
LB apply : 4.02 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.52 us (71.0%)
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 | 7.8360e+05 | 262144 | 1 | 3.345e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.249550395234454 (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 : 6.86 us (1.9%)
patch tree reduce : 1.42 us (0.4%)
gen split merge : 811.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.3%)
LB compute : 335.68 us (94.3%)
LB move op cnt : 0
LB apply : 4.15 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.48 us (68.9%)
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 | 7.7325e+05 | 262144 | 1 | 3.390e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.021579567362615 (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 : 6.65 us (1.9%)
patch tree reduce : 1.64 us (0.5%)
gen split merge : 872.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.15 us (0.3%)
LB compute : 321.56 us (93.5%)
LB move op cnt : 0
LB apply : 4.45 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.97 us (69.1%)
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 | 7.7607e+05 | 262144 | 1 | 3.378e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.083453845158836 (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 : 5.83 us (1.6%)
patch tree reduce : 1.76 us (0.5%)
gen split merge : 521.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 881.00 ns (0.2%)
LB compute : 352.02 us (94.8%)
LB move op cnt : 0
LB apply : 4.04 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.93 us (74.9%)
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.9384e+05 | 262144 | 1 | 3.302e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.474296557338842 (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 : 6.42 us (1.7%)
patch tree reduce : 1.34 us (0.3%)
gen split merge : 812.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 871.00 ns (0.2%)
LB compute : 364.64 us (94.9%)
LB move op cnt : 0
LB apply : 3.84 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.38 us (68.8%)
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 | 7.7574e+05 | 262144 | 1 | 3.379e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.07580135108542 (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.30 us (1.7%)
patch tree reduce : 1.44 us (0.4%)
gen split merge : 841.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.13 us (0.3%)
LB compute : 346.99 us (94.5%)
LB move op cnt : 0
LB apply : 4.02 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.24 us (69.1%)
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 | 7.7344e+05 | 262144 | 1 | 3.389e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.024880816206224 (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 : 6.15 us (1.5%)
patch tree reduce : 1.39 us (0.3%)
gen split merge : 932.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 881.00 ns (0.2%)
LB compute : 400.08 us (95.2%)
LB move op cnt : 0
LB apply : 3.99 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.55 us (71.5%)
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 | 7.0291e+05 | 262144 | 1 | 3.729e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.472249260420211 (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 : 6.77 us (1.6%)
patch tree reduce : 1.59 us (0.4%)
gen split merge : 861.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 892.00 ns (0.2%)
LB compute : 400.60 us (94.9%)
LB move op cnt : 0
LB apply : 4.64 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.26 us (74.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 | 7.5915e+05 | 262144 | 1 | 3.453e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.709772888183913 (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 : 6.45 us (1.8%)
patch tree reduce : 1.73 us (0.5%)
gen split merge : 862.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.12 us (0.3%)
LB compute : 345.58 us (94.2%)
LB move op cnt : 0
LB apply : 4.56 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.81 us (68.8%)
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 | 6.8754e+05 | 262144 | 1 | 3.813e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.133467288779004 (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.47 us (1.9%)
patch tree reduce : 1.49 us (0.4%)
gen split merge : 962.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.19 us (0.4%)
LB compute : 315.37 us (93.9%)
LB move op cnt : 0
LB apply : 3.98 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.45 us (70.1%)
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.4041e+05 | 262144 | 1 | 3.541e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.297013086891056 (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 : 6.08 us (1.6%)
patch tree reduce : 1.66 us (0.4%)
gen split merge : 831.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.01 us (0.3%)
LB compute : 353.24 us (94.4%)
LB move op cnt : 0
LB apply : 4.35 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.33 us (73.5%)
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.7926e+05 | 262144 | 1 | 3.364e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.151791249442017 (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 : 6.37 us (1.9%)
patch tree reduce : 1.41 us (0.4%)
gen split merge : 892.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.08 us (0.3%)
LB compute : 320.65 us (93.9%)
LB move op cnt : 0
LB apply : 4.00 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.29 us (68.4%)
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 | 7.7498e+05 | 262144 | 1 | 3.383e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.057435945372372 (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.18 us (1.5%)
patch tree reduce : 1.28 us (0.3%)
gen split merge : 912.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.00 us (0.2%)
LB compute : 393.75 us (95.1%)
LB move op cnt : 0
LB apply : 3.92 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.22 us (73.7%)
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 | 7.4076e+05 | 262144 | 1 | 3.539e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.304130269987006 (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.74 us (2.0%)
patch tree reduce : 1.39 us (0.4%)
gen split merge : 832.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.13 us (0.3%)
LB compute : 321.30 us (93.9%)
LB move op cnt : 0
LB apply : 3.94 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.48 us (69.4%)
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.7006e+05 | 262144 | 1 | 3.404e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.948735732055436 (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.67 us (1.7%)
patch tree reduce : 1.51 us (0.4%)
gen split merge : 962.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 881.00 ns (0.2%)
LB compute : 377.59 us (94.9%)
LB move op cnt : 0
LB apply : 3.94 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.64 us (73.5%)
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 | 7.7614e+05 | 262144 | 1 | 3.378e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.082360332237464 (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 : 6.26 us (1.7%)
patch tree reduce : 1.50 us (0.4%)
gen split merge : 1.23 us (0.3%)
split / merge op : 0/0
apply split merge : 862.00 ns (0.2%)
LB compute : 344.21 us (94.4%)
LB move op cnt : 0
LB apply : 3.84 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.81 us (73.1%)
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 | 7.8012e+05 | 262144 | 1 | 3.360e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.16984275094203 (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 : 7.22 us (2.0%)
patch tree reduce : 1.48 us (0.4%)
gen split merge : 812.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.25 us (0.3%)
LB compute : 340.04 us (94.3%)
LB move op cnt : 0
LB apply : 3.76 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.23 us (69.9%)
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 | 7.8290e+05 | 262144 | 1 | 3.348e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.230759404000956 (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 : 6.26 us (1.7%)
patch tree reduce : 1.73 us (0.5%)
gen split merge : 902.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 951.00 ns (0.3%)
LB compute : 352.01 us (94.5%)
LB move op cnt : 0
LB apply : 4.08 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.11 us (68.5%)
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 | 7.6770e+05 | 262144 | 1 | 3.415e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.89611398767194 (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.13 us (1.9%)
patch tree reduce : 1.48 us (0.4%)
gen split merge : 1.08 us (0.3%)
split / merge op : 0/0
apply split merge : 882.00 ns (0.2%)
LB compute : 349.49 us (94.4%)
LB move op cnt : 0
LB apply : 3.64 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.11 us (67.2%)
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.7790e+05 | 262144 | 1 | 3.370e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.12045870521349 (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 : 6.37 us (1.9%)
patch tree reduce : 1.59 us (0.5%)
gen split merge : 921.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.02 us (0.3%)
LB compute : 320.78 us (94.1%)
LB move op cnt : 0
LB apply : 3.99 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.62 us (75.0%)
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.7645e+05 | 262144 | 1 | 3.376e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.08840231550932 (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 : 6.30 us (1.6%)
patch tree reduce : 1.50 us (0.4%)
gen split merge : 821.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 882.00 ns (0.2%)
LB compute : 363.05 us (94.7%)
LB move op cnt : 0
LB apply : 3.62 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 10.41 us (79.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 | 7.1063e+05 | 262144 | 1 | 3.689e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.639735276601147 (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 : 6.34 us (1.8%)
patch tree reduce : 1.31 us (0.4%)
gen split merge : 1.04 us (0.3%)
split / merge op : 0/0
apply split merge : 1.09 us (0.3%)
LB compute : 328.47 us (94.1%)
LB move op cnt : 0
LB apply : 4.17 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.88 us (70.2%)
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 | 7.8829e+05 | 262144 | 1 | 3.325e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.348886678096832 (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 : 6.01 us (1.8%)
patch tree reduce : 1.62 us (0.5%)
gen split merge : 982.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.09 us (0.3%)
LB compute : 322.36 us (94.0%)
LB move op cnt : 0
LB apply : 4.51 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.39 us (74.3%)
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 | 7.7604e+05 | 262144 | 1 | 3.378e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.07920949640621 (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 : 6.15 us (1.5%)
patch tree reduce : 1.37 us (0.3%)
gen split merge : 862.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.01 us (0.3%)
LB compute : 383.76 us (95.0%)
LB move op cnt : 0
LB apply : 4.09 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.87 us (74.1%)
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 | 7.6768e+05 | 262144 | 1 | 3.415e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.89505582147116 (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.76 us (1.9%)
patch tree reduce : 1.58 us (0.5%)
gen split merge : 832.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 892.00 ns (0.3%)
LB compute : 327.87 us (94.2%)
LB move op cnt : 0
LB apply : 3.82 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.54 us (74.5%)
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 | 7.8226e+05 | 262144 | 1 | 3.351e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.21590673151208 (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 : 6.62 us (1.6%)
patch tree reduce : 1.60 us (0.4%)
gen split merge : 821.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.09 us (0.3%)
LB compute : 396.87 us (95.1%)
LB move op cnt : 0
LB apply : 3.93 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.82 us (73.2%)
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 | 7.7940e+05 | 262144 | 1 | 3.363e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.152738991463362 (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 : 6.04 us (1.6%)
patch tree reduce : 1.64 us (0.4%)
gen split merge : 962.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.01 us (0.3%)
LB compute : 361.14 us (94.9%)
LB move op cnt : 0
LB apply : 3.84 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.75 us (68.8%)
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 | 7.7826e+05 | 262144 | 1 | 3.368e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.127611920051404 (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 : 6.15 us (1.6%)
patch tree reduce : 1.32 us (0.3%)
gen split merge : 1.10 us (0.3%)
split / merge op : 0/0
apply split merge : 1.09 us (0.3%)
LB compute : 375.91 us (94.9%)
LB move op cnt : 0
LB apply : 3.87 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.52 us (69.5%)
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 | 7.7427e+05 | 262144 | 1 | 3.386e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8.853744136428348 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 72.524540872 (s) [Godunov][rank=0]
Info: dump to _to_trash/ramses_kh/periodic_0003.vtk [VTK Dump][rank=0]
- took 32.07 ms, bandwidth = 1.28 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 : 6.19 us (1.5%)
patch tree reduce : 1.46 us (0.3%)
gen split merge : 841.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.2%)
LB compute : 406.93 us (95.4%)
LB move op cnt : 0
LB apply : 4.10 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.46 us (68.8%)
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 | 6.4976e+05 | 262144 | 1 | 4.034e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.29958408670716 (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 : 6.11 us (1.5%)
patch tree reduce : 1.45 us (0.4%)
gen split merge : 1.00 us (0.3%)
split / merge op : 0/0
apply split merge : 862.00 ns (0.2%)
LB compute : 381.22 us (95.2%)
LB move op cnt : 0
LB apply : 3.84 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.87 us (74.7%)
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.7376e+05 | 262144 | 1 | 3.388e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.028421836593296 (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.66 us (1.7%)
patch tree reduce : 1.48 us (0.4%)
gen split merge : 821.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.2%)
LB compute : 380.89 us (94.9%)
LB move op cnt : 0
LB apply : 4.16 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.26 us (70.2%)
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 | 7.8316e+05 | 262144 | 1 | 3.347e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.235411728990936 (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 : 6.42 us (1.7%)
patch tree reduce : 1.61 us (0.4%)
gen split merge : 912.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 871.00 ns (0.2%)
LB compute : 354.68 us (94.6%)
LB move op cnt : 0
LB apply : 4.23 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.15 us (74.1%)
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 | 7.7675e+05 | 262144 | 1 | 3.375e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.094223686696314 (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 : 5.98 us (1.5%)
patch tree reduce : 1.45 us (0.4%)
gen split merge : 922.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.2%)
LB compute : 386.25 us (95.1%)
LB move op cnt : 0
LB apply : 3.95 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.89 us (71.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 | 7.7600e+05 | 262144 | 1 | 3.378e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.077548823176663 (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 : 6.56 us (1.5%)
patch tree reduce : 1.68 us (0.4%)
gen split merge : 962.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.13 us (0.3%)
LB compute : 414.18 us (95.2%)
LB move op cnt : 0
LB apply : 4.19 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.90 us (74.8%)
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 | 7.8163e+05 | 262144 | 1 | 3.354e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.20152518707208 (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 : 6.61 us (1.6%)
patch tree reduce : 1.38 us (0.3%)
gen split merge : 831.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.45 us (0.4%)
LB compute : 393.58 us (95.0%)
LB move op cnt : 0
LB apply : 4.10 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.81 us (69.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 | 7.8514e+05 | 262144 | 1 | 3.339e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.278528057894714 (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 : 6.53 us (1.6%)
patch tree reduce : 1.54 us (0.4%)
gen split merge : 892.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.21 us (0.3%)
LB compute : 391.13 us (94.9%)
LB move op cnt : 0
LB apply : 4.26 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.02 us (72.5%)
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 | 7.8003e+05 | 262144 | 1 | 3.361e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.166142089804058 (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.88 us (1.8%)
patch tree reduce : 1.72 us (0.4%)
gen split merge : 932.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.00 us (0.3%)
LB compute : 362.53 us (94.6%)
LB move op cnt : 0
LB apply : 3.86 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.20 us (65.9%)
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 | 7.2085e+05 | 262144 | 1 | 3.637e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.863639692458046 (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.11 us (1.8%)
patch tree reduce : 1.81 us (0.5%)
gen split merge : 871.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.31 us (0.3%)
LB compute : 377.51 us (94.6%)
LB move op cnt : 0
LB apply : 4.10 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.64 us (71.7%)
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 | 7.8798e+05 | 262144 | 1 | 3.327e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.340941271407978 (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 : 6.49 us (1.7%)
patch tree reduce : 1.41 us (0.4%)
gen split merge : 1.17 us (0.3%)
split / merge op : 0/0
apply split merge : 862.00 ns (0.2%)
LB compute : 364.74 us (94.7%)
LB move op cnt : 0
LB apply : 4.11 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.35 us (70.4%)
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 | 7.8917e+05 | 262144 | 1 | 3.322e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.366963014949338 (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 : 6.38 us (1.7%)
patch tree reduce : 1.70 us (0.5%)
gen split merge : 811.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 912.00 ns (0.2%)
LB compute : 354.47 us (94.7%)
LB move op cnt : 0
LB apply : 3.65 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.91 us (69.7%)
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 | 7.8258e+05 | 262144 | 1 | 3.350e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.221802661484492 (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 : 6.18 us (1.4%)
patch tree reduce : 1.42 us (0.3%)
gen split merge : 932.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 881.00 ns (0.2%)
LB compute : 419.23 us (95.5%)
LB move op cnt : 0
LB apply : 3.99 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.75 us (70.3%)
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 | 7.8692e+05 | 262144 | 1 | 3.331e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.31700298742454 (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.08 us (2.0%)
patch tree reduce : 1.31 us (0.4%)
gen split merge : 932.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.30 us (0.4%)
LB compute : 328.59 us (93.9%)
LB move op cnt : 0
LB apply : 3.95 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.58 us (69.8%)
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 | 7.9282e+05 | 262144 | 1 | 3.306e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.446768529610193 (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 : 7.65 us (2.0%)
patch tree reduce : 3.84 us (1.0%)
gen split merge : 1.36 us (0.4%)
split / merge op : 0/0
apply split merge : 1.16 us (0.3%)
LB compute : 351.40 us (93.0%)
LB move op cnt : 0
LB apply : 4.53 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.29 us (68.2%)
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.8225e+05 | 262144 | 1 | 3.351e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.214061573503596 (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.48 us (1.6%)
patch tree reduce : 1.33 us (0.3%)
gen split merge : 821.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.31 us (0.3%)
LB compute : 394.75 us (95.1%)
LB move op cnt : 0
LB apply : 3.97 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.73 us (69.9%)
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 | 7.7865e+05 | 262144 | 1 | 3.367e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.134602238394486 (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 : 6.00 us (1.5%)
patch tree reduce : 1.32 us (0.3%)
gen split merge : 912.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.00 us (0.2%)
LB compute : 391.54 us (95.0%)
LB move op cnt : 0
LB apply : 4.10 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.74 us (63.7%)
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 | 7.7292e+05 | 262144 | 1 | 3.392e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.00834218542379 (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.87 us (1.7%)
patch tree reduce : 1.47 us (0.4%)
gen split merge : 942.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 881.00 ns (0.2%)
LB compute : 373.38 us (94.7%)
LB move op cnt : 0
LB apply : 4.40 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.93 us (71.8%)
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.7885e+05 | 262144 | 1 | 3.366e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.138458195979386 (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 : 5.93 us (1.6%)
patch tree reduce : 1.57 us (0.4%)
gen split merge : 922.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.01 us (0.3%)
LB compute : 358.84 us (94.7%)
LB move op cnt : 0
LB apply : 4.22 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.49 us (69.9%)
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 | 7.1036e+05 | 262144 | 1 | 3.690e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.631245811731993 (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.07 us (1.6%)
patch tree reduce : 1.49 us (0.4%)
gen split merge : 811.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.3%)
LB compute : 348.03 us (94.6%)
LB move op cnt : 0
LB apply : 3.78 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.24 us (73.8%)
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 | 7.6681e+05 | 262144 | 1 | 3.419e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.87319080263098 (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 : 7.30 us (1.6%)
patch tree reduce : 1.89 us (0.4%)
gen split merge : 1.02 us (0.2%)
split / merge op : 0/0
apply split merge : 1.00 us (0.2%)
LB compute : 442.23 us (95.2%)
LB move op cnt : 0
LB apply : 3.93 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.36 us (74.6%)
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 | 7.1633e+05 | 262144 | 1 | 3.660e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.762125387607005 (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.84 us (1.7%)
patch tree reduce : 1.40 us (0.4%)
gen split merge : 1.07 us (0.3%)
split / merge op : 0/0
apply split merge : 1.11 us (0.3%)
LB compute : 371.00 us (94.5%)
LB move op cnt : 0
LB apply : 4.22 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.96 us (73.7%)
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 | 7.8212e+05 | 262144 | 1 | 3.352e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.20940601134654 (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.08 us (1.8%)
patch tree reduce : 1.48 us (0.4%)
gen split merge : 922.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.06 us (0.3%)
LB compute : 316.16 us (94.1%)
LB move op cnt : 0
LB apply : 4.28 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.23 us (67.8%)
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 | 7.5319e+05 | 262144 | 1 | 3.480e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.57248669045872 (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.15 us (1.6%)
patch tree reduce : 1.71 us (0.4%)
gen split merge : 822.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.21 us (0.3%)
LB compute : 363.54 us (94.5%)
LB move op cnt : 0
LB apply : 4.81 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.91 us (73.8%)
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 | 6.5491e+05 | 262144 | 1 | 4.003e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.409941919017388 (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 : 6.38 us (1.9%)
patch tree reduce : 1.69 us (0.5%)
gen split merge : 852.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.3%)
LB compute : 312.69 us (94.0%)
LB move op cnt : 0
LB apply : 3.77 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.42 us (69.1%)
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 | 7.2318e+05 | 262144 | 1 | 3.625e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.911621760568082 (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 : 6.15 us (1.8%)
patch tree reduce : 1.40 us (0.4%)
gen split merge : 1.04 us (0.3%)
split / merge op : 0/0
apply split merge : 871.00 ns (0.2%)
LB compute : 330.45 us (94.4%)
LB move op cnt : 0
LB apply : 3.68 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.20 us (68.5%)
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 | 7.2485e+05 | 262144 | 1 | 3.617e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.94812523930778 (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.92 us (2.3%)
patch tree reduce : 1.91 us (0.6%)
gen split merge : 821.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.22 us (0.4%)
LB compute : 319.81 us (93.4%)
LB move op cnt : 0
LB apply : 3.96 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.78 us (75.9%)
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 | 7.4244e+05 | 262144 | 1 | 3.531e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.334856962359165 (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 : 5.88 us (1.6%)
patch tree reduce : 1.49 us (0.4%)
gen split merge : 862.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.3%)
LB compute : 336.95 us (89.0%)
LB move op cnt : 0
LB apply : 4.64 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.94 us (71.8%)
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 | 7.7510e+05 | 262144 | 1 | 3.382e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.05307679415653 (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.00 us (1.9%)
patch tree reduce : 1.84 us (0.5%)
gen split merge : 832.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.02 us (0.3%)
LB compute : 344.25 us (94.2%)
LB move op cnt : 0
LB apply : 3.91 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.78 us (73.7%)
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.8434e+05 | 262144 | 1 | 3.342e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.256029717387772 (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 : 5.89 us (1.6%)
patch tree reduce : 1.59 us (0.4%)
gen split merge : 921.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 952.00 ns (0.3%)
LB compute : 355.22 us (94.5%)
LB move op cnt : 0
LB apply : 4.09 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.72 us (71.3%)
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 | 7.7808e+05 | 262144 | 1 | 3.369e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.11787211099389 (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.30 us (1.5%)
patch tree reduce : 1.41 us (0.3%)
gen split merge : 1.13 us (0.3%)
split / merge op : 0/0
apply split merge : 1.01 us (0.2%)
LB compute : 402.56 us (95.0%)
LB move op cnt : 0
LB apply : 4.48 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.27 us (74.4%)
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.7014e+05 | 262144 | 1 | 3.404e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.94296221906862 (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.25 us (1.5%)
patch tree reduce : 1.57 us (0.4%)
gen split merge : 852.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 942.00 ns (0.2%)
LB compute : 400.63 us (95.0%)
LB move op cnt : 0
LB apply : 4.08 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.12 us (75.7%)
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.7278e+05 | 262144 | 1 | 3.392e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.00056360029205 (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 : 6.61 us (1.7%)
patch tree reduce : 1.50 us (0.4%)
gen split merge : 822.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 872.00 ns (0.2%)
LB compute : 368.82 us (94.7%)
LB move op cnt : 0
LB apply : 4.27 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.11 us (74.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.7778e+05 | 262144 | 1 | 3.370e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.110325302542307 (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 : 6.81 us (1.7%)
patch tree reduce : 1.76 us (0.5%)
gen split merge : 1.11 us (0.3%)
split / merge op : 0/0
apply split merge : 1.17 us (0.3%)
LB compute : 369.18 us (94.4%)
LB move op cnt : 0
LB apply : 4.39 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.41 us (71.1%)
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.7306e+05 | 262144 | 1 | 3.391e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.006106915450797 (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 : 6.76 us (1.8%)
patch tree reduce : 1.58 us (0.4%)
gen split merge : 1.05 us (0.3%)
split / merge op : 0/0
apply split merge : 971.00 ns (0.3%)
LB compute : 360.08 us (94.3%)
LB move op cnt : 0
LB apply : 4.19 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.06 us (74.6%)
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 | 7.7504e+05 | 262144 | 1 | 3.382e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.0493207074821 (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 : 6.01 us (1.6%)
patch tree reduce : 1.45 us (0.4%)
gen split merge : 802.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.3%)
LB compute : 358.10 us (94.7%)
LB move op cnt : 0
LB apply : 4.45 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.69 us (75.7%)
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.7060e+05 | 262144 | 1 | 3.402e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.951186400309023 (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 : 6.70 us (1.9%)
patch tree reduce : 1.62 us (0.5%)
gen split merge : 841.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.04 us (0.3%)
LB compute : 329.80 us (93.9%)
LB move op cnt : 0
LB apply : 4.02 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.63 us (67.9%)
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 | 6.2378e+05 | 262144 | 1 | 4.203e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.721240424176212 (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.01 us (1.9%)
patch tree reduce : 1.50 us (0.4%)
gen split merge : 892.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 993.00 ns (0.3%)
LB compute : 350.42 us (94.1%)
LB move op cnt : 0
LB apply : 4.68 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.11 us (74.8%)
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 | 7.7986e+05 | 262144 | 1 | 3.361e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.154280386311203 (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 : 7.85 us (1.9%)
patch tree reduce : 2.34 us (0.6%)
gen split merge : 1.08 us (0.3%)
split / merge op : 0/0
apply split merge : 1.02 us (0.3%)
LB compute : 377.80 us (93.8%)
LB move op cnt : 0
LB apply : 5.38 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.95 us (74.1%)
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 | 7.1249e+05 | 262144 | 1 | 3.679e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.671949930014485 (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 : 6.67 us (1.7%)
patch tree reduce : 1.62 us (0.4%)
gen split merge : 1.01 us (0.3%)
split / merge op : 0/0
apply split merge : 902.00 ns (0.2%)
LB compute : 359.26 us (94.2%)
LB move op cnt : 0
LB apply : 4.11 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.55 us (74.5%)
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 | 7.6679e+05 | 262144 | 1 | 3.419e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.86612304798227 (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 : 6.43 us (1.5%)
patch tree reduce : 1.70 us (0.4%)
gen split merge : 871.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.2%)
LB compute : 393.71 us (94.7%)
LB move op cnt : 0
LB apply : 4.53 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.26 us (75.2%)
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 | 7.7462e+05 | 262144 | 1 | 3.384e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.03814850479393 (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 : 6.35 us (1.7%)
patch tree reduce : 1.43 us (0.4%)
gen split merge : 1.11 us (0.3%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.3%)
LB compute : 363.30 us (94.8%)
LB move op cnt : 0
LB apply : 3.67 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.77 us (71.7%)
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 | 7.7749e+05 | 262144 | 1 | 3.372e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.100868848876853 (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.40 us (1.7%)
patch tree reduce : 1.83 us (0.5%)
gen split merge : 832.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.08 us (0.3%)
LB compute : 356.46 us (94.2%)
LB move op cnt : 0
LB apply : 4.29 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.06 us (73.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 | 7.6901e+05 | 262144 | 1 | 3.409e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.914132342459638 (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.38 us (2.0%)
patch tree reduce : 1.83 us (0.5%)
gen split merge : 961.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 971.00 ns (0.3%)
LB compute : 345.73 us (94.1%)
LB move op cnt : 0
LB apply : 4.09 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.19 us (72.8%)
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 | 6.8963e+05 | 262144 | 1 | 3.801e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.167959187182058 (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 : 7.06 us (1.9%)
patch tree reduce : 1.54 us (0.4%)
gen split merge : 1.04 us (0.3%)
split / merge op : 0/0
apply split merge : 932.00 ns (0.3%)
LB compute : 344.58 us (94.1%)
LB move op cnt : 0
LB apply : 4.05 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.38 us (69.2%)
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 | 7.4569e+05 | 262144 | 1 | 3.515e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.400551873173306 (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 : 6.30 us (1.7%)
patch tree reduce : 1.39 us (0.4%)
gen split merge : 1.13 us (0.3%)
split / merge op : 0/0
apply split merge : 1.12 us (0.3%)
LB compute : 359.36 us (94.4%)
LB move op cnt : 0
LB apply : 4.20 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.09 us (68.4%)
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 | 7.4851e+05 | 262144 | 1 | 3.502e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.46238663560357 (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 : 6.55 us (1.9%)
patch tree reduce : 1.43 us (0.4%)
gen split merge : 811.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.3%)
LB compute : 323.82 us (93.8%)
LB move op cnt : 0
LB apply : 4.42 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.65 us (75.4%)
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 | 7.5179e+05 | 262144 | 1 | 3.487e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.5343836834116 (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 : 6.70 us (1.8%)
patch tree reduce : 1.44 us (0.4%)
gen split merge : 1.25 us (0.3%)
split / merge op : 0/0
apply split merge : 852.00 ns (0.2%)
LB compute : 353.83 us (94.2%)
LB move op cnt : 0
LB apply : 4.01 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.22 us (71.9%)
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 | 7.4287e+05 | 262144 | 1 | 3.529e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.337992671646628 (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 : 6.59 us (1.9%)
patch tree reduce : 1.76 us (0.5%)
gen split merge : 941.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 881.00 ns (0.3%)
LB compute : 330.76 us (93.9%)
LB move op cnt : 0
LB apply : 4.30 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.07 us (75.0%)
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.7713e+05 | 262144 | 1 | 3.373e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.09124813147677 (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 : 6.04 us (1.5%)
patch tree reduce : 1.70 us (0.4%)
gen split merge : 832.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.09 us (0.3%)
LB compute : 381.08 us (94.9%)
LB move op cnt : 0
LB apply : 4.26 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.34 us (69.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 | 7.6978e+05 | 262144 | 1 | 3.405e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.929346955470404 (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 : 6.35 us (1.6%)
patch tree reduce : 1.51 us (0.4%)
gen split merge : 941.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.12 us (0.3%)
LB compute : 364.39 us (94.6%)
LB move op cnt : 0
LB apply : 3.94 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.08 us (73.6%)
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 | 7.8436e+05 | 262144 | 1 | 3.342e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.249666198741245 (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.62 us (2.0%)
patch tree reduce : 1.41 us (0.4%)
gen split merge : 831.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 971.00 ns (0.3%)
LB compute : 311.58 us (93.9%)
LB move op cnt : 0
LB apply : 3.89 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.69 us (69.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 | 7.7693e+05 | 262144 | 1 | 3.374e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.08623496048915 (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 : 6.10 us (1.6%)
patch tree reduce : 23.69 us (6.4%)
gen split merge : 1.00 us (0.3%)
split / merge op : 0/0
apply split merge : 1.12 us (0.3%)
LB compute : 329.32 us (88.5%)
LB move op cnt : 0
LB apply : 4.20 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.92 us (72.7%)
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 | 7.8249e+05 | 262144 | 1 | 3.350e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.208269001465506 (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 : 5.60 us (1.4%)
patch tree reduce : 1.68 us (0.4%)
gen split merge : 821.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.2%)
LB compute : 376.35 us (94.9%)
LB move op cnt : 0
LB apply : 4.44 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.04 us (73.9%)
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 | 7.2346e+05 | 262144 | 1 | 3.623e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.909882326740378 (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 : 6.38 us (1.5%)
patch tree reduce : 1.57 us (0.4%)
gen split merge : 832.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 872.00 ns (0.2%)
LB compute : 396.30 us (95.1%)
LB move op cnt : 0
LB apply : 4.65 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.81 us (73.7%)
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 | 7.8239e+05 | 262144 | 1 | 3.351e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.2056755311936 (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 : 6.35 us (1.6%)
patch tree reduce : 1.79 us (0.4%)
gen split merge : 1.17 us (0.3%)
split / merge op : 0/0
apply split merge : 882.00 ns (0.2%)
LB compute : 379.67 us (94.8%)
LB move op cnt : 0
LB apply : 4.31 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.90 us (73.4%)
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 | 7.8482e+05 | 262144 | 1 | 3.340e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.259056285604363 (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 : 6.17 us (1.5%)
patch tree reduce : 1.54 us (0.4%)
gen split merge : 842.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 922.00 ns (0.2%)
LB compute : 385.31 us (94.8%)
LB move op cnt : 0
LB apply : 4.21 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.52 us (72.8%)
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 | 7.2832e+05 | 262144 | 1 | 3.599e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.016406059047235 (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 : 6.18 us (1.5%)
patch tree reduce : 1.40 us (0.3%)
gen split merge : 852.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 882.00 ns (0.2%)
LB compute : 390.87 us (95.0%)
LB move op cnt : 0
LB apply : 4.31 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.65 us (70.8%)
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 | 7.5138e+05 | 262144 | 1 | 3.489e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.52323652412062 (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 : 6.79 us (1.5%)
patch tree reduce : 1.32 us (0.3%)
gen split merge : 831.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.35 us (0.3%)
LB compute : 423.11 us (95.2%)
LB move op cnt : 0
LB apply : 4.33 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.99 us (74.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 | 7.7503e+05 | 262144 | 1 | 3.382e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.043232730380904 (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.12 us (1.5%)
patch tree reduce : 1.48 us (0.4%)
gen split merge : 952.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.2%)
LB compute : 394.79 us (95.1%)
LB move op cnt : 0
LB apply : 4.18 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.76 us (71.8%)
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.7299e+05 | 262144 | 1 | 3.391e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.998212466100153 (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 : 6.54 us (1.8%)
patch tree reduce : 1.51 us (0.4%)
gen split merge : 861.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.03 us (0.3%)
LB compute : 352.37 us (94.4%)
LB move op cnt : 0
LB apply : 3.82 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.63 us (71.2%)
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 | 7.8118e+05 | 262144 | 1 | 3.356e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.17837038475314 (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.54 us (1.7%)
patch tree reduce : 1.45 us (0.4%)
gen split merge : 1.27 us (0.3%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.3%)
LB compute : 357.80 us (94.5%)
LB move op cnt : 0
LB apply : 3.86 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.58 us (71.2%)
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 | 7.8715e+05 | 262144 | 1 | 3.330e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.30951267601886 (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.09 us (1.5%)
patch tree reduce : 1.42 us (0.3%)
gen split merge : 812.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 952.00 ns (0.2%)
LB compute : 400.26 us (95.4%)
LB move op cnt : 0
LB apply : 3.82 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.56 us (72.2%)
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 | 7.7945e+05 | 262144 | 1 | 3.363e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.140090979181352 (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.26 us (1.9%)
patch tree reduce : 1.63 us (0.5%)
gen split merge : 912.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.07 us (0.3%)
LB compute : 306.75 us (93.9%)
LB move op cnt : 0
LB apply : 3.68 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.69 us (72.0%)
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 | 7.4897e+05 | 262144 | 1 | 3.500e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.469770369796542 (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 : 6.52 us (1.7%)
patch tree reduce : 1.75 us (0.4%)
gen split merge : 1.15 us (0.3%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.2%)
LB compute : 370.09 us (94.7%)
LB move op cnt : 0
LB apply : 4.06 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.61 us (72.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 | 7.3877e+05 | 262144 | 1 | 3.548e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.24532842199442 (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 : 6.66 us (1.9%)
patch tree reduce : 1.76 us (0.5%)
gen split merge : 1.09 us (0.3%)
split / merge op : 0/0
apply split merge : 1.18 us (0.3%)
LB compute : 325.45 us (93.8%)
LB move op cnt : 0
LB apply : 4.17 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.27 us (72.4%)
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.0170e+05 | 262144 | 1 | 3.736e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.430099623442674 (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 : 6.02 us (1.5%)
patch tree reduce : 1.62 us (0.4%)
gen split merge : 831.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.10 us (0.3%)
LB compute : 382.11 us (94.9%)
LB move op cnt : 0
LB apply : 3.91 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.90 us (72.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 | 7.8459e+05 | 262144 | 1 | 3.341e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.252804427152334 (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 : 6.13 us (1.7%)
patch tree reduce : 1.77 us (0.5%)
gen split merge : 812.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 942.00 ns (0.3%)
LB compute : 349.69 us (94.5%)
LB move op cnt : 0
LB apply : 3.95 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.90 us (73.5%)
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 | 7.4722e+05 | 262144 | 1 | 3.508e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.43099786589013 (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 : 6.94 us (1.6%)
patch tree reduce : 1.43 us (0.3%)
gen split merge : 852.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 852.00 ns (0.2%)
LB compute : 404.22 us (95.2%)
LB move op cnt : 0
LB apply : 3.83 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.26 us (75.4%)
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 | 7.8002e+05 | 262144 | 1 | 3.361e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.15195841741898 (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.36 us (1.8%)
patch tree reduce : 1.35 us (0.4%)
gen split merge : 1.02 us (0.3%)
split / merge op : 0/0
apply split merge : 1.11 us (0.3%)
LB compute : 341.55 us (94.4%)
LB move op cnt : 0
LB apply : 3.64 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.47 us (68.5%)
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.8663e+05 | 262144 | 1 | 3.332e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.297354484734836 (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.25 us (1.5%)
patch tree reduce : 1.44 us (0.3%)
gen split merge : 842.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.23 us (0.3%)
LB compute : 398.08 us (95.3%)
LB move op cnt : 0
LB apply : 3.76 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.70 us (71.4%)
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 | 7.7018e+05 | 262144 | 1 | 3.404e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.935577850438115 (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 : 6.66 us (1.9%)
patch tree reduce : 1.34 us (0.4%)
gen split merge : 812.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.32 us (0.4%)
LB compute : 337.00 us (94.3%)
LB move op cnt : 0
LB apply : 3.90 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.78 us (70.8%)
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 | 7.3108e+05 | 262144 | 1 | 3.586e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.075715013109747 (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 : 6.39 us (1.8%)
patch tree reduce : 1.44 us (0.4%)
gen split merge : 842.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.18 us (0.3%)
LB compute : 327.90 us (94.1%)
LB move op cnt : 0
LB apply : 4.17 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.22 us (68.9%)
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 | 7.8401e+05 | 262144 | 1 | 3.344e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.23952750018882 (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 : 6.72 us (2.0%)
patch tree reduce : 1.50 us (0.4%)
gen split merge : 821.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.13 us (0.3%)
LB compute : 322.47 us (94.0%)
LB move op cnt : 0
LB apply : 3.77 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.74 us (70.9%)
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 | 7.7980e+05 | 262144 | 1 | 3.362e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.14677101719896 (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 : 6.45 us (1.6%)
patch tree reduce : 1.43 us (0.3%)
gen split merge : 1.13 us (0.3%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.2%)
LB compute : 394.86 us (95.1%)
LB move op cnt : 0
LB apply : 4.09 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.88 us (73.8%)
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 | 7.7475e+05 | 262144 | 1 | 3.384e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.035662159706202 (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 : 6.38 us (1.7%)
patch tree reduce : 1.67 us (0.4%)
gen split merge : 892.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.16 us (0.3%)
LB compute : 353.45 us (94.4%)
LB move op cnt : 0
LB apply : 4.29 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.98 us (74.3%)
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 | 7.7142e+05 | 262144 | 1 | 3.398e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.962292190880138 (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 : 6.34 us (1.8%)
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.04 us (0.3%)
LB compute : 324.77 us (93.9%)
LB move op cnt : 0
LB apply : 4.01 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.54 us (69.5%)
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 | 7.2953e+05 | 262144 | 1 | 3.593e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.041149861196544 (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 : 6.24 us (1.9%)
patch tree reduce : 1.45 us (0.4%)
gen split merge : 821.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 882.00 ns (0.3%)
LB compute : 308.48 us (93.8%)
LB move op cnt : 0
LB apply : 3.90 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.53 us (70.3%)
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 | 6.9953e+05 | 262144 | 1 | 3.747e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.38128002228653 (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.24 us (1.8%)
patch tree reduce : 1.79 us (0.5%)
gen split merge : 832.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 852.00 ns (0.2%)
LB compute : 336.57 us (94.4%)
LB move op cnt : 0
LB apply : 3.78 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.31 us (70.2%)
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 | 7.7924e+05 | 262144 | 1 | 3.364e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.133851556668336 (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.46 us (1.6%)
patch tree reduce : 1.45 us (0.4%)
gen split merge : 832.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.26 us (0.3%)
LB compute : 371.65 us (94.8%)
LB move op cnt : 0
LB apply : 4.05 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.56 us (73.1%)
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 | 7.8844e+05 | 262144 | 1 | 3.325e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.335982517499588 (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 : 5.68 us (1.5%)
patch tree reduce : 1.44 us (0.4%)
gen split merge : 1.05 us (0.3%)
split / merge op : 0/0
apply split merge : 961.00 ns (0.3%)
LB compute : 354.93 us (94.6%)
LB move op cnt : 0
LB apply : 4.28 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.97 us (73.4%)
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 | 7.7970e+05 | 262144 | 1 | 3.362e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.14368776101267 (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 : 6.02 us (1.6%)
patch tree reduce : 1.37 us (0.4%)
gen split merge : 1.10 us (0.3%)
split / merge op : 0/0
apply split merge : 1.10 us (0.3%)
LB compute : 347.49 us (94.4%)
LB move op cnt : 0
LB apply : 4.23 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.37 us (69.5%)
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.5428e+05 | 262144 | 1 | 3.475e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.58477122958908 (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 : 6.59 us (1.8%)
patch tree reduce : 1.75 us (0.5%)
gen split merge : 811.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 912.00 ns (0.2%)
LB compute : 344.56 us (94.4%)
LB move op cnt : 0
LB apply : 3.90 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.63 us (72.6%)
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 | 7.8392e+05 | 262144 | 1 | 3.344e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10.20486263397887 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 101.77986160200001 (s) [Godunov][rank=0]
Info: dump to _to_trash/ramses_kh/periodic_0004.vtk [VTK Dump][rank=0]
- took 32.70 ms, bandwidth = 1.25 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 : 6.57 us (1.8%)
patch tree reduce : 1.73 us (0.5%)
gen split merge : 802.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.02 us (0.3%)
LB compute : 341.59 us (94.5%)
LB move op cnt : 0
LB apply : 4.06 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.08 us (66.9%)
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 | 7.0301e+05 | 262144 | 1 | 3.729e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.457220621737656 (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 : 6.21 us (1.6%)
patch tree reduce : 1.78 us (0.5%)
gen split merge : 922.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.2%)
LB compute : 368.53 us (94.8%)
LB move op cnt : 0
LB apply : 4.47 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.05 us (74.5%)
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 | 7.7785e+05 | 262144 | 1 | 3.370e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.10267043291977 (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 : 6.36 us (1.7%)
patch tree reduce : 1.33 us (0.3%)
gen split merge : 872.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.09 us (0.3%)
LB compute : 342.10 us (89.2%)
LB move op cnt : 0
LB apply : 4.11 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.15 us (72.0%)
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 | 7.8167e+05 | 262144 | 1 | 3.354e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.18660301678923 (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 : 6.28 us (1.6%)
patch tree reduce : 1.78 us (0.5%)
gen split merge : 902.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 952.00 ns (0.2%)
LB compute : 375.01 us (94.8%)
LB move op cnt : 0
LB apply : 4.12 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.73 us (71.2%)
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 | 6.7581e+05 | 262144 | 1 | 3.879e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.858821403202436 (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 (1.8%)
patch tree reduce : 1.68 us (0.4%)
gen split merge : 912.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.03 us (0.3%)
LB compute : 374.85 us (94.7%)
LB move op cnt : 0
LB apply : 3.85 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.04 us (74.3%)
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.6771e+05 | 262144 | 1 | 3.415e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.879374464816248 (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.59 us (1.8%)
patch tree reduce : 1.54 us (0.4%)
gen split merge : 822.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.21 us (0.3%)
LB compute : 342.90 us (94.5%)
LB move op cnt : 0
LB apply : 3.81 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.36 us (74.9%)
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.8945e+05 | 262144 | 1 | 3.321e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.357227378977402 (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 : 6.59 us (1.8%)
patch tree reduce : 1.55 us (0.4%)
gen split merge : 922.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 891.00 ns (0.2%)
LB compute : 353.20 us (94.6%)
LB move op cnt : 0
LB apply : 4.10 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.49 us (71.7%)
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 | 7.8287e+05 | 262144 | 1 | 3.349e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.212408845987106 (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 : 6.53 us (1.8%)
patch tree reduce : 1.57 us (0.4%)
gen split merge : 791.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.05 us (0.3%)
LB compute : 344.62 us (94.3%)
LB move op cnt : 0
LB apply : 4.04 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.79 us (70.6%)
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 | 7.4214e+05 | 262144 | 1 | 3.532e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.316896862936865 (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 : 5.45 us (1.4%)
patch tree reduce : 1.25 us (0.3%)
gen split merge : 581.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.07 us (0.3%)
LB compute : 365.15 us (95.1%)
LB move op cnt : 0
LB apply : 4.31 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.78 us (72.1%)
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 | 6.7800e+05 | 262144 | 1 | 3.866e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.906527759974283 (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 : 5.92 us (1.6%)
patch tree reduce : 1.79 us (0.5%)
gen split merge : 902.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.3%)
LB compute : 358.24 us (94.6%)
LB move op cnt : 0
LB apply : 4.27 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.20 us (75.7%)
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 | 7.7596e+05 | 262144 | 1 | 3.378e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.06025528780103 (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.50 us (1.6%)
patch tree reduce : 1.52 us (0.4%)
gen split merge : 831.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 852.00 ns (0.2%)
LB compute : 383.29 us (94.9%)
LB move op cnt : 0
LB apply : 4.01 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.19 us (75.0%)
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 | 7.8375e+05 | 262144 | 1 | 3.345e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.23147750443052 (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 : 6.15 us (1.8%)
patch tree reduce : 1.31 us (0.4%)
gen split merge : 1.14 us (0.3%)
split / merge op : 0/0
apply split merge : 1.02 us (0.3%)
LB compute : 320.60 us (94.0%)
LB move op cnt : 0
LB apply : 3.82 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.44 us (71.0%)
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 | 7.8122e+05 | 262144 | 1 | 3.356e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.175805436232157 (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 : 6.44 us (1.8%)
patch tree reduce : 1.30 us (0.4%)
gen split merge : 942.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.32 us (0.4%)
LB compute : 343.49 us (94.2%)
LB move op cnt : 0
LB apply : 3.96 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.23 us (73.9%)
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 | 7.0184e+05 | 262144 | 1 | 3.735e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.430584290340791 (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 : 6.78 us (2.0%)
patch tree reduce : 1.47 us (0.4%)
gen split merge : 852.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.3%)
LB compute : 316.75 us (94.0%)
LB move op cnt : 0
LB apply : 3.74 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.37 us (68.8%)
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 | 7.9165e+05 | 262144 | 1 | 3.311e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.405082581906417 (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 : 6.39 us (1.6%)
patch tree reduce : 1.39 us (0.4%)
gen split merge : 1.07 us (0.3%)
split / merge op : 0/0
apply split merge : 1.30 us (0.3%)
LB compute : 375.75 us (94.8%)
LB move op cnt : 0
LB apply : 3.70 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.01 us (74.4%)
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.7538e+05 | 262144 | 1 | 3.381e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.04731452335067 (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 : 6.64 us (1.7%)
patch tree reduce : 1.47 us (0.4%)
gen split merge : 1.00 us (0.3%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.3%)
LB compute : 369.52 us (94.5%)
LB move op cnt : 0
LB apply : 4.40 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.61 us (76.9%)
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 | 7.6287e+05 | 262144 | 1 | 3.436e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.772302260268795 (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.35 us (1.7%)
patch tree reduce : 1.47 us (0.4%)
gen split merge : 821.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 882.00 ns (0.2%)
LB compute : 355.29 us (94.5%)
LB move op cnt : 0
LB apply : 4.04 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.53 us (73.6%)
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 | 7.6764e+05 | 262144 | 1 | 3.415e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.877348140207072 (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 : 6.66 us (1.8%)
patch tree reduce : 1.93 us (0.5%)
gen split merge : 832.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 912.00 ns (0.2%)
LB compute : 346.59 us (94.3%)
LB move op cnt : 0
LB apply : 4.18 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.67 us (71.6%)
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 | 7.8471e+05 | 262144 | 1 | 3.341e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.25253456021565 (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 : 7.05 us (2.0%)
patch tree reduce : 1.51 us (0.4%)
gen split merge : 821.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 882.00 ns (0.3%)
LB compute : 329.27 us (94.2%)
LB move op cnt : 0
LB apply : 4.09 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.43 us (71.4%)
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.7190e+05 | 262144 | 1 | 3.396e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.971012262563345 (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.29 us (1.7%)
patch tree reduce : 1.61 us (0.4%)
gen split merge : 922.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.25 us (0.3%)
LB compute : 357.36 us (94.6%)
LB move op cnt : 0
LB apply : 3.86 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.33 us (69.7%)
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 | 7.7734e+05 | 262144 | 1 | 3.372e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.090635166409633 (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 : 6.33 us (1.7%)
patch tree reduce : 1.68 us (0.5%)
gen split merge : 811.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.00 us (0.3%)
LB compute : 343.55 us (94.3%)
LB move op cnt : 0
LB apply : 4.32 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.73 us (70.1%)
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.7703e+05 | 262144 | 1 | 3.374e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.084034621252485 (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 : 6.14 us (1.8%)
patch tree reduce : 1.47 us (0.4%)
gen split merge : 822.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 882.00 ns (0.3%)
LB compute : 320.35 us (94.1%)
LB move op cnt : 0
LB apply : 4.03 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.14 us (70.0%)
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 | 7.6869e+05 | 262144 | 1 | 3.410e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.900732732800176 (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 : 6.58 us (1.7%)
patch tree reduce : 1.47 us (0.4%)
gen split merge : 822.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 871.00 ns (0.2%)
LB compute : 370.51 us (94.7%)
LB move op cnt : 0
LB apply : 4.02 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.54 us (71.9%)
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.3126e+05 | 262144 | 1 | 3.585e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.077941883098788 (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 : 6.41 us (1.6%)
patch tree reduce : 1.60 us (0.4%)
gen split merge : 822.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 991.00 ns (0.2%)
LB compute : 360.68 us (89.5%)
LB move op cnt : 0
LB apply : 25.71 us (6.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.11 us (74.0%)
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 | 6.2463e+05 | 262144 | 1 | 4.197e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.733574933694149 (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 : 6.00 us (1.6%)
patch tree reduce : 1.29 us (0.4%)
gen split merge : 812.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.07 us (0.3%)
LB compute : 346.75 us (94.6%)
LB move op cnt : 0
LB apply : 3.83 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.96 us (72.0%)
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 | 6.9451e+05 | 262144 | 1 | 3.774e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.270161903838714 (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 : 6.76 us (2.0%)
patch tree reduce : 2.03 us (0.6%)
gen split merge : 812.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 981.00 ns (0.3%)
LB compute : 315.97 us (93.6%)
LB move op cnt : 0
LB apply : 4.11 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.43 us (68.8%)
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 | 7.7945e+05 | 262144 | 1 | 3.363e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.13787719116541 (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.31 us (1.6%)
patch tree reduce : 1.36 us (0.3%)
gen split merge : 1.08 us (0.3%)
split / merge op : 0/0
apply split merge : 1.01 us (0.3%)
LB compute : 369.11 us (94.8%)
LB move op cnt : 0
LB apply : 3.85 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.58 us (72.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 | 7.8450e+05 | 262144 | 1 | 3.342e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.248959601282706 (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 : 6.16 us (1.6%)
patch tree reduce : 1.32 us (0.3%)
gen split merge : 841.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.02 us (0.3%)
LB compute : 373.54 us (95.0%)
LB move op cnt : 0
LB apply : 3.98 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.56 us (64.2%)
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 | 7.8294e+05 | 262144 | 1 | 3.348e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.214753837332786 (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 : 6.41 us (1.5%)
patch tree reduce : 1.33 us (0.3%)
gen split merge : 811.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.10 us (0.3%)
LB compute : 415.43 us (95.3%)
LB move op cnt : 0
LB apply : 4.33 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.08 us (74.9%)
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 | 7.0297e+05 | 262144 | 1 | 3.729e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.45664684413625 (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 : 6.46 us (1.8%)
patch tree reduce : 1.65 us (0.5%)
gen split merge : 822.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 892.00 ns (0.2%)
LB compute : 339.36 us (94.3%)
LB move op cnt : 0
LB apply : 4.26 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.60 us (70.3%)
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 | 7.8884e+05 | 262144 | 1 | 3.323e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.34496417192853 (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 : 6.34 us (1.9%)
patch tree reduce : 1.80 us (0.5%)
gen split merge : 1.14 us (0.3%)
split / merge op : 0/0
apply split merge : 912.00 ns (0.3%)
LB compute : 320.36 us (94.0%)
LB move op cnt : 0
LB apply : 4.05 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.09 us (70.3%)
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 | 7.0610e+05 | 262144 | 1 | 3.713e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.525781878440931 (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 : 6.89 us (2.1%)
patch tree reduce : 1.56 us (0.5%)
gen split merge : 852.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.38 us (0.4%)
LB compute : 309.95 us (93.6%)
LB move op cnt : 0
LB apply : 3.88 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.42 us (69.5%)
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 | 7.7730e+05 | 262144 | 1 | 3.372e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.091633949187866 (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 : 6.56 us (1.6%)
patch tree reduce : 1.65 us (0.4%)
gen split merge : 822.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.2%)
LB compute : 393.59 us (95.1%)
LB move op cnt : 0
LB apply : 3.91 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.72 us (71.1%)
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 | 7.7153e+05 | 262144 | 1 | 3.398e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.964831727298687 (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.49 us (1.6%)
patch tree reduce : 1.46 us (0.4%)
gen split merge : 842.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.27 us (0.3%)
LB compute : 390.86 us (95.1%)
LB move op cnt : 0
LB apply : 4.16 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.67 us (71.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 | 7.3460e+05 | 262144 | 1 | 3.569e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.152969580367365 (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 : 6.81 us (1.7%)
patch tree reduce : 1.57 us (0.4%)
gen split merge : 1.10 us (0.3%)
split / merge op : 0/0
apply split merge : 892.00 ns (0.2%)
LB compute : 380.63 us (94.8%)
LB move op cnt : 0
LB apply : 4.03 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.19 us (74.8%)
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 | 7.1436e+05 | 262144 | 1 | 3.670e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.708222327515351 (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 : 5.73 us (1.7%)
patch tree reduce : 1.46 us (0.4%)
gen split merge : 861.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 892.00 ns (0.3%)
LB compute : 317.37 us (94.2%)
LB move op cnt : 0
LB apply : 3.86 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.32 us (69.0%)
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 | 7.7837e+05 | 262144 | 1 | 3.368e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.115906202971647 (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.17 us (1.9%)
patch tree reduce : 1.71 us (0.4%)
gen split merge : 921.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.04 us (0.3%)
LB compute : 361.91 us (94.4%)
LB move op cnt : 0
LB apply : 4.04 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.78 us (72.3%)
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 | 7.0599e+05 | 262144 | 1 | 3.713e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.524353380918123 (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 : 6.25 us (1.4%)
patch tree reduce : 1.41 us (0.3%)
gen split merge : 1.07 us (0.2%)
split / merge op : 0/0
apply split merge : 882.00 ns (0.2%)
LB compute : 419.50 us (92.9%)
LB move op cnt : 0
LB apply : 13.08 us (2.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.63 us (77.5%)
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 | 7.7844e+05 | 262144 | 1 | 3.368e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.117677063255467 (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 : 6.61 us (1.5%)
patch tree reduce : 1.54 us (0.3%)
gen split merge : 812.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 902.00 ns (0.2%)
LB compute : 424.13 us (95.2%)
LB move op cnt : 0
LB apply : 4.52 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.20 us (73.5%)
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 | 7.6411e+05 | 262144 | 1 | 3.431e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.802722352095888 (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 : 6.42 us (1.6%)
patch tree reduce : 1.51 us (0.4%)
gen split merge : 812.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 871.00 ns (0.2%)
LB compute : 388.23 us (95.1%)
LB move op cnt : 0
LB apply : 3.98 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.00 us (73.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 | 7.7964e+05 | 262144 | 1 | 3.362e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.144380556029457 (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 : 5.94 us (1.4%)
patch tree reduce : 1.48 us (0.3%)
gen split merge : 1.08 us (0.3%)
split / merge op : 0/0
apply split merge : 891.00 ns (0.2%)
LB compute : 410.46 us (95.1%)
LB move op cnt : 0
LB apply : 4.61 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.98 us (73.7%)
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 | 7.8327e+05 | 262144 | 1 | 3.347e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.22433788624583 (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 : 6.72 us (1.8%)
patch tree reduce : 1.78 us (0.5%)
gen split merge : 1.13 us (0.3%)
split / merge op : 0/0
apply split merge : 871.00 ns (0.2%)
LB compute : 354.50 us (94.1%)
LB move op cnt : 0
LB apply : 4.56 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.27 us (69.2%)
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.7990e+05 | 262144 | 1 | 3.361e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.15043147877711 (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.40 us (1.9%)
patch tree reduce : 1.70 us (0.5%)
gen split merge : 801.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.00 us (0.3%)
LB compute : 316.77 us (93.7%)
LB move op cnt : 0
LB apply : 4.46 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.76 us (72.4%)
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 | 7.6713e+05 | 262144 | 1 | 3.417e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.869828193999442 (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 : 6.45 us (1.8%)
patch tree reduce : 1.80 us (0.5%)
gen split merge : 812.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 932.00 ns (0.3%)
LB compute : 330.39 us (93.8%)
LB move op cnt : 0
LB apply : 4.83 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.13 us (72.4%)
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 | 7.5156e+05 | 262144 | 1 | 3.488e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.527410642595104 (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 : 6.16 us (1.8%)
patch tree reduce : 1.39 us (0.4%)
gen split merge : 821.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 881.00 ns (0.3%)
LB compute : 316.87 us (94.2%)
LB move op cnt : 0
LB apply : 3.91 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.04 us (68.4%)
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 | 7.7725e+05 | 262144 | 1 | 3.373e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.092440462331943 (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 : 7.19 us (2.1%)
patch tree reduce : 1.61 us (0.5%)
gen split merge : 1.15 us (0.3%)
split / merge op : 0/0
apply split merge : 1.03 us (0.3%)
LB compute : 322.03 us (93.7%)
LB move op cnt : 0
LB apply : 3.78 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.42 us (70.8%)
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 | 6.9163e+05 | 262144 | 1 | 3.790e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.209571297326056 (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 : 5.94 us (1.6%)
patch tree reduce : 1.46 us (0.4%)
gen split merge : 841.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 882.00 ns (0.2%)
LB compute : 358.19 us (94.8%)
LB move op cnt : 0
LB apply : 4.25 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 23.18 us (95.0%)
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 | 7.7782e+05 | 262144 | 1 | 3.370e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.10516114778553 (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 : 6.76 us (1.6%)
patch tree reduce : 1.67 us (0.4%)
gen split merge : 841.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.2%)
LB compute : 389.85 us (94.8%)
LB move op cnt : 0
LB apply : 4.80 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.36 us (76.1%)
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 | 7.6497e+05 | 262144 | 1 | 3.427e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.822585701676672 (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 : 6.15 us (1.5%)
patch tree reduce : 1.43 us (0.3%)
gen split merge : 892.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.11 us (0.3%)
LB compute : 393.38 us (94.9%)
LB move op cnt : 0
LB apply : 4.26 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.97 us (74.6%)
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 | 7.7100e+05 | 262144 | 1 | 3.400e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.95531799741234 (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 : 6.71 us (2.0%)
patch tree reduce : 1.40 us (0.4%)
gen split merge : 821.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.3%)
LB compute : 317.66 us (93.9%)
LB move op cnt : 0
LB apply : 4.46 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.40 us (70.5%)
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 | 7.8765e+05 | 262144 | 1 | 3.328e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.32146660383257 (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.82 us (2.0%)
patch tree reduce : 1.43 us (0.4%)
gen split merge : 801.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 861.00 ns (0.3%)
LB compute : 314.04 us (93.9%)
LB move op cnt : 0
LB apply : 4.12 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.77 us (71.1%)
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 | 7.8383e+05 | 262144 | 1 | 3.344e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.23749100947685 (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 : 6.94 us (2.1%)
patch tree reduce : 1.58 us (0.5%)
gen split merge : 1.20 us (0.4%)
split / merge op : 0/0
apply split merge : 862.00 ns (0.3%)
LB compute : 313.39 us (93.8%)
LB move op cnt : 0
LB apply : 4.19 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.11 us (74.0%)
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 | 7.7284e+05 | 262144 | 1 | 3.392e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.995836293070614 (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 : 6.52 us (1.5%)
patch tree reduce : 1.33 us (0.3%)
gen split merge : 811.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.09 us (0.2%)
LB compute : 428.63 us (95.4%)
LB move op cnt : 0
LB apply : 4.74 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.39 us (75.6%)
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.9158e+05 | 262144 | 1 | 3.312e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.407896406527392 (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.33 us (1.6%)
patch tree reduce : 1.49 us (0.4%)
gen split merge : 932.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 851.00 ns (0.2%)
LB compute : 367.61 us (94.9%)
LB move op cnt : 0
LB apply : 3.92 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.92 us (70.8%)
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 | 7.7329e+05 | 262144 | 1 | 3.390e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.005728954886976 (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 : 6.34 us (1.7%)
patch tree reduce : 1.42 us (0.4%)
gen split merge : 1.14 us (0.3%)
split / merge op : 0/0
apply split merge : 872.00 ns (0.2%)
LB compute : 352.74 us (94.6%)
LB move op cnt : 0
LB apply : 3.65 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.95 us (69.5%)
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.6394e+05 | 262144 | 1 | 3.431e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.80012498949881 (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 : 6.14 us (1.4%)
patch tree reduce : 1.35 us (0.3%)
gen split merge : 831.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.07 us (0.2%)
LB compute : 409.19 us (95.3%)
LB move op cnt : 0
LB apply : 4.13 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.00 us (71.4%)
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.7620e+05 | 262144 | 1 | 3.377e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.06973940425674 (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 : 6.53 us (1.6%)
patch tree reduce : 1.88 us (0.5%)
gen split merge : 1.01 us (0.2%)
split / merge op : 0/0
apply split merge : 941.00 ns (0.2%)
LB compute : 392.67 us (94.9%)
LB move op cnt : 0
LB apply : 4.20 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.86 us (73.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.6937e+05 | 262144 | 1 | 3.407e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.91948010586629 (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 : 29.22 us (7.2%)
patch tree reduce : 1.51 us (0.4%)
gen split merge : 851.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 871.00 ns (0.2%)
LB compute : 363.91 us (89.4%)
LB move op cnt : 0
LB apply : 3.81 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.59 us (70.9%)
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 | 6.5868e+05 | 262144 | 1 | 3.980e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.485246918608363 (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.34 us (1.7%)
patch tree reduce : 1.69 us (0.4%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 892.00 ns (0.2%)
LB compute : 358.42 us (94.6%)
LB move op cnt : 0
LB apply : 4.49 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.06 us (74.4%)
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 | 7.7145e+05 | 262144 | 1 | 3.398e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.96503604416885 (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 : 6.45 us (1.8%)
patch tree reduce : 1.44 us (0.4%)
gen split merge : 931.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.3%)
LB compute : 343.76 us (94.5%)
LB move op cnt : 0
LB apply : 3.94 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.28 us (69.5%)
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 | 7.8860e+05 | 262144 | 1 | 3.324e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.342062445157957 (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 : 6.63 us (1.9%)
patch tree reduce : 1.60 us (0.5%)
gen split merge : 921.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.10 us (0.3%)
LB compute : 327.31 us (94.1%)
LB move op cnt : 0
LB apply : 3.89 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.34 us (68.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 | 6.6237e+05 | 262144 | 1 | 3.958e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.565948331865018 (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 : 6.22 us (1.9%)
patch tree reduce : 1.43 us (0.4%)
gen split merge : 861.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.3%)
LB compute : 310.56 us (94.0%)
LB move op cnt : 0
LB apply : 3.93 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.60 us (72.2%)
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 | 7.7563e+05 | 262144 | 1 | 3.380e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.056524748701563 (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 : 6.53 us (1.7%)
patch tree reduce : 1.57 us (0.4%)
gen split merge : 841.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.14 us (0.3%)
LB compute : 353.28 us (94.4%)
LB move op cnt : 0
LB apply : 4.42 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.67 us (75.8%)
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 | 7.8640e+05 | 262144 | 1 | 3.333e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.293312084021547 (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.05 us (2.0%)
patch tree reduce : 1.75 us (0.5%)
gen split merge : 961.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 941.00 ns (0.3%)
LB compute : 329.62 us (94.0%)
LB move op cnt : 0
LB apply : 3.95 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.27 us (69.8%)
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 | 7.8189e+05 | 262144 | 1 | 3.353e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.194083629380025 (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 : 6.24 us (1.5%)
patch tree reduce : 1.57 us (0.4%)
gen split merge : 1.14 us (0.3%)
split / merge op : 0/0
apply split merge : 892.00 ns (0.2%)
LB compute : 394.72 us (95.1%)
LB move op cnt : 0
LB apply : 4.36 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.06 us (73.1%)
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 | 7.7604e+05 | 262144 | 1 | 3.378e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.065197740016785 (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 : 6.58 us (1.8%)
patch tree reduce : 1.52 us (0.4%)
gen split merge : 942.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 912.00 ns (0.3%)
LB compute : 339.28 us (94.2%)
LB move op cnt : 0
LB apply : 4.00 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.50 us (70.2%)
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 | 7.8921e+05 | 262144 | 1 | 3.322e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.35463874182192 (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 : 6.81 us (2.0%)
patch tree reduce : 1.43 us (0.4%)
gen split merge : 861.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.12 us (0.3%)
LB compute : 322.37 us (93.9%)
LB move op cnt : 0
LB apply : 4.28 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.08 us (75.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 | 7.8015e+05 | 262144 | 1 | 3.360e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.155347428086603 (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 : 6.02 us (1.5%)
patch tree reduce : 1.32 us (0.3%)
gen split merge : 822.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.11 us (0.3%)
LB compute : 372.23 us (95.0%)
LB move op cnt : 0
LB apply : 4.14 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.09 us (74.2%)
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 | 6.5061e+05 | 262144 | 1 | 4.029e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.306610446196865 (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 : 6.04 us (1.6%)
patch tree reduce : 1.61 us (0.4%)
gen split merge : 1.19 us (0.3%)
split / merge op : 0/0
apply split merge : 852.00 ns (0.2%)
LB compute : 353.53 us (94.4%)
LB move op cnt : 0
LB apply : 4.11 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.80 us (69.4%)
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 | 7.3033e+05 | 262144 | 1 | 3.589e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.059731493520804 (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 : 6.52 us (1.8%)
patch tree reduce : 1.68 us (0.5%)
gen split merge : 821.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.3%)
LB compute : 334.81 us (94.4%)
LB move op cnt : 0
LB apply : 3.67 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.29 us (67.2%)
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 | 7.2706e+05 | 262144 | 1 | 3.606e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.987530752061186 (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 : 6.50 us (1.8%)
patch tree reduce : 1.74 us (0.5%)
gen split merge : 821.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.18 us (0.3%)
LB compute : 349.86 us (94.5%)
LB move op cnt : 0
LB apply : 3.94 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.64 us (73.3%)
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 | 7.2340e+05 | 262144 | 1 | 3.624e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.90704647773664 (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 : 26.78 us (7.1%)
patch tree reduce : 1.44 us (0.4%)
gen split merge : 922.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 922.00 ns (0.2%)
LB compute : 339.74 us (89.4%)
LB move op cnt : 0
LB apply : 3.86 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.28 us (69.9%)
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.7017e+05 | 262144 | 1 | 3.404e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.9354960396185 (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.01 us (1.6%)
patch tree reduce : 1.40 us (0.4%)
gen split merge : 851.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.3%)
LB compute : 346.16 us (94.7%)
LB move op cnt : 0
LB apply : 4.12 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.96 us (73.9%)
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 | 7.3927e+05 | 262144 | 1 | 3.546e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.255831936878003 (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 : 5.96 us (1.8%)
patch tree reduce : 1.61 us (0.5%)
gen split merge : 831.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.01 us (0.3%)
LB compute : 319.61 us (94.2%)
LB move op cnt : 0
LB apply : 4.04 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.93 us (70.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.7123e+05 | 262144 | 1 | 3.399e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.95860638834292 (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 : 6.47 us (1.4%)
patch tree reduce : 1.41 us (0.3%)
gen split merge : 1.21 us (0.3%)
split / merge op : 0/0
apply split merge : 1.11 us (0.2%)
LB compute : 431.44 us (95.3%)
LB move op cnt : 0
LB apply : 4.29 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.86 us (72.7%)
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 | 7.8456e+05 | 262144 | 1 | 3.341e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.25168433827526 (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 : 6.89 us (1.8%)
patch tree reduce : 1.39 us (0.4%)
gen split merge : 802.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.40 us (0.4%)
LB compute : 352.11 us (94.3%)
LB move op cnt : 0
LB apply : 3.63 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.24 us (66.7%)
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 | 7.7993e+05 | 262144 | 1 | 3.361e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.14978749473827 (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 : 5.94 us (1.5%)
patch tree reduce : 1.35 us (0.3%)
gen split merge : 822.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.07 us (0.3%)
LB compute : 375.19 us (95.0%)
LB move op cnt : 0
LB apply : 3.88 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.29 us (77.4%)
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 | 7.6537e+05 | 262144 | 1 | 3.425e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.829676963546547 (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 : 6.47 us (1.7%)
patch tree reduce : 1.57 us (0.4%)
gen split merge : 822.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 951.00 ns (0.2%)
LB compute : 358.74 us (93.3%)
LB move op cnt : 0
LB apply : 9.07 us (2.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.86 us (69.5%)
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 | 7.8291e+05 | 262144 | 1 | 3.348e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.215341152471147 (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 : 6.01 us (1.5%)
patch tree reduce : 1.51 us (0.4%)
gen split merge : 1.00 us (0.3%)
split / merge op : 0/0
apply split merge : 1.28 us (0.3%)
LB compute : 376.76 us (94.8%)
LB move op cnt : 0
LB apply : 4.32 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.68 us (71.2%)
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 | 7.2510e+05 | 262144 | 1 | 3.615e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.944066367049873 (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 : 6.20 us (1.6%)
patch tree reduce : 1.34 us (0.3%)
gen split merge : 822.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.10 us (0.3%)
LB compute : 375.43 us (95.0%)
LB move op cnt : 0
LB apply : 3.91 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.23 us (72.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.7120e+05 | 262144 | 1 | 3.399e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.957820623634685 (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 : 5.93 us (1.5%)
patch tree reduce : 1.55 us (0.4%)
gen split merge : 821.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 902.00 ns (0.2%)
LB compute : 385.24 us (95.1%)
LB move op cnt : 0
LB apply : 4.44 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.69 us (72.6%)
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 | 7.7885e+05 | 262144 | 1 | 3.366e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.126095151880936 (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 : 5.99 us (1.4%)
patch tree reduce : 1.42 us (0.3%)
gen split merge : 1.13 us (0.3%)
split / merge op : 0/0
apply split merge : 1.00 us (0.2%)
LB compute : 393.65 us (95.1%)
LB move op cnt : 0
LB apply : 4.59 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.57 us (70.8%)
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 | 7.4506e+05 | 262144 | 1 | 3.518e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.3832440792468 (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.38 us (1.6%)
patch tree reduce : 1.87 us (0.5%)
gen split merge : 1.03 us (0.3%)
split / merge op : 0/0
apply split merge : 1.20 us (0.3%)
LB compute : 388.60 us (94.9%)
LB move op cnt : 0
LB apply : 4.32 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.72 us (70.0%)
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 | 7.7135e+05 | 262144 | 1 | 3.399e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10.544887353671271 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 131.165969598 (s) [Godunov][rank=0]
Info: dump to _to_trash/ramses_kh/periodic_0005.vtk [VTK Dump][rank=0]
- took 32.64 ms, bandwidth = 1.25 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 : 6.10 us (1.4%)
patch tree reduce : 1.48 us (0.3%)
gen split merge : 812.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.06 us (0.2%)
LB compute : 409.52 us (95.3%)
LB move op cnt : 0
LB apply : 3.93 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.67 us (71.5%)
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 | 7.0867e+05 | 262144 | 1 | 3.699e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.583074263157533 (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 : 6.83 us (1.8%)
patch tree reduce : 1.51 us (0.4%)
gen split merge : 822.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 891.00 ns (0.2%)
LB compute : 352.63 us (94.5%)
LB move op cnt : 0
LB apply : 4.27 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.60 us (66.0%)
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 | 6.9810e+05 | 262144 | 1 | 3.755e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.350838612958857 (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 : 6.55 us (1.9%)
patch tree reduce : 1.51 us (0.4%)
gen split merge : 932.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 902.00 ns (0.3%)
LB compute : 317.98 us (94.0%)
LB move op cnt : 0
LB apply : 3.80 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.35 us (67.3%)
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 | 6.8214e+05 | 262144 | 1 | 3.843e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.999890384794814 (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 : 6.44 us (1.6%)
patch tree reduce : 1.69 us (0.4%)
gen split merge : 922.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.01 us (0.3%)
LB compute : 371.33 us (94.5%)
LB move op cnt : 0
LB apply : 4.51 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.07 us (73.0%)
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 | 6.5743e+05 | 262144 | 1 | 3.987e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.456673074231304 (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 : 6.01 us (1.6%)
patch tree reduce : 1.74 us (0.5%)
gen split merge : 852.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.17 us (0.3%)
LB compute : 352.57 us (94.4%)
LB move op cnt : 0
LB apply : 4.27 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.74 us (73.4%)
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 | 7.1283e+05 | 262144 | 1 | 3.677e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.675022112109763 (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 : 6.55 us (1.8%)
patch tree reduce : 1.57 us (0.4%)
gen split merge : 812.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.34 us (0.4%)
LB compute : 352.45 us (94.4%)
LB move op cnt : 0
LB apply : 3.85 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.50 us (68.8%)
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 | 6.8535e+05 | 262144 | 1 | 3.825e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.070832362129279 (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.40 us (1.7%)
patch tree reduce : 1.78 us (0.5%)
gen split merge : 861.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.15 us (0.3%)
LB compute : 353.72 us (94.3%)
LB move op cnt : 0
LB apply : 4.60 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.96 us (73.8%)
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 | 7.1717e+05 | 262144 | 1 | 3.655e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.770724426842639 (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 : 5.97 us (1.5%)
patch tree reduce : 1.52 us (0.4%)
gen split merge : 1.01 us (0.3%)
split / merge op : 0/0
apply split merge : 922.00 ns (0.2%)
LB compute : 377.61 us (94.9%)
LB move op cnt : 0
LB apply : 4.38 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.96 us (72.8%)
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 | 7.8375e+05 | 262144 | 1 | 3.345e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.234982628687074 (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 : 6.14 us (1.7%)
patch tree reduce : 1.83 us (0.5%)
gen split merge : 811.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.18 us (0.3%)
LB compute : 351.01 us (94.5%)
LB move op cnt : 0
LB apply : 3.74 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.42 us (75.3%)
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 | 7.8092e+05 | 262144 | 1 | 3.357e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.17287507846106 (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 : 5.97 us (1.6%)
patch tree reduce : 1.85 us (0.5%)
gen split merge : 972.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.3%)
LB compute : 363.84 us (94.7%)
LB move op cnt : 0
LB apply : 3.98 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.00 us (71.2%)
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 | 7.8999e+05 | 262144 | 1 | 3.318e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.37234644484715 (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 : 6.09 us (1.5%)
patch tree reduce : 1.44 us (0.3%)
gen split merge : 841.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 872.00 ns (0.2%)
LB compute : 393.92 us (95.0%)
LB move op cnt : 0
LB apply : 4.26 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.74 us (72.6%)
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 | 7.1940e+05 | 262144 | 1 | 3.644e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.82034259683962 (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 : 6.33 us (1.8%)
patch tree reduce : 1.46 us (0.4%)
gen split merge : 831.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.03 us (0.3%)
LB compute : 325.87 us (94.3%)
LB move op cnt : 0
LB apply : 3.71 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.59 us (71.5%)
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 | 7.7634e+05 | 262144 | 1 | 3.377e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.072708559890536 (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.49 us (1.8%)
patch tree reduce : 1.50 us (0.4%)
gen split merge : 1.18 us (0.3%)
split / merge op : 0/0
apply split merge : 1.01 us (0.3%)
LB compute : 343.79 us (94.2%)
LB move op cnt : 0
LB apply : 3.96 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.39 us (70.1%)
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 | 7.9559e+05 | 262144 | 1 | 3.295e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.49619138044027 (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 : 6.24 us (1.6%)
patch tree reduce : 1.68 us (0.4%)
gen split merge : 812.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 892.00 ns (0.2%)
LB compute : 359.32 us (94.6%)
LB move op cnt : 0
LB apply : 3.97 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.87 us (74.7%)
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 | 7.8898e+05 | 262144 | 1 | 3.323e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.351069310255912 (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 : 6.44 us (1.8%)
patch tree reduce : 1.30 us (0.4%)
gen split merge : 842.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.00 us (0.3%)
LB compute : 338.85 us (94.3%)
LB move op cnt : 0
LB apply : 4.48 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.03 us (72.2%)
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 | 7.4309e+05 | 262144 | 1 | 3.528e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.341948852337516 (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.20 us (1.6%)
patch tree reduce : 1.41 us (0.4%)
gen split merge : 972.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.32 us (0.3%)
LB compute : 363.07 us (94.6%)
LB move op cnt : 0
LB apply : 4.55 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.24 us (73.7%)
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 | 7.2466e+05 | 262144 | 1 | 3.617e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.936971811085428 (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.06 us (1.6%)
patch tree reduce : 1.53 us (0.4%)
gen split merge : 1.05 us (0.3%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.2%)
LB compute : 367.95 us (95.0%)
LB move op cnt : 0
LB apply : 3.60 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.10 us (76.1%)
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 | 6.9060e+05 | 262144 | 1 | 3.796e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.188013099951936 (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.76 us (1.8%)
patch tree reduce : 1.58 us (0.4%)
gen split merge : 1.17 us (0.3%)
split / merge op : 0/0
apply split merge : 872.00 ns (0.2%)
LB compute : 354.62 us (94.2%)
LB move op cnt : 0
LB apply : 3.96 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.97 us (71.7%)
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 | 7.5153e+05 | 262144 | 1 | 3.488e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.528213780919682 (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 : 6.35 us (1.6%)
patch tree reduce : 1.40 us (0.4%)
gen split merge : 842.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.00 us (0.3%)
LB compute : 370.63 us (94.8%)
LB move op cnt : 0
LB apply : 3.97 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.66 us (69.9%)
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 | 7.5284e+05 | 262144 | 1 | 3.482e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.557264559128065 (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 : 5.96 us (1.6%)
patch tree reduce : 1.69 us (0.5%)
gen split merge : 942.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.02 us (0.3%)
LB compute : 350.79 us (94.6%)
LB move op cnt : 0
LB apply : 3.96 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 25.68 us (95.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 | 7.8501e+05 | 262144 | 1 | 3.339e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.265131286791817 (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 : 6.06 us (1.7%)
patch tree reduce : 1.68 us (0.5%)
gen split merge : 972.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 911.00 ns (0.3%)
LB compute : 339.98 us (94.4%)
LB move op cnt : 0
LB apply : 4.15 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.00 us (71.5%)
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 | 7.3272e+05 | 262144 | 1 | 3.578e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.11525780593268 (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 : 6.93 us (1.3%)
patch tree reduce : 1.58 us (0.3%)
gen split merge : 832.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.03 us (0.2%)
LB compute : 507.70 us (95.9%)
LB move op cnt : 0
LB apply : 4.55 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.72 us (77.9%)
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 | 7.7048e+05 | 262144 | 1 | 3.402e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.94587286119989 (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 : 6.06 us (1.5%)
patch tree reduce : 1.42 us (0.3%)
gen split merge : 831.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 862.00 ns (0.2%)
LB compute : 391.55 us (95.2%)
LB move op cnt : 0
LB apply : 4.41 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.76 us (70.9%)
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 | 7.6103e+05 | 262144 | 1 | 3.445e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.738410114668934 (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 : 6.28 us (1.6%)
patch tree reduce : 1.50 us (0.4%)
gen split merge : 1.13 us (0.3%)
split / merge op : 0/0
apply split merge : 871.00 ns (0.2%)
LB compute : 377.77 us (94.8%)
LB move op cnt : 0
LB apply : 4.20 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.54 us (69.0%)
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 | 7.5969e+05 | 262144 | 1 | 3.451e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.709251491068255 (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 : 5.87 us (1.5%)
patch tree reduce : 1.53 us (0.4%)
gen split merge : 841.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 891.00 ns (0.2%)
LB compute : 364.26 us (94.8%)
LB move op cnt : 0
LB apply : 3.79 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.14 us (70.5%)
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 | 7.2585e+05 | 262144 | 1 | 3.612e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.965226294033144 (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 : 28.42 us (7.9%)
patch tree reduce : 1.45 us (0.4%)
gen split merge : 801.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 871.00 ns (0.2%)
LB compute : 318.40 us (88.3%)
LB move op cnt : 0
LB apply : 4.04 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.84 us (71.3%)
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 | 7.3124e+05 | 262144 | 1 | 3.585e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.083915960325786 (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 : 6.47 us (1.7%)
patch tree reduce : 1.44 us (0.4%)
gen split merge : 821.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.31 us (0.4%)
LB compute : 353.21 us (94.3%)
LB move op cnt : 0
LB apply : 4.09 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.18 us (75.7%)
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 | 7.3086e+05 | 262144 | 1 | 3.587e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.075924790869657 (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 : 6.41 us (1.7%)
patch tree reduce : 1.50 us (0.4%)
gen split merge : 821.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 971.00 ns (0.3%)
LB compute : 346.10 us (94.3%)
LB move op cnt : 0
LB apply : 4.50 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.83 us (73.3%)
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 | 7.5097e+05 | 262144 | 1 | 3.491e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.518384456170367 (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 : 8.10 us (2.2%)
patch tree reduce : 2.04 us (0.5%)
gen split merge : 872.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.06 us (0.3%)
LB compute : 351.46 us (93.9%)
LB move op cnt : 0
LB apply : 4.07 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.28 us (68.9%)
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 | 7.5222e+05 | 262144 | 1 | 3.485e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.54626393545445 (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 : 6.55 us (2.0%)
patch tree reduce : 1.44 us (0.4%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 942.00 ns (0.3%)
LB compute : 306.90 us (93.9%)
LB move op cnt : 0
LB apply : 3.82 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.14 us (66.3%)
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 | 6.6948e+05 | 262144 | 1 | 3.916e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.72643977459873 (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 : 6.54 us (1.7%)
patch tree reduce : 1.58 us (0.4%)
gen split merge : 881.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.00 us (0.3%)
LB compute : 356.19 us (94.5%)
LB move op cnt : 0
LB apply : 4.06 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.80 us (71.7%)
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 | 7.4632e+05 | 262144 | 1 | 3.513e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.416916346647028 (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 : 6.44 us (1.9%)
patch tree reduce : 1.45 us (0.4%)
gen split merge : 822.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 902.00 ns (0.3%)
LB compute : 327.83 us (94.2%)
LB move op cnt : 0
LB apply : 3.98 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.82 us (71.9%)
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 | 7.6555e+05 | 262144 | 1 | 3.424e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.84023845248322 (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 : 6.82 us (1.9%)
patch tree reduce : 1.41 us (0.4%)
gen split merge : 1.00 us (0.3%)
split / merge op : 0/0
apply split merge : 952.00 ns (0.3%)
LB compute : 346.34 us (94.1%)
LB move op cnt : 0
LB apply : 4.20 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.51 us (72.5%)
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 | 7.8904e+05 | 262144 | 1 | 3.322e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.35726416086065 (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 : 5.77 us (1.5%)
patch tree reduce : 1.71 us (0.4%)
gen split merge : 922.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.03 us (0.3%)
LB compute : 373.27 us (94.9%)
LB move op cnt : 0
LB apply : 4.30 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.87 us (71.9%)
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 | 7.8004e+05 | 262144 | 1 | 3.361e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.15959743048274 (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 : 15.12 us (4.3%)
patch tree reduce : 3.04 us (0.9%)
gen split merge : 832.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 952.00 ns (0.3%)
LB compute : 321.25 us (91.1%)
LB move op cnt : 0
LB apply : 4.22 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.85 us (73.6%)
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 | 7.8054e+05 | 262144 | 1 | 3.358e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.170951825899696 (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.46 us (1.9%)
patch tree reduce : 1.52 us (0.4%)
gen split merge : 1.06 us (0.3%)
split / merge op : 0/0
apply split merge : 942.00 ns (0.3%)
LB compute : 324.40 us (93.9%)
LB move op cnt : 0
LB apply : 4.28 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.07 us (75.0%)
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 | 7.7237e+05 | 262144 | 1 | 3.394e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.991513880435534 (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 : 6.42 us (1.8%)
patch tree reduce : 1.64 us (0.5%)
gen split merge : 912.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 882.00 ns (0.2%)
LB compute : 341.58 us (94.4%)
LB move op cnt : 0
LB apply : 3.90 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.26 us (70.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 | 7.3193e+05 | 262144 | 1 | 3.582e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.102059734771856 (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.75 us (2.1%)
patch tree reduce : 1.65 us (0.5%)
gen split merge : 1.22 us (0.4%)
split / merge op : 0/0
apply split merge : 981.00 ns (0.3%)
LB compute : 303.68 us (93.6%)
LB move op cnt : 0
LB apply : 3.69 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.07 us (72.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 | 7.7402e+05 | 262144 | 1 | 3.387e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.02834367525366 (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 : 6.24 us (1.9%)
patch tree reduce : 1.90 us (0.6%)
gen split merge : 831.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.27 us (0.4%)
LB compute : 311.73 us (93.7%)
LB move op cnt : 0
LB apply : 3.91 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.84 us (69.4%)
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 | 7.3539e+05 | 262144 | 1 | 3.565e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.17884915586888 (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 : 6.19 us (1.8%)
patch tree reduce : 1.48 us (0.4%)
gen split merge : 861.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 892.00 ns (0.3%)
LB compute : 321.02 us (94.0%)
LB move op cnt : 0
LB apply : 4.22 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.47 us (70.2%)
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 | 7.1063e+05 | 262144 | 1 | 3.689e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.634244223255012 (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 : 6.36 us (1.6%)
patch tree reduce : 1.51 us (0.4%)
gen split merge : 941.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.35 us (0.3%)
LB compute : 343.63 us (87.4%)
LB move op cnt : 0
LB apply : 3.76 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.07 us (73.9%)
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 | 7.7928e+05 | 262144 | 1 | 3.364e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.14485238999294 (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.10 us (1.6%)
patch tree reduce : 1.65 us (0.4%)
gen split merge : 811.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 892.00 ns (0.2%)
LB compute : 355.70 us (94.5%)
LB move op cnt : 0
LB apply : 3.91 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.99 us (72.0%)
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 | 7.0177e+05 | 262144 | 1 | 3.735e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.439844067844142 (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 : 6.53 us (1.8%)
patch tree reduce : 1.94 us (0.5%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.00 us (0.3%)
LB compute : 348.06 us (94.3%)
LB move op cnt : 0
LB apply : 3.85 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.32 us (68.8%)
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 | 7.7653e+05 | 262144 | 1 | 3.376e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.084880319148375 (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 : 6.57 us (1.9%)
patch tree reduce : 1.45 us (0.4%)
gen split merge : 852.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 891.00 ns (0.3%)
LB compute : 326.80 us (94.2%)
LB move op cnt : 0
LB apply : 3.98 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.59 us (69.2%)
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.7718e+05 | 262144 | 1 | 3.373e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.09945648639144 (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 : 6.85 us (1.7%)
patch tree reduce : 1.50 us (0.4%)
gen split merge : 1.01 us (0.3%)
split / merge op : 0/0
apply split merge : 902.00 ns (0.2%)
LB compute : 382.28 us (94.7%)
LB move op cnt : 0
LB apply : 4.17 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.72 us (71.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.8176e+05 | 262144 | 1 | 3.353e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.200453793424575 (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.37 us (1.3%)
patch tree reduce : 1.59 us (0.3%)
gen split merge : 792.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.04 us (0.2%)
LB compute : 458.46 us (95.6%)
LB move op cnt : 0
LB apply : 4.15 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.49 us (71.4%)
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 | 7.7864e+05 | 262144 | 1 | 3.367e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.132151714603577 (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.38 us (1.6%)
patch tree reduce : 1.65 us (0.4%)
gen split merge : 1.01 us (0.3%)
split / merge op : 0/0
apply split merge : 1.00 us (0.3%)
LB compute : 373.04 us (94.8%)
LB move op cnt : 0
LB apply : 4.08 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.90 us (70.3%)
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 | 7.8800e+05 | 262144 | 1 | 3.327e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.33840911291708 (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.23 us (1.8%)
patch tree reduce : 1.44 us (0.4%)
gen split merge : 821.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 872.00 ns (0.3%)
LB compute : 317.59 us (93.9%)
LB move op cnt : 0
LB apply : 4.22 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.48 us (69.0%)
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.8012e+05 | 262144 | 1 | 3.360e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.165212985539906 (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 : 6.39 us (1.7%)
patch tree reduce : 1.68 us (0.4%)
gen split merge : 811.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 882.00 ns (0.2%)
LB compute : 358.44 us (94.6%)
LB move op cnt : 0
LB apply : 4.24 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.72 us (70.8%)
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.7644e+05 | 262144 | 1 | 3.376e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.08442435039344 (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 : 5.83 us (1.4%)
patch tree reduce : 1.62 us (0.4%)
gen split merge : 841.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.2%)
LB compute : 397.66 us (95.2%)
LB move op cnt : 0
LB apply : 4.40 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.99 us (73.0%)
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.0125e+05 | 262144 | 1 | 3.738e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.430229222859184 (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 : 6.62 us (1.8%)
patch tree reduce : 1.62 us (0.4%)
gen split merge : 1.13 us (0.3%)
split / merge op : 0/0
apply split merge : 871.00 ns (0.2%)
LB compute : 347.33 us (94.2%)
LB move op cnt : 0
LB apply : 4.70 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.86 us (74.8%)
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 | 7.7939e+05 | 262144 | 1 | 3.363e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.149960644712287 (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 : 6.37 us (1.9%)
patch tree reduce : 1.85 us (0.5%)
gen split merge : 821.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 881.00 ns (0.3%)
LB compute : 317.72 us (94.0%)
LB move op cnt : 0
LB apply : 3.90 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.07 us (70.2%)
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 | 7.1987e+05 | 262144 | 1 | 3.642e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.84044808732901 (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.09 us (1.7%)
patch tree reduce : 1.40 us (0.4%)
gen split merge : 862.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.13 us (0.3%)
LB compute : 338.95 us (94.4%)
LB move op cnt : 0
LB apply : 3.82 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.45 us (69.2%)
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.7806e+05 | 262144 | 1 | 3.369e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.12110993372875 (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.56 us (1.8%)
patch tree reduce : 1.46 us (0.4%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.3%)
LB compute : 335.94 us (94.3%)
LB move op cnt : 0
LB apply : 4.18 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.51 us (70.1%)
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 | 7.7153e+05 | 262144 | 1 | 3.398e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.977699156224233 (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.63 us (1.8%)
patch tree reduce : 1.52 us (0.4%)
gen split merge : 1.01 us (0.3%)
split / merge op : 0/0
apply split merge : 1.10 us (0.3%)
LB compute : 352.46 us (94.6%)
LB move op cnt : 0
LB apply : 3.89 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.52 us (71.0%)
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 | 7.6537e+05 | 262144 | 1 | 3.425e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.842272360069867 (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.51 us (1.6%)
patch tree reduce : 1.69 us (0.4%)
gen split merge : 992.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.03 us (0.3%)
LB compute : 385.69 us (94.7%)
LB move op cnt : 0
LB apply : 4.32 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.89 us (75.2%)
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.1479e+05 | 262144 | 1 | 3.667e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.7294637535524 (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.02 us (1.8%)
patch tree reduce : 1.62 us (0.4%)
gen split merge : 912.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.42 us (0.4%)
LB compute : 366.48 us (94.3%)
LB move op cnt : 0
LB apply : 4.38 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.50 us (69.2%)
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.6856e+05 | 262144 | 1 | 3.411e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.91287275921688 (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 : 6.07 us (1.5%)
patch tree reduce : 8.46 us (2.1%)
gen split merge : 841.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.06 us (0.3%)
LB compute : 365.86 us (93.0%)
LB move op cnt : 0
LB apply : 4.30 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.71 us (72.6%)
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.2141e+05 | 262144 | 1 | 3.634e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.875401667444297 (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.17 us (1.8%)
patch tree reduce : 1.36 us (0.4%)
gen split merge : 861.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.01 us (0.3%)
LB compute : 332.51 us (94.3%)
LB move op cnt : 0
LB apply : 4.11 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.70 us (71.4%)
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.6869e+05 | 262144 | 1 | 3.410e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.916116479611308 (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 : 5.97 us (1.5%)
patch tree reduce : 1.54 us (0.4%)
gen split merge : 911.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.00 us (0.3%)
LB compute : 376.94 us (94.8%)
LB move op cnt : 0
LB apply : 4.47 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.99 us (74.9%)
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 | 7.6921e+05 | 262144 | 1 | 3.408e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.927657917077376 (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 : 5.99 us (1.6%)
patch tree reduce : 1.50 us (0.4%)
gen split merge : 812.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 912.00 ns (0.2%)
LB compute : 366.19 us (94.8%)
LB move op cnt : 0
LB apply : 4.48 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.67 us (72.5%)
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.7141e+05 | 262144 | 1 | 3.398e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.976328197724808 (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.12 us (1.9%)
patch tree reduce : 1.42 us (0.4%)
gen split merge : 922.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.27 us (0.3%)
LB compute : 344.30 us (94.1%)
LB move op cnt : 0
LB apply : 3.65 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.75 us (72.5%)
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 | 7.8279e+05 | 262144 | 1 | 3.349e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.226866620898228 (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.52 us (1.9%)
patch tree reduce : 1.83 us (0.5%)
gen split merge : 821.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.18 us (0.3%)
LB compute : 331.66 us (94.1%)
LB move op cnt : 0
LB apply : 4.12 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.67 us (70.4%)
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.4043e+05 | 262144 | 1 | 3.540e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.29462856587978 (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 : 6.90 us (1.8%)
patch tree reduce : 1.79 us (0.5%)
gen split merge : 1.19 us (0.3%)
split / merge op : 0/0
apply split merge : 952.00 ns (0.2%)
LB compute : 364.85 us (94.4%)
LB move op cnt : 0
LB apply : 4.13 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.86 us (72.7%)
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 | 7.7909e+05 | 262144 | 1 | 3.365e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.145599415673065 (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.41 us (1.9%)
patch tree reduce : 1.83 us (0.5%)
gen split merge : 832.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.00 us (0.3%)
LB compute : 323.35 us (94.0%)
LB move op cnt : 0
LB apply : 4.01 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.15 us (68.1%)
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 | 7.8632e+05 | 262144 | 1 | 3.334e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.30479669808539 (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.35 us (1.8%)
patch tree reduce : 1.49 us (0.4%)
gen split merge : 852.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 971.00 ns (0.3%)
LB compute : 341.66 us (94.4%)
LB move op cnt : 0
LB apply : 4.45 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.96 us (73.7%)
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 | 7.8055e+05 | 262144 | 1 | 3.358e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.17788187228703 (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 : 5.69 us (1.5%)
patch tree reduce : 1.43 us (0.4%)
gen split merge : 932.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.08 us (0.3%)
LB compute : 364.65 us (94.9%)
LB move op cnt : 0
LB apply : 4.17 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.46 us (68.8%)
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.3694e+05 | 262144 | 1 | 3.557e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.218179872562594 (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 : 6.44 us (1.9%)
patch tree reduce : 1.38 us (0.4%)
gen split merge : 941.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.15 us (0.3%)
LB compute : 316.14 us (94.0%)
LB move op cnt : 0
LB apply : 4.14 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.65 us (70.6%)
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 | 7.0954e+05 | 262144 | 1 | 3.695e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.615225096979671 (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 : 6.06 us (1.8%)
patch tree reduce : 1.38 us (0.4%)
gen split merge : 932.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.3%)
LB compute : 320.96 us (94.1%)
LB move op cnt : 0
LB apply : 4.44 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.75 us (72.5%)
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 | 7.6679e+05 | 262144 | 1 | 3.419e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.87526302767902 (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 : 6.39 us (1.8%)
patch tree reduce : 1.68 us (0.5%)
gen split merge : 932.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 881.00 ns (0.3%)
LB compute : 328.88 us (94.2%)
LB move op cnt : 0
LB apply : 4.20 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.42 us (69.5%)
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 | 7.5385e+05 | 262144 | 1 | 3.477e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.59059813491487 (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 : 6.34 us (1.9%)
patch tree reduce : 1.50 us (0.4%)
gen split merge : 1.07 us (0.3%)
split / merge op : 0/0
apply split merge : 1.00 us (0.3%)
LB compute : 313.72 us (93.9%)
LB move op cnt : 0
LB apply : 3.88 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.19 us (67.6%)
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.7649e+05 | 262144 | 1 | 3.376e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.088856980041673 (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 : 6.61 us (1.3%)
patch tree reduce : 1.42 us (0.3%)
gen split merge : 841.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.06 us (0.2%)
LB compute : 480.56 us (95.9%)
LB move op cnt : 0
LB apply : 4.26 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.76 us (75.9%)
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 | 7.7598e+05 | 262144 | 1 | 3.378e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.077682732737625 (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 : 6.70 us (2.0%)
patch tree reduce : 1.75 us (0.5%)
gen split merge : 942.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 871.00 ns (0.3%)
LB compute : 319.37 us (94.0%)
LB move op cnt : 0
LB apply : 3.99 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.33 us (73.6%)
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 | 7.3961e+05 | 262144 | 1 | 3.544e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.277182026880734 (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 : 6.38 us (1.9%)
patch tree reduce : 1.42 us (0.4%)
gen split merge : 932.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.02 us (0.3%)
LB compute : 308.52 us (93.9%)
LB move op cnt : 0
LB apply : 4.10 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.84 us (72.2%)
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 | 7.1718e+05 | 262144 | 1 | 3.655e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.783677328953438 (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 : 6.67 us (2.0%)
patch tree reduce : 1.60 us (0.5%)
gen split merge : 1.06 us (0.3%)
split / merge op : 0/0
apply split merge : 961.00 ns (0.3%)
LB compute : 307.36 us (93.4%)
LB move op cnt : 0
LB apply : 4.47 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.52 us (70.0%)
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 | 7.3332e+05 | 262144 | 1 | 3.575e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.138699207847303 (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 : 29.43 us (7.6%)
patch tree reduce : 1.95 us (0.5%)
gen split merge : 1.00 us (0.3%)
split / merge op : 0/0
apply split merge : 1.00 us (0.3%)
LB compute : 340.47 us (88.4%)
LB move op cnt : 0
LB apply : 4.29 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.55 us (76.3%)
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 | 7.1296e+05 | 262144 | 1 | 3.677e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.690767267111621 (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 : 6.10 us (1.7%)
patch tree reduce : 1.53 us (0.4%)
gen split merge : 922.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 902.00 ns (0.2%)
LB compute : 349.11 us (94.6%)
LB move op cnt : 0
LB apply : 4.17 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.63 us (70.1%)
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 | 6.7545e+05 | 262144 | 1 | 3.881e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.865232033997863 (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 : 6.47 us (1.8%)
patch tree reduce : 1.74 us (0.5%)
gen split merge : 832.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.01 us (0.3%)
LB compute : 341.60 us (94.3%)
LB move op cnt : 0
LB apply : 3.80 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.98 us (65.6%)
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.7520e+05 | 262144 | 1 | 3.382e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.06034801129067 (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 : 5.90 us (1.4%)
patch tree reduce : 1.41 us (0.3%)
gen split merge : 1.02 us (0.2%)
split / merge op : 0/0
apply split merge : 1.45 us (0.3%)
LB compute : 396.97 us (95.1%)
LB move op cnt : 0
LB apply : 3.84 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.23 us (74.0%)
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.8057e+05 | 262144 | 1 | 3.358e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.17858675632831 (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 : 6.38 us (1.6%)
patch tree reduce : 1.51 us (0.4%)
gen split merge : 1.00 us (0.3%)
split / merge op : 0/0
apply split merge : 892.00 ns (0.2%)
LB compute : 372.50 us (94.6%)
LB move op cnt : 0
LB apply : 4.18 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.60 us (68.2%)
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.8482e+05 | 262144 | 1 | 3.340e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.272172653329527 (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.35 us (2.2%)
patch tree reduce : 1.84 us (0.5%)
gen split merge : 822.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.01 us (0.3%)
LB compute : 317.95 us (93.3%)
LB move op cnt : 0
LB apply : 3.93 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.47 us (74.1%)
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 | 7.7732e+05 | 262144 | 1 | 3.372e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.107014265157872 (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 : 6.07 us (1.5%)
patch tree reduce : 1.55 us (0.4%)
gen split merge : 832.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.00 us (0.2%)
LB compute : 397.04 us (95.2%)
LB move op cnt : 0
LB apply : 4.07 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.14 us (75.3%)
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 | 7.7822e+05 | 262144 | 1 | 3.368e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.126863032787636 (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 : 6.55 us (1.8%)
patch tree reduce : 1.53 us (0.4%)
gen split merge : 821.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.3%)
LB compute : 349.91 us (94.7%)
LB move op cnt : 0
LB apply : 3.78 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.36 us (70.7%)
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 | 7.7938e+05 | 262144 | 1 | 3.363e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9.929999376866492 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 160.74272926 (s) [Godunov][rank=0]
Info: dump to _to_trash/ramses_kh/periodic_0006.vtk [VTK Dump][rank=0]
- took 31.86 ms, bandwidth = 1.28 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 : 6.62 us (1.8%)
patch tree reduce : 1.42 us (0.4%)
gen split merge : 831.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.3%)
LB compute : 355.36 us (94.6%)
LB move op cnt : 0
LB apply : 3.74 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.55 us (70.2%)
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 | 7.6882e+05 | 262144 | 1 | 3.410e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.9198579874821 (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.53 us (1.8%)
patch tree reduce : 1.65 us (0.5%)
gen split merge : 872.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.04 us (0.3%)
LB compute : 339.69 us (94.3%)
LB move op cnt : 0
LB apply : 3.76 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.43 us (70.4%)
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 | 7.7947e+05 | 262144 | 1 | 3.363e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.154086050186777 (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 : 5.88 us (1.5%)
patch tree reduce : 1.76 us (0.5%)
gen split merge : 851.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.03 us (0.3%)
LB compute : 358.80 us (94.5%)
LB move op cnt : 0
LB apply : 4.43 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.81 us (73.1%)
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 | 7.0907e+05 | 262144 | 1 | 3.697e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.604799053153958 (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 : 5.88 us (1.6%)
patch tree reduce : 1.65 us (0.4%)
gen split merge : 811.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.01 us (0.3%)
LB compute : 347.55 us (94.6%)
LB move op cnt : 0
LB apply : 4.07 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.21 us (74.1%)
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 | 7.7668e+05 | 262144 | 1 | 3.375e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.092563683868367 (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.06 us (1.5%)
patch tree reduce : 1.44 us (0.4%)
gen split merge : 822.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.21 us (0.3%)
LB compute : 388.33 us (95.0%)
LB move op cnt : 0
LB apply : 4.28 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.91 us (74.7%)
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 | 7.8322e+05 | 262144 | 1 | 3.347e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.236581782540064 (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.14 us (1.6%)
patch tree reduce : 1.55 us (0.4%)
gen split merge : 871.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.28 us (0.3%)
LB compute : 361.68 us (94.7%)
LB move op cnt : 0
LB apply : 4.17 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.86 us (73.3%)
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 | 7.8362e+05 | 262144 | 1 | 3.345e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.245228505999872 (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 : 6.43 us (1.7%)
patch tree reduce : 1.61 us (0.4%)
gen split merge : 922.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.28 us (0.3%)
LB compute : 349.95 us (94.5%)
LB move op cnt : 0
LB apply : 4.21 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.19 us (73.4%)
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 | 7.8512e+05 | 262144 | 1 | 3.339e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.27816476199001 (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.33 us (1.6%)
patch tree reduce : 1.31 us (0.3%)
gen split merge : 1.24 us (0.3%)
split / merge op : 0/0
apply split merge : 1.24 us (0.3%)
LB compute : 364.68 us (94.5%)
LB move op cnt : 0
LB apply : 4.39 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.74 us (73.2%)
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 | 7.6704e+05 | 262144 | 1 | 3.418e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.880287686781376 (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 : 6.07 us (1.6%)
patch tree reduce : 1.48 us (0.4%)
gen split merge : 811.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.3%)
LB compute : 350.58 us (94.6%)
LB move op cnt : 0
LB apply : 4.27 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.87 us (73.1%)
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 | 6.5907e+05 | 262144 | 1 | 3.977e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.504223892824994 (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 : 5.77 us (1.5%)
patch tree reduce : 1.63 us (0.4%)
gen split merge : 831.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.3%)
LB compute : 370.45 us (94.8%)
LB move op cnt : 0
LB apply : 4.43 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.47 us (70.3%)
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 | 7.7236e+05 | 262144 | 1 | 3.394e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.997405462622346 (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.00 us (1.7%)
patch tree reduce : 1.53 us (0.4%)
gen split merge : 971.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 951.00 ns (0.3%)
LB compute : 336.83 us (94.4%)
LB move op cnt : 0
LB apply : 4.08 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.02 us (71.3%)
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 | 7.8165e+05 | 262144 | 1 | 3.354e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.201787153741552 (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 : 6.73 us (1.8%)
patch tree reduce : 1.47 us (0.4%)
gen split merge : 831.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 882.00 ns (0.2%)
LB compute : 351.48 us (94.6%)
LB move op cnt : 0
LB apply : 3.93 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.60 us (71.9%)
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 | 7.2943e+05 | 262144 | 1 | 3.594e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.05261965585756 (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.05 us (1.6%)
patch tree reduce : 1.64 us (0.4%)
gen split merge : 491.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 802.00 ns (0.2%)
LB compute : 358.47 us (94.8%)
LB move op cnt : 0
LB apply : 3.79 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.20 us (74.2%)
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 | 7.5745e+05 | 262144 | 1 | 3.461e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.66944731269894 (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.03 us (1.6%)
patch tree reduce : 1.84 us (0.5%)
gen split merge : 812.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 951.00 ns (0.3%)
LB compute : 347.98 us (94.4%)
LB move op cnt : 0
LB apply : 4.45 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.66 us (70.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 | 7.9088e+05 | 262144 | 1 | 3.315e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.40517432410518 (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.62 us (1.8%)
patch tree reduce : 1.50 us (0.4%)
gen split merge : 831.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.30 us (0.4%)
LB compute : 344.58 us (94.4%)
LB move op cnt : 0
LB apply : 3.70 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.64 us (72.9%)
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 | 7.7777e+05 | 262144 | 1 | 3.370e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.116690761421296 (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 : 6.22 us (1.8%)
patch tree reduce : 1.60 us (0.5%)
gen split merge : 962.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.09 us (0.3%)
LB compute : 331.14 us (94.2%)
LB move op cnt : 0
LB apply : 3.87 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.46 us (75.2%)
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 | 7.3878e+05 | 262144 | 1 | 3.548e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.258810899211483 (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.11 us (1.7%)
patch tree reduce : 1.68 us (0.5%)
gen split merge : 801.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 892.00 ns (0.2%)
LB compute : 342.26 us (94.5%)
LB move op cnt : 0
LB apply : 3.98 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.91 us (72.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 | 7.3837e+05 | 262144 | 1 | 3.550e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.249899777692843 (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.03 us (1.6%)
patch tree reduce : 1.51 us (0.4%)
gen split merge : 821.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.3%)
LB compute : 349.42 us (94.7%)
LB move op cnt : 0
LB apply : 3.89 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.98 us (67.1%)
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 | 7.8092e+05 | 262144 | 1 | 3.357e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.186455655407432 (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 : 6.36 us (1.8%)
patch tree reduce : 1.53 us (0.4%)
gen split merge : 1.12 us (0.3%)
split / merge op : 0/0
apply split merge : 902.00 ns (0.2%)
LB compute : 340.54 us (94.2%)
LB move op cnt : 0
LB apply : 4.33 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.42 us (68.9%)
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 | 7.8760e+05 | 262144 | 1 | 3.328e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.333429055996735 (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 : 6.42 us (1.7%)
patch tree reduce : 1.43 us (0.4%)
gen split merge : 1.04 us (0.3%)
split / merge op : 0/0
apply split merge : 882.00 ns (0.2%)
LB compute : 349.27 us (94.6%)
LB move op cnt : 0
LB apply : 3.69 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.27 us (69.2%)
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 | 7.7650e+05 | 262144 | 1 | 3.376e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.089366989605566 (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 : 6.51 us (1.6%)
patch tree reduce : 1.71 us (0.4%)
gen split merge : 842.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.14 us (0.3%)
LB compute : 384.19 us (94.9%)
LB move op cnt : 0
LB apply : 3.83 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.79 us (72.0%)
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.3946e+05 | 262144 | 1 | 3.545e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.274344166408667 (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 : 6.58 us (1.7%)
patch tree reduce : 1.48 us (0.4%)
gen split merge : 822.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 872.00 ns (0.2%)
LB compute : 368.11 us (94.8%)
LB move op cnt : 0
LB apply : 3.82 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.98 us (72.3%)
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 | 7.8018e+05 | 262144 | 1 | 3.360e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.170868874171212 (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.14 us (1.6%)
patch tree reduce : 1.37 us (0.4%)
gen split merge : 972.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.34 us (0.3%)
LB compute : 366.95 us (94.7%)
LB move op cnt : 0
LB apply : 3.89 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.50 us (66.8%)
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.6557e+05 | 262144 | 1 | 3.424e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.84952953814767 (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.30 us (1.6%)
patch tree reduce : 1.85 us (0.5%)
gen split merge : 821.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.2%)
LB compute : 364.27 us (94.5%)
LB move op cnt : 0
LB apply : 3.82 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.92 us (73.1%)
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.7651e+05 | 262144 | 1 | 3.376e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.09059621366658 (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.35 us (1.6%)
patch tree reduce : 1.53 us (0.4%)
gen split merge : 952.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.20 us (0.3%)
LB compute : 369.49 us (94.8%)
LB move op cnt : 0
LB apply : 3.63 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.40 us (69.7%)
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.8429e+05 | 262144 | 1 | 3.342e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.262031531993273 (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 : 6.44 us (1.9%)
patch tree reduce : 1.70 us (0.5%)
gen split merge : 852.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.18 us (0.3%)
LB compute : 325.42 us (94.0%)
LB move op cnt : 0
LB apply : 4.13 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.95 us (69.2%)
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.7048e+05 | 262144 | 1 | 3.402e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.958306547960554 (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.47 us (1.9%)
patch tree reduce : 1.46 us (0.4%)
gen split merge : 842.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 872.00 ns (0.3%)
LB compute : 326.79 us (94.3%)
LB move op cnt : 0
LB apply : 4.03 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.64 us (71.7%)
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 | 6.3499e+05 | 262144 | 1 | 4.128e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.976510864185423 (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 : 6.32 us (1.7%)
patch tree reduce : 1.45 us (0.4%)
gen split merge : 832.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.23 us (0.3%)
LB compute : 360.63 us (94.6%)
LB move op cnt : 0
LB apply : 3.98 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.33 us (68.0%)
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.0387e+05 | 262144 | 1 | 3.724e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.492879967073824 (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 : 6.50 us (1.7%)
patch tree reduce : 1.43 us (0.4%)
gen split merge : 811.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.3%)
LB compute : 361.81 us (94.9%)
LB move op cnt : 0
LB apply : 3.81 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.47 us (70.7%)
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 | 7.7734e+05 | 262144 | 1 | 3.372e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.11027482941656 (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.53 us (1.8%)
patch tree reduce : 1.79 us (0.5%)
gen split merge : 862.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 881.00 ns (0.2%)
LB compute : 340.31 us (94.1%)
LB move op cnt : 0
LB apply : 4.04 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.08 us (72.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.7999e+05 | 262144 | 1 | 3.361e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.168744525016525 (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.92 us (1.9%)
patch tree reduce : 1.32 us (0.4%)
gen split merge : 821.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.53 us (0.4%)
LB compute : 336.51 us (94.2%)
LB move op cnt : 0
LB apply : 3.83 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.52 us (70.8%)
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 | 7.8699e+05 | 262144 | 1 | 3.331e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.323285956288867 (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 : 6.54 us (1.9%)
patch tree reduce : 1.44 us (0.4%)
gen split merge : 812.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 881.00 ns (0.3%)
LB compute : 318.74 us (94.0%)
LB move op cnt : 0
LB apply : 4.26 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.32 us (68.2%)
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.8402e+05 | 262144 | 1 | 3.344e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.258137669937206 (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 : 7.42 us (2.1%)
patch tree reduce : 1.58 us (0.5%)
gen split merge : 832.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.02 us (0.3%)
LB compute : 325.90 us (93.9%)
LB move op cnt : 0
LB apply : 4.14 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.66 us (72.6%)
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.3904e+05 | 262144 | 1 | 3.547e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.26824899298153 (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.28 us (1.8%)
patch tree reduce : 1.56 us (0.5%)
gen split merge : 852.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.05 us (0.3%)
LB compute : 323.11 us (94.2%)
LB move op cnt : 0
LB apply : 3.85 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.35 us (68.2%)
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 | 7.5678e+05 | 262144 | 1 | 3.464e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.65907656570578 (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 : 5.96 us (1.7%)
patch tree reduce : 1.29 us (0.4%)
gen split merge : 1.10 us (0.3%)
split / merge op : 0/0
apply split merge : 1.09 us (0.3%)
LB compute : 337.00 us (94.3%)
LB move op cnt : 0
LB apply : 4.09 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.81 us (72.9%)
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 | 6.9640e+05 | 262144 | 1 | 3.764e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.33009193941531 (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 : 6.33 us (1.9%)
patch tree reduce : 1.59 us (0.5%)
gen split merge : 842.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 861.00 ns (0.3%)
LB compute : 313.74 us (94.0%)
LB move op cnt : 0
LB apply : 4.10 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.06 us (71.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 | 7.1718e+05 | 262144 | 1 | 3.655e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.787727627219423 (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.51 us (2.0%)
patch tree reduce : 1.37 us (0.4%)
gen split merge : 901.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 942.00 ns (0.3%)
LB compute : 308.61 us (93.7%)
LB move op cnt : 0
LB apply : 4.02 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.40 us (68.7%)
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 | 7.6425e+05 | 262144 | 1 | 3.430e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.82407532070826 (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.24 us (1.7%)
patch tree reduce : 1.29 us (0.3%)
gen split merge : 491.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 812.00 ns (0.2%)
LB compute : 335.49 us (89.6%)
LB move op cnt : 0
LB apply : 4.01 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.02 us (72.7%)
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 | 7.3368e+05 | 262144 | 1 | 3.573e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.151309517498692 (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.31 us (1.7%)
patch tree reduce : 1.45 us (0.4%)
gen split merge : 902.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.01 us (0.3%)
LB compute : 348.29 us (94.4%)
LB move op cnt : 0
LB apply : 4.39 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.72 us (70.0%)
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 | 7.9464e+05 | 262144 | 1 | 3.299e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.493713695854563 (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 : 6.52 us (1.9%)
patch tree reduce : 1.54 us (0.5%)
gen split merge : 841.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.24 us (0.4%)
LB compute : 314.98 us (93.8%)
LB move op cnt : 0
LB apply : 4.14 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.73 us (70.2%)
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 | 7.8087e+05 | 262144 | 1 | 3.357e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.190722958393376 (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.26 us (1.8%)
patch tree reduce : 1.56 us (0.4%)
gen split merge : 962.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.00 us (0.3%)
LB compute : 327.56 us (94.2%)
LB move op cnt : 0
LB apply : 3.74 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.23 us (73.2%)
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.7992e+05 | 262144 | 1 | 3.361e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.169900595149105 (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 : 5.95 us (1.5%)
patch tree reduce : 1.70 us (0.4%)
gen split merge : 821.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 852.00 ns (0.2%)
LB compute : 388.63 us (95.1%)
LB move op cnt : 0
LB apply : 3.81 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.86 us (73.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 | 7.8434e+05 | 262144 | 1 | 3.342e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.26739785590285 (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 : 5.97 us (1.7%)
patch tree reduce : 1.44 us (0.4%)
gen split merge : 861.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.07 us (0.3%)
LB compute : 327.66 us (94.1%)
LB move op cnt : 0
LB apply : 4.36 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.66 us (73.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 | 7.1191e+05 | 262144 | 1 | 3.682e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.673029201894803 (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 : 6.82 us (2.0%)
patch tree reduce : 1.53 us (0.4%)
gen split merge : 912.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.07 us (0.3%)
LB compute : 324.42 us (94.1%)
LB move op cnt : 0
LB apply : 3.63 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.66 us (70.3%)
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 | 7.6473e+05 | 262144 | 1 | 3.428e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.836171198969186 (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 : 6.73 us (2.0%)
patch tree reduce : 1.67 us (0.5%)
gen split merge : 822.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 892.00 ns (0.3%)
LB compute : 308.93 us (93.7%)
LB move op cnt : 0
LB apply : 3.82 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.35 us (68.5%)
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 | 7.8034e+05 | 262144 | 1 | 3.359e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.179903836546675 (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 : 5.92 us (1.6%)
patch tree reduce : 1.49 us (0.4%)
gen split merge : 821.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.3%)
LB compute : 360.67 us (94.9%)
LB move op cnt : 0
LB apply : 3.89 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.77 us (69.2%)
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 | 7.0609e+05 | 262144 | 1 | 3.713e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.54536133701446 (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.21 us (2.0%)
patch tree reduce : 1.65 us (0.4%)
gen split merge : 942.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 932.00 ns (0.3%)
LB compute : 346.22 us (94.1%)
LB move op cnt : 0
LB apply : 4.22 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.67 us (70.7%)
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 | 7.4616e+05 | 262144 | 1 | 3.513e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.427545945395774 (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 : 6.32 us (1.5%)
patch tree reduce : 1.62 us (0.4%)
gen split merge : 832.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 871.00 ns (0.2%)
LB compute : 414.74 us (95.3%)
LB move op cnt : 0
LB apply : 4.41 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.09 us (73.9%)
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 | 7.7617e+05 | 262144 | 1 | 3.377e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.08842938001109 (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 : 6.97 us (1.7%)
patch tree reduce : 1.39 us (0.3%)
gen split merge : 1.18 us (0.3%)
split / merge op : 0/0
apply split merge : 952.00 ns (0.2%)
LB compute : 382.21 us (94.7%)
LB move op cnt : 0
LB apply : 4.15 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.00 us (73.5%)
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 | 7.5608e+05 | 262144 | 1 | 3.467e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.646231317833095 (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 : 5.68 us (1.5%)
patch tree reduce : 1.75 us (0.4%)
gen split merge : 832.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.3%)
LB compute : 370.62 us (94.9%)
LB move op cnt : 0
LB apply : 3.98 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.54 us (72.1%)
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 | 7.7546e+05 | 262144 | 1 | 3.381e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.072908116348444 (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.1%)
patch tree reduce : 1.46 us (0.4%)
gen split merge : 812.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 892.00 ns (0.3%)
LB compute : 314.70 us (94.0%)
LB move op cnt : 0
LB apply : 3.98 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.40 us (68.7%)
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.2987e+05 | 262144 | 1 | 3.592e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.069199402704164 (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 : 6.04 us (1.8%)
patch tree reduce : 1.45 us (0.4%)
gen split merge : 942.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.3%)
LB compute : 318.59 us (94.2%)
LB move op cnt : 0
LB apply : 3.73 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.73 us (68.3%)
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.6719e+05 | 262144 | 1 | 3.417e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.89106260125807 (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.16 us (1.5%)
patch tree reduce : 1.49 us (0.4%)
gen split merge : 922.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 942.00 ns (0.2%)
LB compute : 396.54 us (95.2%)
LB move op cnt : 0
LB apply : 4.24 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.04 us (74.3%)
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.7485e+05 | 262144 | 1 | 3.383e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.05964854766041 (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 : 6.12 us (1.8%)
patch tree reduce : 1.43 us (0.4%)
gen split merge : 1.07 us (0.3%)
split / merge op : 0/0
apply split merge : 1.08 us (0.3%)
LB compute : 327.77 us (94.2%)
LB move op cnt : 0
LB apply : 3.97 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.65 us (71.0%)
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.8213e+05 | 262144 | 1 | 3.352e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.22003914831135 (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.13 us (1.7%)
patch tree reduce : 1.65 us (0.4%)
gen split merge : 981.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 882.00 ns (0.2%)
LB compute : 388.99 us (94.7%)
LB move op cnt : 0
LB apply : 4.23 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.30 us (73.4%)
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.2564e+05 | 262144 | 1 | 3.613e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.976273142157513 (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.22 us (1.7%)
patch tree reduce : 1.77 us (0.5%)
gen split merge : 812.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 882.00 ns (0.2%)
LB compute : 342.13 us (94.4%)
LB move op cnt : 0
LB apply : 3.87 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.10 us (66.5%)
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 | 7.4010e+05 | 262144 | 1 | 3.542e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.294736319322197 (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 : 6.15 us (1.7%)
patch tree reduce : 1.42 us (0.4%)
gen split merge : 912.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.3%)
LB compute : 349.52 us (94.6%)
LB move op cnt : 0
LB apply : 4.29 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.79 us (71.1%)
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 | 7.7498e+05 | 262144 | 1 | 3.383e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.062707775310848 (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 : 6.42 us (1.8%)
patch tree reduce : 1.49 us (0.4%)
gen split merge : 1.31 us (0.4%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.3%)
LB compute : 339.85 us (94.3%)
LB move op cnt : 0
LB apply : 3.83 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.08 us (67.3%)
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 | 7.8871e+05 | 262144 | 1 | 3.324e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.365046859091194 (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 : 6.48 us (2.0%)
patch tree reduce : 1.74 us (0.5%)
gen split merge : 822.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.3%)
LB compute : 311.76 us (93.9%)
LB move op cnt : 0
LB apply : 3.61 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.82 us (72.1%)
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 | 7.8043e+05 | 262144 | 1 | 3.359e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.18286387234803 (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 : 5.54 us (1.6%)
patch tree reduce : 1.36 us (0.4%)
gen split merge : 582.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 802.00 ns (0.2%)
LB compute : 332.88 us (94.7%)
LB move op cnt : 0
LB apply : 3.78 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.80 us (73.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 | 7.5039e+05 | 262144 | 1 | 3.493e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.521488236733987 (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.08 us (1.6%)
patch tree reduce : 1.58 us (0.4%)
gen split merge : 832.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.14 us (0.3%)
LB compute : 365.24 us (94.9%)
LB move op cnt : 0
LB apply : 3.94 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.56 us (72.1%)
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.3598e+05 | 262144 | 1 | 3.562e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.204252209712937 (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.07 us (1.8%)
patch tree reduce : 1.79 us (0.5%)
gen split merge : 822.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.00 us (0.3%)
LB compute : 316.04 us (94.0%)
LB move op cnt : 0
LB apply : 3.85 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.50 us (68.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 | 7.8046e+05 | 262144 | 1 | 3.359e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.18346268026468 (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 : 5.91 us (1.6%)
patch tree reduce : 1.63 us (0.4%)
gen split merge : 932.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.3%)
LB compute : 357.73 us (94.7%)
LB move op cnt : 0
LB apply : 3.75 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.38 us (69.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.3465e+05 | 262144 | 1 | 3.568e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.174862623070837 (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.29 us (1.7%)
patch tree reduce : 1.63 us (0.4%)
gen split merge : 832.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.03 us (0.3%)
LB compute : 359.28 us (94.3%)
LB move op cnt : 0
LB apply : 4.58 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.38 us (74.9%)
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 | 7.3825e+05 | 262144 | 1 | 3.551e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.25418887805069 (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.71 us (1.9%)
patch tree reduce : 1.43 us (0.4%)
gen split merge : 1.09 us (0.3%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.3%)
LB compute : 328.07 us (93.9%)
LB move op cnt : 0
LB apply : 3.71 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.41 us (71.9%)
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 | 7.5834e+05 | 262144 | 1 | 3.457e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.69646115427129 (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.73 us (1.9%)
patch tree reduce : 1.51 us (0.4%)
gen split merge : 931.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 932.00 ns (0.3%)
LB compute : 332.24 us (94.2%)
LB move op cnt : 0
LB apply : 3.62 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.65 us (69.3%)
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.7289e+05 | 262144 | 1 | 3.392e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.016647863288238 (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.19 us (1.6%)
patch tree reduce : 1.42 us (0.4%)
gen split merge : 822.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.14 us (0.3%)
LB compute : 375.34 us (94.9%)
LB move op cnt : 0
LB apply : 4.04 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.88 us (74.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 | 7.7229e+05 | 262144 | 1 | 3.394e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.00341023580547 (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 : 6.18 us (1.6%)
patch tree reduce : 1.54 us (0.4%)
gen split merge : 851.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 882.00 ns (0.2%)
LB compute : 367.93 us (94.6%)
LB move op cnt : 0
LB apply : 4.59 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.34 us (70.7%)
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 | 7.7686e+05 | 262144 | 1 | 3.374e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.104026205350504 (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 : 5.97 us (1.5%)
patch tree reduce : 1.53 us (0.4%)
gen split merge : 832.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.13 us (0.3%)
LB compute : 370.78 us (94.9%)
LB move op cnt : 0
LB apply : 3.79 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.65 us (69.3%)
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 | 7.3674e+05 | 262144 | 1 | 3.558e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.220659061706765 (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 : 6.13 us (1.8%)
patch tree reduce : 1.68 us (0.5%)
gen split merge : 862.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.12 us (0.3%)
LB compute : 313.44 us (93.7%)
LB move op cnt : 0
LB apply : 4.49 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.52 us (71.6%)
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.5100e+05 | 262144 | 1 | 3.491e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.534585357214386 (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.83 us (1.8%)
patch tree reduce : 1.43 us (0.4%)
gen split merge : 861.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.3%)
LB compute : 357.78 us (94.4%)
LB move op cnt : 0
LB apply : 4.67 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.12 us (73.5%)
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 | 6.7380e+05 | 262144 | 1 | 3.891e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.835007994545563 (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.13 us (2.1%)
patch tree reduce : 1.55 us (0.5%)
gen split merge : 862.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.08 us (0.3%)
LB compute : 313.60 us (93.6%)
LB move op cnt : 0
LB apply : 3.92 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.62 us (71.4%)
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 | 7.7463e+05 | 262144 | 1 | 3.384e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.054840886832153 (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.46 us (1.6%)
patch tree reduce : 1.42 us (0.3%)
gen split merge : 832.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.23 us (0.3%)
LB compute : 387.70 us (95.0%)
LB move op cnt : 0
LB apply : 3.98 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.77 us (73.6%)
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 | 7.3610e+05 | 262144 | 1 | 3.561e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.2065492643828 (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.19 us (1.8%)
patch tree reduce : 1.67 us (0.5%)
gen split merge : 821.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.16 us (0.3%)
LB compute : 322.80 us (94.0%)
LB move op cnt : 0
LB apply : 4.32 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.48 us (70.2%)
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 | 7.6544e+05 | 262144 | 1 | 3.425e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.852533032395296 (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 : 5.95 us (1.7%)
patch tree reduce : 1.48 us (0.4%)
gen split merge : 842.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.09 us (0.3%)
LB compute : 339.53 us (94.6%)
LB move op cnt : 0
LB apply : 3.66 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.08 us (66.5%)
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 | 7.1224e+05 | 262144 | 1 | 3.681e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.681071578241365 (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.73 us (1.9%)
patch tree reduce : 1.76 us (0.5%)
gen split merge : 972.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.3%)
LB compute : 325.71 us (93.8%)
LB move op cnt : 0
LB apply : 3.97 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.77 us (69.3%)
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 | 7.6931e+05 | 262144 | 1 | 3.408e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.937438573097143 (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 : 6.85 us (1.8%)
patch tree reduce : 2.02 us (0.5%)
gen split merge : 1.11 us (0.3%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.3%)
LB compute : 325.07 us (86.8%)
LB move op cnt : 0
LB apply : 31.23 us (8.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.26 us (74.2%)
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.6585e+05 | 262144 | 1 | 3.423e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.861329600029553 (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 : 6.77 us (1.9%)
patch tree reduce : 1.41 us (0.4%)
gen split merge : 1.19 us (0.3%)
split / merge op : 0/0
apply split merge : 901.00 ns (0.3%)
LB compute : 330.27 us (94.2%)
LB move op cnt : 0
LB apply : 3.55 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.98 us (71.6%)
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.8256e+05 | 262144 | 1 | 3.350e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.228972335682027 (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 : 5.78 us (1.7%)
patch tree reduce : 1.47 us (0.4%)
gen split merge : 922.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 902.00 ns (0.3%)
LB compute : 327.79 us (94.3%)
LB move op cnt : 0
LB apply : 4.07 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.29 us (71.9%)
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.3469e+05 | 262144 | 1 | 3.568e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.175123757169793 (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.21 us (1.6%)
patch tree reduce : 1.49 us (0.4%)
gen split merge : 841.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 902.00 ns (0.2%)
LB compute : 378.27 us (95.1%)
LB move op cnt : 0
LB apply : 4.10 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.94 us (75.0%)
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.3307e+05 | 262144 | 1 | 3.576e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.1393005486855 (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 : 6.34 us (1.7%)
patch tree reduce : 1.62 us (0.4%)
gen split merge : 1.05 us (0.3%)
split / merge op : 0/0
apply split merge : 892.00 ns (0.2%)
LB compute : 336.86 us (88.4%)
LB move op cnt : 0
LB apply : 26.78 us (7.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.34 us (75.8%)
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 | 7.7289e+05 | 262144 | 1 | 3.392e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.01577010899946 (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.57 us (1.9%)
patch tree reduce : 1.78 us (0.5%)
gen split merge : 821.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 981.00 ns (0.3%)
LB compute : 319.46 us (94.0%)
LB move op cnt : 0
LB apply : 3.99 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.59 us (67.9%)
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 | 7.7247e+05 | 262144 | 1 | 3.394e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.00657390651174 (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 : 6.55 us (1.5%)
patch tree reduce : 2.05 us (0.5%)
gen split merge : 1.10 us (0.3%)
split / merge op : 0/0
apply split merge : 991.00 ns (0.2%)
LB compute : 411.22 us (94.9%)
LB move op cnt : 0
LB apply : 4.50 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.96 us (75.2%)
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.7738e+05 | 262144 | 1 | 3.372e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9.073667585673624 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 190.077358956 (s) [Godunov][rank=0]
Info: dump to _to_trash/ramses_kh/periodic_0007.vtk [VTK Dump][rank=0]
- took 31.69 ms, bandwidth = 1.29 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 : 6.73 us (1.8%)
patch tree reduce : 1.42 us (0.4%)
gen split merge : 932.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 891.00 ns (0.2%)
LB compute : 354.40 us (94.7%)
LB move op cnt : 0
LB apply : 3.77 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.12 us (67.1%)
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.2358e+05 | 262144 | 1 | 3.623e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.929889599425087 (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.05 us (1.6%)
patch tree reduce : 1.33 us (0.4%)
gen split merge : 922.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.08 us (0.3%)
LB compute : 352.85 us (94.6%)
LB move op cnt : 0
LB apply : 4.23 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.81 us (72.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 | 7.3630e+05 | 262144 | 1 | 3.560e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.20980642423807 (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.25 us (1.7%)
patch tree reduce : 1.39 us (0.4%)
gen split merge : 921.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.12 us (0.3%)
LB compute : 345.86 us (94.5%)
LB move op cnt : 0
LB apply : 4.18 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.31 us (66.7%)
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 | 7.8091e+05 | 262144 | 1 | 3.357e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.19177425868705 (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.45 us (1.9%)
patch tree reduce : 1.33 us (0.4%)
gen split merge : 821.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.34 us (0.4%)
LB compute : 324.06 us (94.1%)
LB move op cnt : 0
LB apply : 4.42 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.56 us (70.1%)
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 | 7.6606e+05 | 262144 | 1 | 3.422e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.864661431827745 (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 : 7.28 us (1.5%)
patch tree reduce : 1.44 us (0.3%)
gen split merge : 902.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.02 us (0.2%)
LB compute : 458.66 us (95.4%)
LB move op cnt : 0
LB apply : 4.26 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.94 us (71.3%)
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 | 7.2191e+05 | 262144 | 1 | 3.631e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.892556797785316 (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 : 6.21 us (1.5%)
patch tree reduce : 1.65 us (0.4%)
gen split merge : 912.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.13 us (0.3%)
LB compute : 398.16 us (95.1%)
LB move op cnt : 0
LB apply : 3.77 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.62 us (71.6%)
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 | 7.7292e+05 | 262144 | 1 | 3.392e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.01549826713792 (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 : 6.28 us (1.7%)
patch tree reduce : 1.43 us (0.4%)
gen split merge : 942.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.00 us (0.3%)
LB compute : 341.04 us (94.3%)
LB move op cnt : 0
LB apply : 4.40 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.55 us (69.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 | 7.8147e+05 | 262144 | 1 | 3.355e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.203463830474053 (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 : 6.15 us (1.8%)
patch tree reduce : 1.29 us (0.4%)
gen split merge : 1.07 us (0.3%)
split / merge op : 0/0
apply split merge : 1.07 us (0.3%)
LB compute : 321.49 us (94.1%)
LB move op cnt : 0
LB apply : 3.75 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.75 us (70.1%)
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 | 7.7630e+05 | 262144 | 1 | 3.377e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.08948690908656 (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.47 us (1.8%)
patch tree reduce : 1.63 us (0.4%)
gen split merge : 821.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.13 us (0.3%)
LB compute : 326.83 us (88.7%)
LB move op cnt : 0
LB apply : 24.96 us (6.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.83 us (70.5%)
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 | 7.6741e+05 | 262144 | 1 | 3.416e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.89366182869427 (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.60 us (1.8%)
patch tree reduce : 1.58 us (0.4%)
gen split merge : 822.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 932.00 ns (0.3%)
LB compute : 348.97 us (94.6%)
LB move op cnt : 0
LB apply : 3.84 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.86 us (69.9%)
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 | 7.7085e+05 | 262144 | 1 | 3.401e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.969292257663067 (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.39 us (1.6%)
patch tree reduce : 1.36 us (0.3%)
gen split merge : 852.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.06 us (0.3%)
LB compute : 377.35 us (94.9%)
LB move op cnt : 0
LB apply : 3.99 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.51 us (70.0%)
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 | 7.8386e+05 | 262144 | 1 | 3.344e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.255366958577415 (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.18 us (1.5%)
patch tree reduce : 1.40 us (0.3%)
gen split merge : 972.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.04 us (0.2%)
LB compute : 399.24 us (95.2%)
LB move op cnt : 0
LB apply : 4.19 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.11 us (74.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.1913e+05 | 262144 | 1 | 3.645e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.830178834484874 (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.17 us (1.4%)
patch tree reduce : 1.29 us (0.3%)
gen split merge : 1.14 us (0.3%)
split / merge op : 0/0
apply split merge : 1.08 us (0.3%)
LB compute : 408.84 us (95.2%)
LB move op cnt : 0
LB apply : 4.50 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.56 us (69.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 | 7.7714e+05 | 262144 | 1 | 3.373e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.107018684482814 (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 : 6.74 us (1.8%)
patch tree reduce : 1.28 us (0.3%)
gen split merge : 821.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.28 us (0.3%)
LB compute : 357.95 us (94.5%)
LB move op cnt : 0
LB apply : 4.11 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.35 us (68.0%)
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 | 7.7706e+05 | 262144 | 1 | 3.374e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.10483077199271 (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.85 us (1.7%)
patch tree reduce : 1.39 us (0.3%)
gen split merge : 1.05 us (0.3%)
split / merge op : 0/0
apply split merge : 1.08 us (0.3%)
LB compute : 379.68 us (94.7%)
LB move op cnt : 0
LB apply : 4.03 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.36 us (75.8%)
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 | 6.9288e+05 | 262144 | 1 | 3.783e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.251640327003129 (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.79 us (1.6%)
patch tree reduce : 1.32 us (0.3%)
gen split merge : 1.05 us (0.2%)
split / merge op : 0/0
apply split merge : 1.34 us (0.3%)
LB compute : 402.04 us (95.0%)
LB move op cnt : 0
LB apply : 4.29 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.03 us (72.6%)
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 | 7.8045e+05 | 262144 | 1 | 3.359e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.179045936892486 (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 : 5.93 us (1.5%)
patch tree reduce : 1.69 us (0.4%)
gen split merge : 922.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.00 us (0.2%)
LB compute : 380.93 us (94.9%)
LB move op cnt : 0
LB apply : 4.02 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.89 us (72.0%)
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 | 7.8203e+05 | 262144 | 1 | 3.352e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.213541333979364 (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.26 us (1.8%)
patch tree reduce : 1.30 us (0.4%)
gen split merge : 831.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.09 us (0.3%)
LB compute : 321.32 us (94.2%)
LB move op cnt : 0
LB apply : 4.06 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.55 us (70.2%)
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 | 7.8182e+05 | 262144 | 1 | 3.353e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.208427258862727 (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.86 us (1.9%)
patch tree reduce : 1.53 us (0.4%)
gen split merge : 871.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.32 us (0.4%)
LB compute : 346.36 us (94.3%)
LB move op cnt : 0
LB apply : 4.06 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.02 us (67.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 | 6.8130e+05 | 262144 | 1 | 3.848e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.995719120824477 (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.41 us (1.8%)
patch tree reduce : 1.69 us (0.5%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.09 us (0.3%)
LB compute : 333.82 us (94.2%)
LB move op cnt : 0
LB apply : 3.55 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.23 us (68.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.7808e+05 | 262144 | 1 | 3.369e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.125666744054204 (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.23 us (1.7%)
patch tree reduce : 1.69 us (0.5%)
gen split merge : 932.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.01 us (0.3%)
LB compute : 348.79 us (94.6%)
LB move op cnt : 0
LB apply : 3.56 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.00 us (71.0%)
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.7749e+05 | 262144 | 1 | 3.372e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.11231206444216 (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.89 us (1.9%)
patch tree reduce : 1.60 us (0.4%)
gen split merge : 821.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 882.00 ns (0.2%)
LB compute : 351.94 us (94.6%)
LB move op cnt : 0
LB apply : 3.92 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.44 us (69.1%)
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 | 7.7911e+05 | 262144 | 1 | 3.365e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.14784412587578 (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 : 15.75 us (3.8%)
patch tree reduce : 1.32 us (0.3%)
gen split merge : 1.16 us (0.3%)
split / merge op : 0/0
apply split merge : 1.00 us (0.2%)
LB compute : 384.12 us (92.5%)
LB move op cnt : 0
LB apply : 4.79 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.92 us (70.7%)
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 | 7.7036e+05 | 262144 | 1 | 3.403e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.955004827629974 (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.44 us (1.8%)
patch tree reduce : 1.48 us (0.4%)
gen split merge : 971.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.01 us (0.3%)
LB compute : 347.11 us (94.5%)
LB move op cnt : 0
LB apply : 4.10 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.22 us (70.4%)
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 | 7.6765e+05 | 262144 | 1 | 3.415e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.895123086519398 (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.58 us (1.7%)
patch tree reduce : 1.41 us (0.4%)
gen split merge : 822.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.01 us (0.3%)
LB compute : 364.94 us (94.8%)
LB move op cnt : 0
LB apply : 3.80 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.83 us (72.7%)
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 | 7.8013e+05 | 262144 | 1 | 3.360e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.169438890637608 (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 : 6.55 us (1.7%)
patch tree reduce : 1.48 us (0.4%)
gen split merge : 921.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.34 us (0.3%)
LB compute : 368.42 us (94.4%)
LB move op cnt : 0
LB apply : 4.41 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.01 us (71.9%)
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 | 7.8618e+05 | 262144 | 1 | 3.334e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.302393385843285 (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.30 us (1.8%)
patch tree reduce : 1.32 us (0.4%)
gen split merge : 852.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.44 us (0.4%)
LB compute : 327.64 us (94.1%)
LB move op cnt : 0
LB apply : 4.00 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.76 us (72.6%)
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 | 6.7301e+05 | 262144 | 1 | 3.895e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.811615036012096 (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 : 7.03 us (1.9%)
patch tree reduce : 1.33 us (0.4%)
gen split merge : 872.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.17 us (0.3%)
LB compute : 353.69 us (94.4%)
LB move op cnt : 0
LB apply : 4.26 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.63 us (71.8%)
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 | 7.8765e+05 | 262144 | 1 | 3.328e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.33445233579217 (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 : 6.91 us (1.8%)
patch tree reduce : 1.79 us (0.5%)
gen split merge : 781.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.44 us (0.4%)
LB compute : 364.38 us (94.6%)
LB move op cnt : 0
LB apply : 3.70 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.39 us (71.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.8493e+05 | 262144 | 1 | 3.340e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.274487483114655 (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 : 6.52 us (1.2%)
patch tree reduce : 1.53 us (0.3%)
gen split merge : 811.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 1.26 us (0.2%)
LB compute : 521.70 us (96.1%)
LB move op cnt : 0
LB apply : 4.12 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.98 us (73.2%)
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 | 7.1286e+05 | 262144 | 1 | 3.677e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.688386822972227 (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 : 6.23 us (1.5%)
patch tree reduce : 1.41 us (0.3%)
gen split merge : 912.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.19 us (0.3%)
LB compute : 392.70 us (95.1%)
LB move op cnt : 0
LB apply : 3.96 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.00 us (73.6%)
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 | 7.3134e+05 | 262144 | 1 | 3.584e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.094819599525238 (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.30 us (1.5%)
patch tree reduce : 1.48 us (0.4%)
gen split merge : 831.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 952.00 ns (0.2%)
LB compute : 399.54 us (95.1%)
LB move op cnt : 0
LB apply : 4.34 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.03 us (73.1%)
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.8087e+05 | 262144 | 1 | 3.357e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.184838257622786 (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.47 us (1.6%)
patch tree reduce : 1.78 us (0.4%)
gen split merge : 962.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.2%)
LB compute : 383.10 us (94.8%)
LB move op cnt : 0
LB apply : 4.08 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.50 us (73.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.8454e+05 | 262144 | 1 | 3.341e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.265539236567765 (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 (1.8%)
patch tree reduce : 1.41 us (0.4%)
gen split merge : 821.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.00 us (0.3%)
LB compute : 342.13 us (94.5%)
LB move op cnt : 0
LB apply : 3.67 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.60 us (70.4%)
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 | 7.8754e+05 | 262144 | 1 | 3.329e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.331609349897416 (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 : 6.07 us (1.7%)
patch tree reduce : 1.37 us (0.4%)
gen split merge : 911.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.38 us (0.4%)
LB compute : 334.83 us (94.5%)
LB move op cnt : 0
LB apply : 3.97 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.06 us (67.5%)
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 | 7.7727e+05 | 262144 | 1 | 3.373e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.105612794011748 (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.65 us (2.1%)
patch tree reduce : 1.64 us (0.5%)
gen split merge : 891.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.00 us (0.3%)
LB compute : 338.03 us (94.1%)
LB move op cnt : 0
LB apply : 3.69 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.46 us (69.6%)
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 | 7.8384e+05 | 262144 | 1 | 3.344e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.250221617934123 (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.27 us (1.7%)
patch tree reduce : 1.86 us (0.5%)
gen split merge : 1.21 us (0.3%)
split / merge op : 0/0
apply split merge : 961.00 ns (0.3%)
LB compute : 341.63 us (94.2%)
LB move op cnt : 0
LB apply : 4.12 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.60 us (69.8%)
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 | 7.9284e+05 | 262144 | 1 | 3.306e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.448238477648673 (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.40 us (1.7%)
patch tree reduce : 1.40 us (0.4%)
gen split merge : 832.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.10 us (0.3%)
LB compute : 365.48 us (94.7%)
LB move op cnt : 0
LB apply : 4.01 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.90 us (74.5%)
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 | 7.7536e+05 | 262144 | 1 | 3.381e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.063585201777087 (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.50 us (1.8%)
patch tree reduce : 1.32 us (0.4%)
gen split merge : 962.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.36 us (0.4%)
LB compute : 332.00 us (94.2%)
LB move op cnt : 0
LB apply : 4.24 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.50 us (72.2%)
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 | 7.6274e+05 | 262144 | 1 | 3.437e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.78587631354824 (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 : 6.88 us (2.1%)
patch tree reduce : 1.38 us (0.4%)
gen split merge : 922.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.43 us (0.4%)
LB compute : 306.80 us (93.6%)
LB move op cnt : 0
LB apply : 3.98 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.52 us (71.3%)
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 | 7.7992e+05 | 262144 | 1 | 3.361e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.164069366374576 (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.62 us (1.8%)
patch tree reduce : 1.75 us (0.5%)
gen split merge : 852.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.03 us (0.3%)
LB compute : 347.15 us (94.3%)
LB move op cnt : 0
LB apply : 4.12 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.70 us (71.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 | 7.7728e+05 | 262144 | 1 | 3.373e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.106141729199212 (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.35 us (1.9%)
patch tree reduce : 1.44 us (0.4%)
gen split merge : 862.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 993.00 ns (0.3%)
LB compute : 322.50 us (94.1%)
LB move op cnt : 0
LB apply : 3.85 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.30 us (68.2%)
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.7802e+05 | 262144 | 1 | 3.369e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.122517713562647 (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 : 5.86 us (1.7%)
patch tree reduce : 1.44 us (0.4%)
gen split merge : 1.28 us (0.4%)
split / merge op : 0/0
apply split merge : 1.07 us (0.3%)
LB compute : 329.84 us (94.3%)
LB move op cnt : 0
LB apply : 3.94 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.45 us (74.5%)
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 | 7.8104e+05 | 262144 | 1 | 3.356e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.189089959723866 (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 : 6.02 us (1.7%)
patch tree reduce : 1.31 us (0.4%)
gen split merge : 812.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.01 us (0.3%)
LB compute : 329.17 us (94.1%)
LB move op cnt : 0
LB apply : 4.60 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.17 us (71.2%)
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 | 7.7720e+05 | 262144 | 1 | 3.373e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.10478583647189 (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 : 6.85 us (1.8%)
patch tree reduce : 1.43 us (0.4%)
gen split merge : 822.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.15 us (0.3%)
LB compute : 355.93 us (94.5%)
LB move op cnt : 0
LB apply : 4.04 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.99 us (73.6%)
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 | 7.7014e+05 | 262144 | 1 | 3.404e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.949573314041597 (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.76 us (1.7%)
patch tree reduce : 1.50 us (0.4%)
gen split merge : 23.37 us (6.0%)
split / merge op : 0/0
apply split merge : 1.10 us (0.3%)
LB compute : 337.75 us (87.4%)
LB move op cnt : 0
LB apply : 8.82 us (2.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.89 us (73.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 | 7.3085e+05 | 262144 | 1 | 3.587e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.085025250429076 (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.11 us (1.8%)
patch tree reduce : 1.73 us (0.5%)
gen split merge : 822.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.22 us (0.4%)
LB compute : 324.36 us (94.1%)
LB move op cnt : 0
LB apply : 4.24 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.66 us (72.1%)
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 | 7.7698e+05 | 262144 | 1 | 3.374e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.100449528347767 (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.32 us (1.6%)
patch tree reduce : 1.56 us (0.4%)
gen split merge : 921.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 892.00 ns (0.2%)
LB compute : 379.80 us (94.9%)
LB move op cnt : 0
LB apply : 4.29 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.42 us (70.1%)
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 | 7.8414e+05 | 262144 | 1 | 3.343e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.258156703779154 (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 : 5.87 us (1.7%)
patch tree reduce : 1.62 us (0.5%)
gen split merge : 812.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.00 us (0.3%)
LB compute : 324.79 us (94.4%)
LB move op cnt : 0
LB apply : 3.67 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.36 us (70.4%)
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 | 7.1263e+05 | 262144 | 1 | 3.679e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.684514034391558 (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 : 6.45 us (0.9%)
patch tree reduce : 1.45 us (0.2%)
gen split merge : 832.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.1%)
LB compute : 674.72 us (96.9%)
LB move op cnt : 0
LB apply : 4.53 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.80 us (76.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 | 7.8676e+05 | 262144 | 1 | 3.332e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.316376421560516 (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.51 us (1.9%)
patch tree reduce : 1.41 us (0.4%)
gen split merge : 922.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.27 us (0.4%)
LB compute : 318.46 us (94.0%)
LB move op cnt : 0
LB apply : 4.15 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.41 us (70.4%)
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 | 7.8014e+05 | 262144 | 1 | 3.360e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.17069997062984 (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 : 6.31 us (1.7%)
patch tree reduce : 1.36 us (0.4%)
gen split merge : 832.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.01 us (0.3%)
LB compute : 346.75 us (94.6%)
LB move op cnt : 0
LB apply : 3.75 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.29 us (73.4%)
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 | 7.4391e+05 | 262144 | 1 | 3.524e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.373428721566885 (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 : 6.33 us (1.9%)
patch tree reduce : 1.39 us (0.4%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.36 us (0.4%)
LB compute : 318.76 us (93.8%)
LB move op cnt : 0
LB apply : 4.24 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.87 us (72.4%)
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.6806e+05 | 262144 | 1 | 3.413e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.905227226700013 (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.66 us (1.7%)
patch tree reduce : 1.36 us (0.3%)
gen split merge : 822.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.09 us (0.3%)
LB compute : 374.21 us (94.9%)
LB move op cnt : 0
LB apply : 3.86 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.70 us (73.9%)
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.8120e+05 | 262144 | 1 | 3.356e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.194625262312318 (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 : 6.36 us (1.6%)
patch tree reduce : 1.38 us (0.3%)
gen split merge : 952.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 891.00 ns (0.2%)
LB compute : 387.30 us (95.1%)
LB move op cnt : 0
LB apply : 4.22 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.55 us (70.6%)
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 | 7.8874e+05 | 262144 | 1 | 3.324e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.360691536635954 (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.16 us (1.6%)
patch tree reduce : 1.69 us (0.5%)
gen split merge : 792.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.09 us (0.3%)
LB compute : 354.15 us (94.7%)
LB move op cnt : 0
LB apply : 3.79 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.17 us (72.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 | 7.8232e+05 | 262144 | 1 | 3.351e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.219385232748497 (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 : 6.06 us (1.6%)
patch tree reduce : 1.51 us (0.4%)
gen split merge : 812.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.08 us (0.3%)
LB compute : 350.80 us (94.7%)
LB move op cnt : 0
LB apply : 3.73 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.66 us (72.4%)
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 | 7.7950e+05 | 262144 | 1 | 3.363e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.157445289308743 (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 : 6.14 us (1.8%)
patch tree reduce : 1.73 us (0.5%)
gen split merge : 822.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 841.00 ns (0.2%)
LB compute : 328.80 us (94.2%)
LB move op cnt : 0
LB apply : 4.17 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.99 us (71.8%)
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 | 7.8390e+05 | 262144 | 1 | 3.344e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.25457954485178 (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.60 us (1.9%)
patch tree reduce : 1.60 us (0.5%)
gen split merge : 942.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.19 us (0.3%)
LB compute : 321.63 us (93.9%)
LB move op cnt : 0
LB apply : 3.95 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.40 us (69.6%)
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 | 7.8373e+05 | 262144 | 1 | 3.345e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.25076246568439 (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 : 6.50 us (1.8%)
patch tree reduce : 1.48 us (0.4%)
gen split merge : 862.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 862.00 ns (0.2%)
LB compute : 341.82 us (94.5%)
LB move op cnt : 0
LB apply : 4.06 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.92 us (80.0%)
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 | 7.6255e+05 | 262144 | 1 | 3.438e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.784673830491204 (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.04 us (1.7%)
patch tree reduce : 1.40 us (0.4%)
gen split merge : 822.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.00 us (0.3%)
LB compute : 339.17 us (94.5%)
LB move op cnt : 0
LB apply : 4.15 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.25 us (69.2%)
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 | 7.7663e+05 | 262144 | 1 | 3.375e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.094713405533433 (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 : 6.70 us (2.1%)
patch tree reduce : 1.93 us (0.6%)
gen split merge : 831.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.3%)
LB compute : 305.60 us (93.6%)
LB move op cnt : 0
LB apply : 4.27 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.56 us (70.7%)
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 | 7.7308e+05 | 262144 | 1 | 3.391e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.01670821379671 (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 : 6.56 us (1.9%)
patch tree reduce : 1.71 us (0.5%)
gen split merge : 832.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.29 us (0.4%)
LB compute : 327.92 us (93.9%)
LB move op cnt : 0
LB apply : 4.02 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.08 us (71.6%)
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 | 7.8174e+05 | 262144 | 1 | 3.353e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.207409278928267 (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.43 us (1.9%)
patch tree reduce : 1.48 us (0.4%)
gen split merge : 1.00 us (0.3%)
split / merge op : 0/0
apply split merge : 892.00 ns (0.3%)
LB compute : 323.20 us (94.1%)
LB move op cnt : 0
LB apply : 3.98 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.44 us (69.6%)
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 | 7.8465e+05 | 262144 | 1 | 3.341e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.27135808141716 (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.55 us (1.6%)
patch tree reduce : 1.65 us (0.4%)
gen split merge : 822.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.23 us (0.3%)
LB compute : 394.69 us (95.0%)
LB move op cnt : 0
LB apply : 4.47 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.51 us (72.3%)
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 | 7.7990e+05 | 262144 | 1 | 3.361e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.166860184348643 (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.08 us (1.8%)
patch tree reduce : 1.78 us (0.5%)
gen split merge : 1.02 us (0.3%)
split / merge op : 0/0
apply split merge : 991.00 ns (0.3%)
LB compute : 315.82 us (94.1%)
LB move op cnt : 0
LB apply : 3.97 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.39 us (69.8%)
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 | 7.8369e+05 | 262144 | 1 | 3.345e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.250303149518427 (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.40 us (2.0%)
patch tree reduce : 1.53 us (0.5%)
gen split merge : 832.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.00 us (0.3%)
LB compute : 305.82 us (93.7%)
LB move op cnt : 0
LB apply : 4.02 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.65 us (72.1%)
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 | 7.8000e+05 | 262144 | 1 | 3.361e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.16909711144409 (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.55 us (1.9%)
patch tree reduce : 1.40 us (0.4%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.40 us (0.4%)
LB compute : 325.98 us (94.1%)
LB move op cnt : 0
LB apply : 3.84 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.16 us (70.0%)
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 | 7.7993e+05 | 262144 | 1 | 3.361e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.167709044593575 (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 : 5.93 us (1.6%)
patch tree reduce : 1.39 us (0.4%)
gen split merge : 922.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.21 us (0.3%)
LB compute : 360.43 us (94.7%)
LB move op cnt : 0
LB apply : 4.07 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.92 us (71.2%)
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 | 7.8547e+05 | 262144 | 1 | 3.337e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.289780131462017 (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 : 7.11 us (2.1%)
patch tree reduce : 1.36 us (0.4%)
gen split merge : 912.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.05 us (0.3%)
LB compute : 312.53 us (93.8%)
LB move op cnt : 0
LB apply : 4.12 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.70 us (72.1%)
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 | 7.8576e+05 | 262144 | 1 | 3.336e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.296077822756438 (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.13 us (1.5%)
patch tree reduce : 1.32 us (0.3%)
gen split merge : 982.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.39 us (0.3%)
LB compute : 381.52 us (94.9%)
LB move op cnt : 0
LB apply : 4.27 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.83 us (72.5%)
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.4357e+05 | 262144 | 1 | 3.525e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.367408961380157 (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 : 5.81 us (1.5%)
patch tree reduce : 1.84 us (0.5%)
gen split merge : 812.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 862.00 ns (0.2%)
LB compute : 359.37 us (94.7%)
LB move op cnt : 0
LB apply : 4.03 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.82 us (71.7%)
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 | 7.5332e+05 | 262144 | 1 | 3.480e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.58201220217535 (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.62 us (1.8%)
patch tree reduce : 1.41 us (0.4%)
gen split merge : 811.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.3%)
LB compute : 343.69 us (94.5%)
LB move op cnt : 0
LB apply : 4.01 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.40 us (71.2%)
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 | 7.7422e+05 | 262144 | 1 | 3.386e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.042215660422297 (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 : 6.92 us (1.9%)
patch tree reduce : 1.68 us (0.5%)
gen split merge : 821.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.40 us (0.4%)
LB compute : 351.28 us (94.3%)
LB move op cnt : 0
LB apply : 3.74 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.58 us (71.8%)
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 | 7.8216e+05 | 262144 | 1 | 3.352e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.21703664534092 (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.32 us (1.6%)
patch tree reduce : 1.50 us (0.4%)
gen split merge : 962.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 881.00 ns (0.2%)
LB compute : 374.91 us (95.0%)
LB move op cnt : 0
LB apply : 3.77 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.18 us (67.5%)
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 | 6.9938e+05 | 262144 | 1 | 3.748e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.394759457842442 (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.33 us (1.6%)
patch tree reduce : 1.50 us (0.4%)
gen split merge : 952.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.2%)
LB compute : 372.17 us (94.6%)
LB move op cnt : 0
LB apply : 4.46 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.06 us (75.8%)
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 | 7.3865e+05 | 262144 | 1 | 3.549e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.259220703862596 (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.09 us (1.8%)
patch tree reduce : 1.92 us (0.6%)
gen split merge : 911.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.26 us (0.4%)
LB compute : 313.62 us (93.8%)
LB move op cnt : 0
LB apply : 4.03 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.31 us (69.3%)
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 | 7.2820e+05 | 262144 | 1 | 3.600e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.02929178102968 (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.57 us (1.7%)
patch tree reduce : 1.44 us (0.4%)
gen split merge : 851.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.35 us (0.3%)
LB compute : 366.54 us (94.7%)
LB move op cnt : 0
LB apply : 3.70 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.48 us (70.0%)
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 | 7.4849e+05 | 262144 | 1 | 3.502e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.47593967565288 (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.61 us (1.8%)
patch tree reduce : 1.45 us (0.4%)
gen split merge : 851.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.04 us (0.3%)
LB compute : 349.60 us (94.4%)
LB move op cnt : 0
LB apply : 4.25 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.03 us (74.4%)
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 | 7.7928e+05 | 262144 | 1 | 3.364e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.153586642981853 (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 : 5.72 us (1.6%)
patch tree reduce : 1.62 us (0.5%)
gen split merge : 791.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.00 us (0.3%)
LB compute : 318.07 us (89.0%)
LB move op cnt : 0
LB apply : 23.83 us (6.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.76 us (72.2%)
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 | 7.6970e+05 | 262144 | 1 | 3.406e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.942732716730305 (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 : 6.18 us (1.7%)
patch tree reduce : 1.71 us (0.5%)
gen split merge : 831.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.3%)
LB compute : 346.30 us (94.5%)
LB move op cnt : 0
LB apply : 3.75 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.01 us (72.3%)
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 | 7.4037e+05 | 262144 | 1 | 3.541e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.297129100558973 (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.29 us (1.9%)
patch tree reduce : 1.34 us (0.4%)
gen split merge : 1.27 us (0.3%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.3%)
LB compute : 353.95 us (94.4%)
LB move op cnt : 0
LB apply : 3.66 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.37 us (70.1%)
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 | 7.1449e+05 | 262144 | 1 | 3.669e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.72757771528112 (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 : 12.24 us (3.3%)
patch tree reduce : 1.44 us (0.4%)
gen split merge : 912.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 902.00 ns (0.2%)
LB compute : 345.12 us (93.2%)
LB move op cnt : 0
LB apply : 3.57 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.39 us (63.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 | 7.4903e+05 | 262144 | 1 | 3.500e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8.89313901071853 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 219.27957617 (s) [Godunov][rank=0]
Info: dump to _to_trash/ramses_kh/periodic_0008.vtk [VTK Dump][rank=0]
- took 32.86 ms, bandwidth = 1.24 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 : 6.25 us (1.5%)
patch tree reduce : 1.45 us (0.4%)
gen split merge : 962.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 861.00 ns (0.2%)
LB compute : 391.49 us (95.2%)
LB move op cnt : 0
LB apply : 4.03 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.20 us (69.8%)
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 | 7.8984e+05 | 262144 | 1 | 3.319e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.3861507549665 (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.01 us (1.6%)
patch tree reduce : 1.42 us (0.4%)
gen split merge : 932.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.00 us (0.3%)
LB compute : 350.03 us (94.7%)
LB move op cnt : 0
LB apply : 4.00 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.40 us (71.2%)
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 | 7.9071e+05 | 262144 | 1 | 3.315e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.40534206647851 (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 : 6.44 us (1.5%)
patch tree reduce : 1.69 us (0.4%)
gen split merge : 922.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.02 us (0.2%)
LB compute : 416.37 us (95.3%)
LB move op cnt : 0
LB apply : 4.37 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.19 us (74.0%)
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 | 7.8139e+05 | 262144 | 1 | 3.355e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.2001597763446 (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.18 us (1.5%)
patch tree reduce : 1.44 us (0.4%)
gen split merge : 1.26 us (0.3%)
split / merge op : 0/0
apply split merge : 1.00 us (0.2%)
LB compute : 389.65 us (94.6%)
LB move op cnt : 0
LB apply : 4.26 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.08 us (73.4%)
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 | 7.7827e+05 | 262144 | 1 | 3.368e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.131385478127232 (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 : 5.98 us (1.6%)
patch tree reduce : 1.38 us (0.4%)
gen split merge : 921.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.10 us (0.3%)
LB compute : 354.86 us (94.7%)
LB move op cnt : 0
LB apply : 4.21 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.75 us (71.8%)
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 | 7.8601e+05 | 262144 | 1 | 3.335e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.301876566055622 (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 : 6.25 us (1.6%)
patch tree reduce : 1.77 us (0.5%)
gen split merge : 821.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 961.00 ns (0.2%)
LB compute : 368.44 us (94.6%)
LB move op cnt : 0
LB apply : 4.33 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.18 us (75.1%)
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 | 7.3780e+05 | 262144 | 1 | 3.553e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.240607295902418 (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 : 5.95 us (1.6%)
patch tree reduce : 1.67 us (0.5%)
gen split merge : 932.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 872.00 ns (0.2%)
LB compute : 343.67 us (94.8%)
LB move op cnt : 0
LB apply : 3.52 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.39 us (71.9%)
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 | 7.3902e+05 | 262144 | 1 | 3.547e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.267530837707664 (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.21 us (1.6%)
patch tree reduce : 1.64 us (0.4%)
gen split merge : 1.00 us (0.3%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.3%)
LB compute : 358.89 us (94.6%)
LB move op cnt : 0
LB apply : 3.98 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.28 us (69.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 | 7.5477e+05 | 262144 | 1 | 3.473e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.614113388692303 (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 : 6.13 us (1.8%)
patch tree reduce : 1.66 us (0.5%)
gen split merge : 812.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.20 us (0.4%)
LB compute : 316.74 us (94.1%)
LB move op cnt : 0
LB apply : 3.89 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.66 us (71.0%)
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.4812e+05 | 262144 | 1 | 3.504e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.467653703331873 (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 : 5.87 us (1.5%)
patch tree reduce : 1.48 us (0.4%)
gen split merge : 842.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.24 us (0.3%)
LB compute : 359.43 us (94.6%)
LB move op cnt : 0
LB apply : 3.88 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.00 us (74.9%)
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 | 7.7134e+05 | 262144 | 1 | 3.399e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.978804286040056 (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 : 6.93 us (2.0%)
patch tree reduce : 1.87 us (0.6%)
gen split merge : 862.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.01 us (0.3%)
LB compute : 317.52 us (93.6%)
LB move op cnt : 0
LB apply : 3.85 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.77 us (67.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 | 7.5775e+05 | 262144 | 1 | 3.460e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.679562258763365 (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 : 5.95 us (1.8%)
patch tree reduce : 1.53 us (0.5%)
gen split merge : 922.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.3%)
LB compute : 319.10 us (94.0%)
LB move op cnt : 0
LB apply : 4.12 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.34 us (69.2%)
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 | 6.9189e+05 | 262144 | 1 | 3.789e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.22988741971786 (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 : 5.78 us (1.6%)
patch tree reduce : 1.64 us (0.5%)
gen split merge : 831.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.07 us (0.3%)
LB compute : 335.06 us (94.6%)
LB move op cnt : 0
LB apply : 3.91 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.24 us (74.1%)
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 | 7.1601e+05 | 262144 | 1 | 3.661e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.760736796476312 (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 : 6.02 us (1.8%)
patch tree reduce : 1.51 us (0.5%)
gen split merge : 812.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.26 us (0.4%)
LB compute : 315.40 us (94.0%)
LB move op cnt : 0
LB apply : 4.10 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.63 us (69.7%)
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 | 7.1454e+05 | 262144 | 1 | 3.669e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.728223734987589 (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 : 6.27 us (1.9%)
patch tree reduce : 1.37 us (0.4%)
gen split merge : 911.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.07 us (0.3%)
LB compute : 317.54 us (94.1%)
LB move op cnt : 0
LB apply : 4.00 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.36 us (69.4%)
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 | 7.8974e+05 | 262144 | 1 | 3.319e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.383397936255864 (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 : 5.98 us (1.7%)
patch tree reduce : 1.56 us (0.4%)
gen split merge : 1.36 us (0.4%)
split / merge op : 0/0
apply split merge : 1.04 us (0.3%)
LB compute : 334.30 us (94.3%)
LB move op cnt : 0
LB apply : 3.75 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.78 us (69.6%)
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.7717e+05 | 262144 | 1 | 3.373e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.106635784226565 (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 : 6.75 us (1.9%)
patch tree reduce : 1.82 us (0.5%)
gen split merge : 1.01 us (0.3%)
split / merge op : 0/0
apply split merge : 1.22 us (0.3%)
LB compute : 338.03 us (93.8%)
LB move op cnt : 0
LB apply : 4.51 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.49 us (69.5%)
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.6426e+05 | 262144 | 1 | 3.430e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.822450255643435 (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.22 us (1.7%)
patch tree reduce : 1.80 us (0.5%)
gen split merge : 1.27 us (0.3%)
split / merge op : 0/0
apply split merge : 872.00 ns (0.2%)
LB compute : 354.16 us (94.5%)
LB move op cnt : 0
LB apply : 4.37 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.98 us (67.2%)
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.6129e+05 | 262144 | 1 | 3.443e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.757005197820423 (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 : 6.34 us (1.8%)
patch tree reduce : 1.39 us (0.4%)
gen split merge : 851.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.34 us (0.4%)
LB compute : 328.41 us (94.2%)
LB move op cnt : 0
LB apply : 3.90 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.52 us (70.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 | 7.0424e+05 | 262144 | 1 | 3.722e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.501122636543503 (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.11 us (1.5%)
patch tree reduce : 1.36 us (0.3%)
gen split merge : 982.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 872.00 ns (0.2%)
LB compute : 383.40 us (95.0%)
LB move op cnt : 0
LB apply : 4.49 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.83 us (72.8%)
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 | 7.8913e+05 | 262144 | 1 | 3.322e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.369628178844994 (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 : 6.19 us (1.7%)
patch tree reduce : 1.52 us (0.4%)
gen split merge : 1.07 us (0.3%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.3%)
LB compute : 352.32 us (94.7%)
LB move op cnt : 0
LB apply : 3.75 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.79 us (12.4%)
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 | 7.2787e+05 | 262144 | 1 | 3.602e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.02091351231459 (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.15 us (1.6%)
patch tree reduce : 1.68 us (0.4%)
gen split merge : 901.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 952.00 ns (0.2%)
LB compute : 365.98 us (94.7%)
LB move op cnt : 0
LB apply : 3.72 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.72 us (71.5%)
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 | 7.4374e+05 | 262144 | 1 | 3.525e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.370100582807027 (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.20 us (1.6%)
patch tree reduce : 1.41 us (0.4%)
gen split merge : 882.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.01 us (0.3%)
LB compute : 366.03 us (94.7%)
LB move op cnt : 0
LB apply : 3.92 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.75 us (72.1%)
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 | 6.9262e+05 | 262144 | 1 | 3.785e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.244899663974662 (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.04 us (1.6%)
patch tree reduce : 1.34 us (0.4%)
gen split merge : 942.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.3%)
LB compute : 351.69 us (94.8%)
LB move op cnt : 0
LB apply : 4.25 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.98 us (71.6%)
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 | 7.1191e+05 | 262144 | 1 | 3.682e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.669194388737933 (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 : 6.81 us (1.9%)
patch tree reduce : 1.74 us (0.5%)
gen split merge : 821.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.3%)
LB compute : 346.23 us (94.3%)
LB move op cnt : 0
LB apply : 4.06 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.54 us (69.8%)
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 | 7.7922e+05 | 262144 | 1 | 3.364e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.150652956201476 (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 : 6.03 us (1.5%)
patch tree reduce : 1.37 us (0.3%)
gen split merge : 932.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.15 us (0.3%)
LB compute : 386.26 us (94.9%)
LB move op cnt : 0
LB apply : 4.47 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.03 us (73.3%)
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 | 7.8141e+05 | 262144 | 1 | 3.355e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.19852387735827 (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.80 us (1.8%)
patch tree reduce : 1.50 us (0.4%)
gen split merge : 961.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.23 us (0.3%)
LB compute : 346.28 us (94.1%)
LB move op cnt : 0
LB apply : 4.61 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.81 us (71.6%)
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 | 7.7096e+05 | 262144 | 1 | 3.400e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.96835913728563 (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 : 5.95 us (1.7%)
patch tree reduce : 1.74 us (0.5%)
gen split merge : 831.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.07 us (0.3%)
LB compute : 339.31 us (94.5%)
LB move op cnt : 0
LB apply : 3.86 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.30 us (71.0%)
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 | 7.8726e+05 | 262144 | 1 | 3.330e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.326954294748152 (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 : 5.88 us (1.5%)
patch tree reduce : 1.30 us (0.3%)
gen split merge : 942.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.01 us (0.3%)
LB compute : 382.43 us (95.2%)
LB move op cnt : 0
LB apply : 3.62 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.88 us (70.3%)
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 | 7.1284e+05 | 262144 | 1 | 3.677e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.68865971950778 (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 : 5.98 us (1.6%)
patch tree reduce : 1.34 us (0.4%)
gen split merge : 962.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.01 us (0.3%)
LB compute : 361.33 us (94.9%)
LB move op cnt : 0
LB apply : 4.01 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.67 us (74.1%)
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 | 7.5510e+05 | 262144 | 1 | 3.472e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.618503387699416 (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 : 6.54 us (2.0%)
patch tree reduce : 1.49 us (0.5%)
gen split merge : 1.14 us (0.3%)
split / merge op : 0/0
apply split merge : 1.11 us (0.3%)
LB compute : 306.89 us (93.7%)
LB move op cnt : 0
LB apply : 4.01 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.49 us (70.1%)
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 | 6.7664e+05 | 262144 | 1 | 3.874e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.891472497190067 (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 : 6.01 us (1.6%)
patch tree reduce : 1.69 us (0.5%)
gen split merge : 912.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.10 us (0.3%)
LB compute : 353.32 us (94.6%)
LB move op cnt : 0
LB apply : 4.42 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.82 us (72.6%)
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 | 6.3264e+05 | 262144 | 1 | 4.144e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.922821302251597 (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 : 5.86 us (1.5%)
patch tree reduce : 1.33 us (0.3%)
gen split merge : 1.07 us (0.3%)
split / merge op : 0/0
apply split merge : 1.13 us (0.3%)
LB compute : 372.37 us (94.9%)
LB move op cnt : 0
LB apply : 4.30 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.04 us (69.8%)
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 | 7.7053e+05 | 262144 | 1 | 3.402e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.957216076343563 (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 : 6.44 us (1.7%)
patch tree reduce : 1.75 us (0.5%)
gen split merge : 822.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 881.00 ns (0.2%)
LB compute : 367.44 us (94.7%)
LB move op cnt : 0
LB apply : 4.20 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.75 us (71.6%)
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 | 7.1885e+05 | 262144 | 1 | 3.647e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.819634028376386 (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 : 6.38 us (1.7%)
patch tree reduce : 1.77 us (0.5%)
gen split merge : 982.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.07 us (0.3%)
LB compute : 357.80 us (94.7%)
LB move op cnt : 0
LB apply : 3.64 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.48 us (70.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 | 7.8037e+05 | 262144 | 1 | 3.359e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.17318404340845 (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 : 6.44 us (1.6%)
patch tree reduce : 1.64 us (0.4%)
gen split merge : 862.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.15 us (0.3%)
LB compute : 379.63 us (94.8%)
LB move op cnt : 0
LB apply : 4.00 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.45 us (70.4%)
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 | 7.8354e+05 | 262144 | 1 | 3.346e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.242510547577982 (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 : 6.03 us (1.6%)
patch tree reduce : 1.50 us (0.4%)
gen split merge : 911.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.00 us (0.3%)
LB compute : 352.03 us (94.7%)
LB move op cnt : 0
LB apply : 3.89 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.06 us (66.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 | 7.8132e+05 | 262144 | 1 | 3.355e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.193485871744862 (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.46 us (1.7%)
patch tree reduce : 1.76 us (0.5%)
gen split merge : 951.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 961.00 ns (0.3%)
LB compute : 357.47 us (94.5%)
LB move op cnt : 0
LB apply : 3.95 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.20 us (66.8%)
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 | 7.8371e+05 | 262144 | 1 | 3.345e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.24574384030642 (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 : 6.28 us (1.5%)
patch tree reduce : 1.82 us (0.4%)
gen split merge : 932.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.35 us (0.3%)
LB compute : 401.03 us (94.9%)
LB move op cnt : 0
LB apply : 4.42 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.39 us (75.6%)
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 | 7.7612e+05 | 262144 | 1 | 3.378e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.078389268138032 (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.44 us (1.8%)
patch tree reduce : 1.44 us (0.4%)
gen split merge : 821.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.3%)
LB compute : 330.19 us (94.3%)
LB move op cnt : 0
LB apply : 3.77 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.23 us (67.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 | 7.8148e+05 | 262144 | 1 | 3.354e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.19593741671988 (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 : 6.13 us (1.6%)
patch tree reduce : 1.40 us (0.4%)
gen split merge : 992.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.04 us (0.3%)
LB compute : 361.75 us (94.7%)
LB move op cnt : 0
LB apply : 3.94 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.94 us (72.9%)
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 | 7.7905e+05 | 262144 | 1 | 3.365e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.142233394953948 (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 : 5.91 us (1.6%)
patch tree reduce : 1.74 us (0.5%)
gen split merge : 922.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.00 us (0.3%)
LB compute : 343.77 us (94.5%)
LB move op cnt : 0
LB apply : 3.94 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.60 us (69.9%)
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 | 7.7748e+05 | 262144 | 1 | 3.372e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.107459029886613 (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 : 6.68 us (1.8%)
patch tree reduce : 1.35 us (0.4%)
gen split merge : 922.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.16 us (0.3%)
LB compute : 342.28 us (94.3%)
LB move op cnt : 0
LB apply : 4.30 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.28 us (69.7%)
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 | 7.8010e+05 | 262144 | 1 | 3.360e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.16481121008684 (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 : 6.12 us (1.6%)
patch tree reduce : 1.40 us (0.4%)
gen split merge : 832.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.3%)
LB compute : 354.46 us (94.7%)
LB move op cnt : 0
LB apply : 4.49 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.25 us (65.1%)
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 | 7.7516e+05 | 262144 | 1 | 3.382e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.055860687440447 (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 : 6.55 us (1.8%)
patch tree reduce : 1.37 us (0.4%)
gen split merge : 1.08 us (0.3%)
split / merge op : 0/0
apply split merge : 1.09 us (0.3%)
LB compute : 347.06 us (94.2%)
LB move op cnt : 0
LB apply : 4.63 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.48 us (67.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 | 7.5676e+05 | 262144 | 1 | 3.464e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.650636602302132 (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 : 5.64 us (1.3%)
patch tree reduce : 1.50 us (0.4%)
gen split merge : 490.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 872.00 ns (0.2%)
LB compute : 409.83 us (95.6%)
LB move op cnt : 0
LB apply : 4.20 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.62 us (71.7%)
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 | 6.8960e+05 | 262144 | 1 | 3.801e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.172778158674422 (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.17 us (1.6%)
patch tree reduce : 1.78 us (0.5%)
gen split merge : 912.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.01 us (0.3%)
LB compute : 357.15 us (94.4%)
LB move op cnt : 0
LB apply : 4.07 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.65 us (71.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 | 7.6993e+05 | 262144 | 1 | 3.405e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.939819633990897 (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.74 us (1.8%)
patch tree reduce : 1.37 us (0.4%)
gen split merge : 922.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.04 us (0.3%)
LB compute : 363.67 us (94.5%)
LB move op cnt : 0
LB apply : 4.25 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.86 us (73.3%)
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 | 7.8265e+05 | 262144 | 1 | 3.349e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.21946237971284 (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 : 6.84 us (1.8%)
patch tree reduce : 1.47 us (0.4%)
gen split merge : 922.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.01 us (0.3%)
LB compute : 363.63 us (94.6%)
LB move op cnt : 0
LB apply : 3.76 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.46 us (69.6%)
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 | 7.0357e+05 | 262144 | 1 | 3.726e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.479285812183369 (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 : 6.11 us (1.6%)
patch tree reduce : 1.75 us (0.5%)
gen split merge : 911.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.17 us (0.3%)
LB compute : 355.79 us (94.6%)
LB move op cnt : 0
LB apply : 4.33 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.60 us (70.8%)
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.7203e+05 | 262144 | 1 | 3.901e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.78533460624799 (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 : 8.66 us (2.1%)
patch tree reduce : 3.87 us (0.9%)
gen split merge : 1.31 us (0.3%)
split / merge op : 0/0
apply split merge : 2.02 us (0.5%)
LB compute : 392.34 us (93.0%)
LB move op cnt : 0
LB apply : 4.01 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.22 us (73.6%)
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 | 7.5628e+05 | 262144 | 1 | 3.466e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.638480772373427 (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 : 6.03 us (1.5%)
patch tree reduce : 1.34 us (0.3%)
gen split merge : 1.24 us (0.3%)
split / merge op : 0/0
apply split merge : 892.00 ns (0.2%)
LB compute : 382.78 us (95.0%)
LB move op cnt : 0
LB apply : 4.15 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.74 us (66.4%)
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.8038e+05 | 262144 | 1 | 3.359e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.168440809128906 (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.54 us (1.9%)
patch tree reduce : 1.53 us (0.4%)
gen split merge : 1.13 us (0.3%)
split / merge op : 0/0
apply split merge : 852.00 ns (0.2%)
LB compute : 324.30 us (94.1%)
LB move op cnt : 0
LB apply : 3.75 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.36 us (69.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.7671e+05 | 262144 | 1 | 3.375e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.08750264034942 (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 : 5.82 us (1.5%)
patch tree reduce : 1.41 us (0.4%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 892.00 ns (0.2%)
LB compute : 356.98 us (94.8%)
LB move op cnt : 0
LB apply : 4.13 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.91 us (72.0%)
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 | 7.8259e+05 | 262144 | 1 | 3.350e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.216639976709416 (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.60 us (1.9%)
patch tree reduce : 1.58 us (0.5%)
gen split merge : 921.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.10 us (0.3%)
LB compute : 324.80 us (93.8%)
LB move op cnt : 0
LB apply : 4.19 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.49 us (71.7%)
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 | 7.2192e+05 | 262144 | 1 | 3.631e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.881850684535396 (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 : 6.02 us (1.5%)
patch tree reduce : 1.48 us (0.4%)
gen split merge : 1.13 us (0.3%)
split / merge op : 0/0
apply split merge : 941.00 ns (0.2%)
LB compute : 376.69 us (95.0%)
LB move op cnt : 0
LB apply : 3.84 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.70 us (72.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 | 7.9116e+05 | 262144 | 1 | 3.313e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.404746552979397 (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 : 6.30 us (1.7%)
patch tree reduce : 1.62 us (0.4%)
gen split merge : 811.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 981.00 ns (0.3%)
LB compute : 341.24 us (94.3%)
LB move op cnt : 0
LB apply : 3.85 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.19 us (68.4%)
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 | 6.8918e+05 | 262144 | 1 | 3.804e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.161141812287875 (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 : 6.54 us (2.0%)
patch tree reduce : 1.55 us (0.5%)
gen split merge : 811.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.3%)
LB compute : 313.50 us (93.9%)
LB move op cnt : 0
LB apply : 4.33 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.09 us (71.6%)
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 | 7.0729e+05 | 262144 | 1 | 3.706e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.559348207673334 (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.08 us (2.0%)
patch tree reduce : 1.53 us (0.4%)
gen split merge : 812.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 882.00 ns (0.2%)
LB compute : 339.32 us (94.0%)
LB move op cnt : 0
LB apply : 4.36 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.56 us (68.7%)
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.1868e+05 | 262144 | 1 | 3.648e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.809630971737276 (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 : 6.20 us (1.7%)
patch tree reduce : 1.45 us (0.4%)
gen split merge : 912.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.31 us (0.4%)
LB compute : 335.09 us (94.2%)
LB move op cnt : 0
LB apply : 4.18 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.76 us (70.9%)
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 | 7.3922e+05 | 262144 | 1 | 3.546e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.26125127708071 (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.50 us (1.8%)
patch tree reduce : 1.62 us (0.5%)
gen split merge : 821.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 852.00 ns (0.2%)
LB compute : 332.20 us (94.3%)
LB move op cnt : 0
LB apply : 3.98 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.64 us (70.9%)
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 | 7.3946e+05 | 262144 | 1 | 3.545e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.266360854141848 (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 : 6.70 us (1.8%)
patch tree reduce : 1.51 us (0.4%)
gen split merge : 831.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.3%)
LB compute : 350.31 us (94.5%)
LB move op cnt : 0
LB apply : 3.59 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.45 us (70.5%)
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.4274e+05 | 262144 | 1 | 3.529e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.33829435497068 (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 : 5.90 us (1.6%)
patch tree reduce : 1.42 us (0.4%)
gen split merge : 1.10 us (0.3%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.3%)
LB compute : 339.57 us (94.6%)
LB move op cnt : 0
LB apply : 3.91 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.58 us (69.3%)
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.6437e+05 | 262144 | 1 | 3.430e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.813881760834338 (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 : 6.03 us (1.7%)
patch tree reduce : 1.39 us (0.4%)
gen split merge : 892.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.3%)
LB compute : 343.88 us (94.5%)
LB move op cnt : 0
LB apply : 4.00 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.96 us (71.6%)
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.5132e+05 | 262144 | 1 | 3.489e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.526671859087973 (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 : 6.28 us (1.5%)
patch tree reduce : 1.72 us (0.4%)
gen split merge : 942.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.09 us (0.3%)
LB compute : 387.79 us (95.0%)
LB move op cnt : 0
LB apply : 3.73 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.68 us (70.6%)
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 | 7.8995e+05 | 262144 | 1 | 3.319e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.376127098394292 (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 : 32.03 us (7.6%)
patch tree reduce : 1.63 us (0.4%)
gen split merge : 892.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 881.00 ns (0.2%)
LB compute : 374.56 us (89.1%)
LB move op cnt : 0
LB apply : 3.96 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.86 us (66.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.9135e+05 | 262144 | 1 | 3.313e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.4067989099368 (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 : 5.76 us (1.4%)
patch tree reduce : 1.48 us (0.4%)
gen split merge : 831.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.09 us (0.3%)
LB compute : 380.38 us (95.0%)
LB move op cnt : 0
LB apply : 4.22 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.37 us (70.0%)
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 | 7.2358e+05 | 262144 | 1 | 3.623e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.915933963230861 (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 : 7.18 us (1.9%)
patch tree reduce : 1.39 us (0.4%)
gen split merge : 921.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.03 us (0.3%)
LB compute : 352.46 us (94.4%)
LB move op cnt : 0
LB apply : 3.88 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.60 us (72.3%)
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.1268e+05 | 262144 | 1 | 3.678e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.675998319290619 (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 : 6.30 us (1.7%)
patch tree reduce : 1.65 us (0.4%)
gen split merge : 1.32 us (0.4%)
split / merge op : 0/0
apply split merge : 872.00 ns (0.2%)
LB compute : 347.80 us (94.4%)
LB move op cnt : 0
LB apply : 4.31 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.55 us (68.0%)
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 | 7.1387e+05 | 262144 | 1 | 3.672e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.701853243843477 (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 : 6.30 us (1.6%)
patch tree reduce : 1.34 us (0.3%)
gen split merge : 991.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.10 us (0.3%)
LB compute : 363.70 us (94.7%)
LB move op cnt : 0
LB apply : 4.33 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.88 us (73.1%)
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.4153e+05 | 262144 | 1 | 3.535e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.310150909345296 (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 : 6.08 us (1.5%)
patch tree reduce : 1.33 us (0.3%)
gen split merge : 912.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 892.00 ns (0.2%)
LB compute : 383.00 us (95.1%)
LB move op cnt : 0
LB apply : 4.28 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.69 us (71.7%)
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 | 7.8340e+05 | 262144 | 1 | 3.346e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.2308833850639 (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 : 5.86 us (1.6%)
patch tree reduce : 1.76 us (0.5%)
gen split merge : 821.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 882.00 ns (0.2%)
LB compute : 342.98 us (94.4%)
LB move op cnt : 0
LB apply : 4.55 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.55 us (69.2%)
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 | 7.0345e+05 | 262144 | 1 | 3.727e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.472114653516755 (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 : 6.92 us (1.8%)
patch tree reduce : 1.39 us (0.4%)
gen split merge : 862.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.3%)
LB compute : 353.89 us (94.2%)
LB move op cnt : 0
LB apply : 4.52 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.08 us (68.8%)
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 | 6.6088e+05 | 262144 | 1 | 3.967e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.535736993774812 (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 : 6.30 us (1.6%)
patch tree reduce : 1.42 us (0.4%)
gen split merge : 911.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.12 us (0.3%)
LB compute : 386.18 us (95.1%)
LB move op cnt : 0
LB apply : 4.09 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.70 us (72.1%)
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 | 6.4064e+05 | 262144 | 1 | 4.092e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.090268820602118 (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.62 us (1.8%)
patch tree reduce : 1.78 us (0.5%)
gen split merge : 992.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 952.00 ns (0.3%)
LB compute : 354.59 us (94.1%)
LB move op cnt : 0
LB apply : 4.35 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.93 us (73.9%)
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 | 7.2331e+05 | 262144 | 1 | 3.624e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.908424750026638 (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.48 us (1.8%)
patch tree reduce : 1.33 us (0.4%)
gen split merge : 1.10 us (0.3%)
split / merge op : 0/0
apply split merge : 1.12 us (0.3%)
LB compute : 346.50 us (94.2%)
LB move op cnt : 0
LB apply : 4.42 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.59 us (72.7%)
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 | 7.8545e+05 | 262144 | 1 | 3.337e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.274927381724726 (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.16 us (1.5%)
patch tree reduce : 1.36 us (0.3%)
gen split merge : 922.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.11 us (0.3%)
LB compute : 386.64 us (95.0%)
LB move op cnt : 0
LB apply : 3.84 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.32 us (69.6%)
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 | 7.8197e+05 | 262144 | 1 | 3.352e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.198092118097808 (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 : 6.47 us (1.6%)
patch tree reduce : 1.60 us (0.4%)
gen split merge : 972.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 882.00 ns (0.2%)
LB compute : 387.35 us (95.0%)
LB move op cnt : 0
LB apply : 4.05 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.72 us (71.7%)
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 | 7.8194e+05 | 262144 | 1 | 3.352e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.197155449570356 (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.47 us (1.7%)
patch tree reduce : 1.35 us (0.3%)
gen split merge : 942.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.12 us (0.3%)
LB compute : 369.86 us (94.9%)
LB move op cnt : 0
LB apply : 3.91 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.66 us (67.4%)
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 | 7.2195e+05 | 262144 | 1 | 3.631e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.877752285645528 (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 : 6.31 us (1.3%)
patch tree reduce : 1.30 us (0.3%)
gen split merge : 1.14 us (0.2%)
split / merge op : 0/0
apply split merge : 1.00 us (0.2%)
LB compute : 453.95 us (95.6%)
LB move op cnt : 0
LB apply : 4.26 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.45 us (74.0%)
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.8736e+05 | 262144 | 1 | 3.329e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.31599148959126 (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 : 6.66 us (1.7%)
patch tree reduce : 1.75 us (0.5%)
gen split merge : 842.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.21 us (0.3%)
LB compute : 361.94 us (94.5%)
LB move op cnt : 0
LB apply : 4.18 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.75 us (71.3%)
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.2246e+05 | 262144 | 1 | 3.628e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.88854851238997 (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 : 5.84 us (1.5%)
patch tree reduce : 1.64 us (0.4%)
gen split merge : 952.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.3%)
LB compute : 364.47 us (94.8%)
LB move op cnt : 0
LB apply : 3.81 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.46 us (68.8%)
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 | 7.8759e+05 | 262144 | 1 | 3.328e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.320526514235603 (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 : 5.95 us (1.5%)
patch tree reduce : 1.45 us (0.4%)
gen split merge : 821.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 892.00 ns (0.2%)
LB compute : 382.30 us (95.1%)
LB move op cnt : 0
LB apply : 4.12 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.14 us (69.9%)
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 | 7.8722e+05 | 262144 | 1 | 3.330e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9.801390161281363 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 248.952742849 (s) [Godunov][rank=0]
Info: dump to _to_trash/ramses_kh/periodic_0009.vtk [VTK Dump][rank=0]
- took 31.72 ms, bandwidth = 1.29 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 : 6.30 us (1.7%)
patch tree reduce : 1.75 us (0.5%)
gen split merge : 911.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.22 us (0.3%)
LB compute : 354.95 us (94.6%)
LB move op cnt : 0
LB apply : 4.22 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.05 us (68.3%)
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 | 6.4726e+05 | 262144 | 1 | 4.050e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.234319027329716 (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 : 5.82 us (1.5%)
patch tree reduce : 1.50 us (0.4%)
gen split merge : 851.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 862.00 ns (0.2%)
LB compute : 380.76 us (95.1%)
LB move op cnt : 0
LB apply : 3.93 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.26 us (75.4%)
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 | 7.5950e+05 | 262144 | 1 | 3.452e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.702265475594917 (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 : 5.86 us (1.5%)
patch tree reduce : 1.36 us (0.4%)
gen split merge : 912.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.09 us (0.3%)
LB compute : 366.04 us (94.8%)
LB move op cnt : 0
LB apply : 3.97 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.76 us (72.6%)
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 | 7.8867e+05 | 262144 | 1 | 3.324e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.343486396780694 (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 : 6.04 us (1.6%)
patch tree reduce : 1.62 us (0.4%)
gen split merge : 912.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.36 us (0.4%)
LB compute : 359.02 us (94.7%)
LB move op cnt : 0
LB apply : 3.89 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.52 us (70.8%)
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 | 7.8359e+05 | 262144 | 1 | 3.345e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.23163940170734 (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 : 6.15 us (1.5%)
patch tree reduce : 1.48 us (0.4%)
gen split merge : 922.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 981.00 ns (0.2%)
LB compute : 392.26 us (95.2%)
LB move op cnt : 0
LB apply : 4.05 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.81 us (73.1%)
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 | 7.8797e+05 | 262144 | 1 | 3.327e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.327788282718398 (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 : 6.21 us (1.4%)
patch tree reduce : 1.33 us (0.3%)
gen split merge : 1.06 us (0.2%)
split / merge op : 0/0
apply split merge : 1.08 us (0.2%)
LB compute : 418.34 us (95.4%)
LB move op cnt : 0
LB apply : 4.29 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.86 us (70.4%)
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 | 7.9513e+05 | 262144 | 1 | 3.297e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.485054092239327 (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 : 28.40 us (7.2%)
patch tree reduce : 1.37 us (0.3%)
gen split merge : 932.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.00 us (0.3%)
LB compute : 352.26 us (89.4%)
LB move op cnt : 0
LB apply : 3.70 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.83 us (73.8%)
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 | 7.9361e+05 | 262144 | 1 | 3.303e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.451477959678694 (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.13 us (1.7%)
patch tree reduce : 1.35 us (0.4%)
gen split merge : 912.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.12 us (0.3%)
LB compute : 341.53 us (94.5%)
LB move op cnt : 0
LB apply : 3.99 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.14 us (71.0%)
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 | 6.7752e+05 | 262144 | 1 | 3.869e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.898367919508726 (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 : 6.36 us (1.0%)
patch tree reduce : 1.52 us (0.2%)
gen split merge : 882.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.2%)
LB compute : 603.34 us (96.8%)
LB move op cnt : 0
LB apply : 4.03 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.99 us (72.9%)
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 | 7.0669e+05 | 262144 | 1 | 3.709e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.539765257311894 (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 : 5.88 us (1.7%)
patch tree reduce : 1.33 us (0.4%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.43 us (0.4%)
LB compute : 319.07 us (94.3%)
LB move op cnt : 0
LB apply : 3.72 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.46 us (71.0%)
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 | 7.1390e+05 | 262144 | 1 | 3.672e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.698119513928196 (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 : 5.58 us (1.6%)
patch tree reduce : 1.65 us (0.5%)
gen split merge : 821.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.08 us (0.3%)
LB compute : 320.30 us (94.3%)
LB move op cnt : 0
LB apply : 4.05 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.10 us (69.6%)
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 | 7.5239e+05 | 262144 | 1 | 3.484e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.544320290255403 (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 : 5.73 us (1.6%)
patch tree reduce : 1.45 us (0.4%)
gen split merge : 801.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.13 us (0.3%)
LB compute : 338.14 us (94.5%)
LB move op cnt : 0
LB apply : 3.70 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.48 us (69.8%)
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 | 7.3504e+05 | 262144 | 1 | 3.566e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.162655742215982 (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 : 6.02 us (1.8%)
patch tree reduce : 1.35 us (0.4%)
gen split merge : 841.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 942.00 ns (0.3%)
LB compute : 317.97 us (94.3%)
LB move op cnt : 0
LB apply : 4.01 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.42 us (68.4%)
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 | 7.0640e+05 | 262144 | 1 | 3.711e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.532556477715287 (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 : 6.32 us (1.6%)
patch tree reduce : 1.32 us (0.3%)
gen split merge : 922.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.04 us (0.3%)
LB compute : 372.87 us (95.0%)
LB move op cnt : 0
LB apply : 3.90 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.00 us (71.9%)
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 | 7.4188e+05 | 262144 | 1 | 3.533e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.312741841614816 (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 : 5.72 us (1.6%)
patch tree reduce : 1.38 us (0.4%)
gen split merge : 912.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.07 us (0.3%)
LB compute : 340.14 us (94.7%)
LB move op cnt : 0
LB apply : 3.89 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.44 us (68.9%)
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 | 7.2654e+05 | 262144 | 1 | 3.608e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.975089824938825 (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.36 us (1.9%)
patch tree reduce : 1.32 us (0.4%)
gen split merge : 1.18 us (0.4%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.3%)
LB compute : 315.15 us (94.1%)
LB move op cnt : 0
LB apply : 4.09 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.26 us (73.8%)
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.5786e+05 | 262144 | 1 | 3.459e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.663744478985144 (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 : 5.69 us (1.5%)
patch tree reduce : 1.50 us (0.4%)
gen split merge : 912.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 862.00 ns (0.2%)
LB compute : 370.98 us (95.0%)
LB move op cnt : 0
LB apply : 4.12 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.56 us (71.3%)
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 | 7.8355e+05 | 262144 | 1 | 3.346e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.228417338847336 (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 : 6.39 us (1.7%)
patch tree reduce : 1.54 us (0.4%)
gen split merge : 841.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.06 us (0.3%)
LB compute : 361.28 us (94.6%)
LB move op cnt : 0
LB apply : 4.03 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.28 us (74.8%)
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 | 7.9085e+05 | 262144 | 1 | 3.315e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.388733408158753 (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 : 6.03 us (1.6%)
patch tree reduce : 1.45 us (0.4%)
gen split merge : 972.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.3%)
LB compute : 347.21 us (94.7%)
LB move op cnt : 0
LB apply : 3.59 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.60 us (75.0%)
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 | 7.1785e+05 | 262144 | 1 | 3.652e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.783437111217369 (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 : 27.26 us (7.6%)
patch tree reduce : 2.18 us (0.6%)
gen split merge : 962.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.15 us (0.3%)
LB compute : 315.17 us (88.3%)
LB move op cnt : 0
LB apply : 3.93 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.30 us (72.1%)
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 | 6.9660e+05 | 262144 | 1 | 3.763e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.316189759444791 (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.12 us (1.8%)
patch tree reduce : 1.41 us (0.4%)
gen split merge : 1.25 us (0.4%)
split / merge op : 0/0
apply split merge : 1.00 us (0.3%)
LB compute : 315.95 us (94.0%)
LB move op cnt : 0
LB apply : 3.91 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.12 us (70.5%)
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 | 7.8293e+05 | 262144 | 1 | 3.348e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.21406914059894 (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 : 5.80 us (1.5%)
patch tree reduce : 1.73 us (0.5%)
gen split merge : 822.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.29 us (0.3%)
LB compute : 360.73 us (94.6%)
LB move op cnt : 0
LB apply : 4.19 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.72 us (71.5%)
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 | 7.8143e+05 | 262144 | 1 | 3.355e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.180893311335577 (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.30 us (1.9%)
patch tree reduce : 1.48 us (0.4%)
gen split merge : 832.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 991.00 ns (0.3%)
LB compute : 318.87 us (94.0%)
LB move op cnt : 0
LB apply : 3.98 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.71 us (71.8%)
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 | 7.8632e+05 | 262144 | 1 | 3.334e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.288296508427916 (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 : 5.91 us (1.6%)
patch tree reduce : 1.33 us (0.4%)
gen split merge : 1.28 us (0.3%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.3%)
LB compute : 347.62 us (94.6%)
LB move op cnt : 0
LB apply : 3.76 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.40 us (69.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.8275e+05 | 262144 | 1 | 3.349e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.209781733789814 (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 : 6.17 us (1.8%)
patch tree reduce : 1.45 us (0.4%)
gen split merge : 932.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 951.00 ns (0.3%)
LB compute : 329.12 us (94.0%)
LB move op cnt : 0
LB apply : 4.41 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.66 us (74.0%)
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.8072e+05 | 262144 | 1 | 3.358e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.164867728808318 (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 : 6.67 us (1.9%)
patch tree reduce : 1.56 us (0.5%)
gen split merge : 922.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 882.00 ns (0.3%)
LB compute : 321.77 us (93.9%)
LB move op cnt : 0
LB apply : 4.16 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.10 us (72.5%)
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 | 7.2155e+05 | 262144 | 1 | 3.633e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.863922160415006 (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 : 5.81 us (1.6%)
patch tree reduce : 1.29 us (0.4%)
gen split merge : 881.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.10 us (0.3%)
LB compute : 336.49 us (94.6%)
LB move op cnt : 0
LB apply : 3.98 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.44 us (69.1%)
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 | 7.8265e+05 | 262144 | 1 | 3.349e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.207181670493906 (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 : 6.20 us (1.7%)
patch tree reduce : 1.39 us (0.4%)
gen split merge : 962.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.08 us (0.3%)
LB compute : 353.27 us (94.7%)
LB move op cnt : 0
LB apply : 3.71 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.95 us (71.2%)
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 | 7.3280e+05 | 262144 | 1 | 3.577e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.11100275437078 (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 : 6.37 us (1.8%)
patch tree reduce : 1.63 us (0.5%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.00 us (0.3%)
LB compute : 341.15 us (94.3%)
LB move op cnt : 0
LB apply : 4.35 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.35 us (71.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.8788e+05 | 262144 | 1 | 3.327e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.321895011588712 (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 : 5.99 us (1.5%)
patch tree reduce : 1.54 us (0.4%)
gen split merge : 812.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 911.00 ns (0.2%)
LB compute : 370.72 us (94.9%)
LB move op cnt : 0
LB apply : 3.77 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.79 us (73.7%)
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 | 7.8389e+05 | 262144 | 1 | 3.344e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.234041975018364 (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.44 us (1.7%)
patch tree reduce : 1.30 us (0.3%)
gen split merge : 821.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.13 us (0.3%)
LB compute : 365.17 us (94.7%)
LB move op cnt : 0
LB apply : 4.24 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.85 us (72.6%)
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 | 7.6456e+05 | 262144 | 1 | 3.429e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.808825083521803 (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.32 us (1.7%)
patch tree reduce : 1.60 us (0.4%)
gen split merge : 942.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.34 us (0.4%)
LB compute : 360.51 us (94.6%)
LB move op cnt : 0
LB apply : 4.07 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.51 us (72.3%)
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 | 7.7980e+05 | 262144 | 1 | 3.362e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.143737215363338 (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 : 6.70 us (1.7%)
patch tree reduce : 1.51 us (0.4%)
gen split merge : 1.20 us (0.3%)
split / merge op : 0/0
apply split merge : 1.03 us (0.3%)
LB compute : 363.44 us (94.3%)
LB move op cnt : 0
LB apply : 4.42 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.90 us (71.7%)
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 | 7.7905e+05 | 262144 | 1 | 3.365e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.127188146159494 (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 : 6.15 us (1.5%)
patch tree reduce : 1.47 us (0.4%)
gen split merge : 952.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.2%)
LB compute : 376.17 us (94.7%)
LB move op cnt : 0
LB apply : 4.63 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.06 us (71.8%)
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 | 7.8356e+05 | 262144 | 1 | 3.346e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.226233486928226 (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 : 5.90 us (1.4%)
patch tree reduce : 1.41 us (0.3%)
gen split merge : 921.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.05 us (0.2%)
LB compute : 400.49 us (95.2%)
LB move op cnt : 0
LB apply : 3.99 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.83 us (72.3%)
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 | 7.7918e+05 | 262144 | 1 | 3.364e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.129720796014094 (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 : 5.84 us (1.7%)
patch tree reduce : 1.35 us (0.4%)
gen split merge : 921.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 991.00 ns (0.3%)
LB compute : 321.49 us (94.3%)
LB move op cnt : 0
LB apply : 3.90 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.45 us (73.8%)
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 | 7.8685e+05 | 262144 | 1 | 3.332e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.298215835756295 (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.56 us (0.6%)
patch tree reduce : 1.53 us (0.1%)
gen split merge : 942.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 1.15 us (0.1%)
LB compute : 1.04 ms (98.0%)
LB move op cnt : 0
LB apply : 4.46 us (0.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.56 us (75.1%)
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 | 7.0760e+05 | 262144 | 1 | 3.705e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.555786032881704 (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.37 us (1.7%)
patch tree reduce : 1.67 us (0.5%)
gen split merge : 1.17 us (0.3%)
split / merge op : 0/0
apply split merge : 1.13 us (0.3%)
LB compute : 344.48 us (94.2%)
LB move op cnt : 0
LB apply : 4.60 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.00 us (72.4%)
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.8612e+05 | 262144 | 1 | 3.335e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.28192124859836 (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 : 6.23 us (1.7%)
patch tree reduce : 1.42 us (0.4%)
gen split merge : 1.12 us (0.3%)
split / merge op : 0/0
apply split merge : 1.07 us (0.3%)
LB compute : 338.69 us (94.3%)
LB move op cnt : 0
LB apply : 4.68 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.84 us (72.2%)
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 | 7.8223e+05 | 262144 | 1 | 3.351e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.19615242517389 (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.37 us (1.9%)
patch tree reduce : 1.53 us (0.4%)
gen split merge : 972.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.33 us (0.4%)
LB compute : 320.92 us (93.8%)
LB move op cnt : 0
LB apply : 4.03 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 8.82 us (69.3%)
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 | 7.8917e+05 | 262144 | 1 | 3.322e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.348669150130544 (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 : 6.36 us (1.6%)
patch tree reduce : 1.90 us (0.5%)
gen split merge : 1.17 us (0.3%)
split / merge op : 0/0
apply split merge : 902.00 ns (0.2%)
LB compute : 349.01 us (89.4%)
LB move op cnt : 0
LB apply : 24.68 us (6.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.75 us (71.4%)
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 | 7.1655e+05 | 262144 | 1 | 3.658e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.752053362766313 (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 : 6.02 us (1.5%)
patch tree reduce : 1.31 us (0.3%)
gen split merge : 882.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.3%)
LB compute : 374.97 us (95.0%)
LB move op cnt : 0
LB apply : 4.24 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.45 us (71.8%)
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 | 7.4552e+05 | 262144 | 1 | 3.516e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.38871163453988 (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 : 7.06 us (1.8%)
patch tree reduce : 1.65 us (0.4%)
gen split merge : 912.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.3%)
LB compute : 365.36 us (93.9%)
LB move op cnt : 0
LB apply : 5.49 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.66 us (80.9%)
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 | 7.7586e+05 | 262144 | 1 | 3.379e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.05542907159146 (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 : 6.40 us (1.9%)
patch tree reduce : 1.47 us (0.4%)
gen split merge : 1.13 us (0.3%)
split / merge op : 0/0
apply split merge : 1.34 us (0.4%)
LB compute : 318.35 us (94.0%)
LB move op cnt : 0
LB apply : 3.76 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.34 us (67.7%)
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 | 7.4735e+05 | 262144 | 1 | 3.508e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.42853829992565 (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 : 6.65 us (2.1%)
patch tree reduce : 1.48 us (0.5%)
gen split merge : 1.17 us (0.4%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.3%)
LB compute : 303.08 us (93.6%)
LB move op cnt : 0
LB apply : 3.81 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.39 us (59.4%)
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 | 7.7902e+05 | 262144 | 1 | 3.365e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.12460355214981 (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 : 5.74 us (1.5%)
patch tree reduce : 1.34 us (0.4%)
gen split merge : 961.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.17 us (0.3%)
LB compute : 357.61 us (94.7%)
LB move op cnt : 0
LB apply : 4.10 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.79 us (72.8%)
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 | 7.6355e+05 | 262144 | 1 | 3.433e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.784376379422678 (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 : 5.92 us (1.7%)
patch tree reduce : 1.40 us (0.4%)
gen split merge : 871.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.04 us (0.3%)
LB compute : 338.03 us (94.5%)
LB move op cnt : 0
LB apply : 3.84 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.80 us (70.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 | 7.7966e+05 | 262144 | 1 | 3.362e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.13840297586397 (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.13 us (1.8%)
patch tree reduce : 1.67 us (0.5%)
gen split merge : 902.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.08 us (0.3%)
LB compute : 315.75 us (94.0%)
LB move op cnt : 0
LB apply : 4.16 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.30 us (67.6%)
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.7905e+05 | 262144 | 1 | 3.365e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.12483765482147 (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 : 6.66 us (1.6%)
patch tree reduce : 1.51 us (0.4%)
gen split merge : 982.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.09 us (0.3%)
LB compute : 399.53 us (94.9%)
LB move op cnt : 0
LB apply : 4.81 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.41 us (70.4%)
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.4339e+05 | 262144 | 1 | 4.074e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.142547657337955 (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.47 us (1.5%)
patch tree reduce : 1.41 us (0.3%)
gen split merge : 1.05 us (0.2%)
split / merge op : 0/0
apply split merge : 1.02 us (0.2%)
LB compute : 413.96 us (95.2%)
LB move op cnt : 0
LB apply : 4.33 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.14 us (73.3%)
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.7546e+05 | 262144 | 1 | 3.380e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.045506423035825 (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 : 6.29 us (1.7%)
patch tree reduce : 1.85 us (0.5%)
gen split merge : 1.16 us (0.3%)
split / merge op : 0/0
apply split merge : 991.00 ns (0.3%)
LB compute : 355.43 us (94.5%)
LB move op cnt : 0
LB apply : 3.90 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.56 us (69.1%)
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.7761e+05 | 262144 | 1 | 3.371e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.092657267874323 (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 : 6.36 us (1.5%)
patch tree reduce : 1.46 us (0.4%)
gen split merge : 912.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.18 us (0.3%)
LB compute : 390.67 us (95.1%)
LB move op cnt : 0
LB apply : 4.19 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.68 us (72.4%)
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 | 7.7736e+05 | 262144 | 1 | 3.372e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.0869631626294 (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.25 us (1.7%)
patch tree reduce : 1.39 us (0.4%)
gen split merge : 1.00 us (0.3%)
split / merge op : 0/0
apply split merge : 1.03 us (0.3%)
LB compute : 355.41 us (94.6%)
LB move op cnt : 0
LB apply : 4.17 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.27 us (67.1%)
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.7901e+05 | 262144 | 1 | 3.365e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.122896518917802 (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 : 6.87 us (1.8%)
patch tree reduce : 1.35 us (0.4%)
gen split merge : 962.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.09 us (0.3%)
LB compute : 353.10 us (94.4%)
LB move op cnt : 0
LB apply : 3.98 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.75 us (71.4%)
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 | 7.8178e+05 | 262144 | 1 | 3.353e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.183394435902848 (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 : 6.59 us (1.6%)
patch tree reduce : 1.40 us (0.3%)
gen split merge : 912.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.21 us (0.3%)
LB compute : 388.35 us (95.0%)
LB move op cnt : 0
LB apply : 3.97 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.76 us (72.4%)
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 | 7.7852e+05 | 262144 | 1 | 3.367e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.11128917582354 (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 : 6.79 us (1.6%)
patch tree reduce : 1.35 us (0.3%)
gen split merge : 1.14 us (0.3%)
split / merge op : 0/0
apply split merge : 1.01 us (0.2%)
LB compute : 392.19 us (95.0%)
LB move op cnt : 0
LB apply : 4.14 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.37 us (71.9%)
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.7642e+05 | 262144 | 1 | 3.376e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.06488543105081 (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.70 us (1.8%)
patch tree reduce : 1.35 us (0.4%)
gen split merge : 832.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.02 us (0.3%)
LB compute : 349.62 us (94.4%)
LB move op cnt : 0
LB apply : 4.13 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.10 us (74.8%)
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 | 7.7094e+05 | 262144 | 1 | 3.400e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.94389622139636 (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 : 6.43 us (1.7%)
patch tree reduce : 1.45 us (0.4%)
gen split merge : 1.10 us (0.3%)
split / merge op : 0/0
apply split merge : 1.08 us (0.3%)
LB compute : 355.89 us (94.5%)
LB move op cnt : 0
LB apply : 3.96 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.39 us (68.7%)
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 | 6.3999e+05 | 262144 | 1 | 4.096e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.065601786237407 (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 : 6.01 us (1.5%)
patch tree reduce : 1.64 us (0.4%)
gen split merge : 832.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.00 us (0.2%)
LB compute : 381.18 us (95.0%)
LB move op cnt : 0
LB apply : 3.67 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.28 us (70.6%)
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 | 6.4137e+05 | 262144 | 1 | 4.087e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.095562769719692 (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 : 6.09 us (1.7%)
patch tree reduce : 1.39 us (0.4%)
gen split merge : 731.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.01 us (0.3%)
LB compute : 340.90 us (94.6%)
LB move op cnt : 0
LB apply : 3.84 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.47 us (67.8%)
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.2951e+05 | 262144 | 1 | 3.593e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.03243324490721 (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.31 us (1.7%)
patch tree reduce : 1.34 us (0.4%)
gen split merge : 822.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.03 us (0.3%)
LB compute : 349.20 us (94.5%)
LB move op cnt : 0
LB apply : 3.98 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.95 us (73.1%)
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.7569e+05 | 262144 | 1 | 3.379e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.04705556531416 (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 : 7.72 us (2.0%)
patch tree reduce : 1.72 us (0.4%)
gen split merge : 841.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 852.00 ns (0.2%)
LB compute : 366.55 us (94.5%)
LB move op cnt : 0
LB apply : 3.78 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.26 us (67.5%)
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.7459e+05 | 262144 | 1 | 3.384e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.022416597406195 (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 : 6.44 us (1.6%)
patch tree reduce : 1.65 us (0.4%)
gen split merge : 832.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.10 us (0.3%)
LB compute : 379.55 us (94.6%)
LB move op cnt : 0
LB apply : 4.39 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.12 us (73.4%)
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 | 7.7480e+05 | 262144 | 1 | 3.383e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.026729469296903 (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 : 6.07 us (1.5%)
patch tree reduce : 1.59 us (0.4%)
gen split merge : 932.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.40 us (0.4%)
LB compute : 349.59 us (89.1%)
LB move op cnt : 0
LB apply : 26.02 us (6.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.04 us (75.2%)
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 | 7.7590e+05 | 262144 | 1 | 3.379e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.050420464956414 (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 : 6.14 us (1.5%)
patch tree reduce : 1.46 us (0.4%)
gen split merge : 841.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.08 us (0.3%)
LB compute : 395.83 us (95.0%)
LB move op cnt : 0
LB apply : 4.75 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.38 us (76.1%)
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 | 7.3867e+05 | 262144 | 1 | 3.549e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.232054786229725 (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 : 6.82 us (2.0%)
patch tree reduce : 1.72 us (0.5%)
gen split merge : 922.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.11 us (0.3%)
LB compute : 327.20 us (93.8%)
LB move op cnt : 0
LB apply : 3.75 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.24 us (66.9%)
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 | 7.0306e+05 | 262144 | 1 | 3.729e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.449190753354896 (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.55 us (1.8%)
patch tree reduce : 1.73 us (0.5%)
gen split merge : 842.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.3%)
LB compute : 338.33 us (94.2%)
LB move op cnt : 0
LB apply : 3.91 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.55 us (69.4%)
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.8126e+05 | 262144 | 1 | 3.355e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.167239948577805 (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 : 6.41 us (1.6%)
patch tree reduce : 1.66 us (0.4%)
gen split merge : 1.14 us (0.3%)
split / merge op : 0/0
apply split merge : 882.00 ns (0.2%)
LB compute : 368.52 us (94.8%)
LB move op cnt : 0
LB apply : 4.18 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.30 us (68.8%)
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 | 7.6949e+05 | 262144 | 1 | 3.407e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.908313589966866 (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 : 6.45 us (1.8%)
patch tree reduce : 1.64 us (0.5%)
gen split merge : 1.03 us (0.3%)
split / merge op : 0/0
apply split merge : 1.00 us (0.3%)
LB compute : 342.27 us (94.4%)
LB move op cnt : 0
LB apply : 3.72 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.49 us (71.5%)
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.3287e+05 | 262144 | 1 | 3.577e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.103237293516486 (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 : 6.59 us (1.8%)
patch tree reduce : 1.51 us (0.4%)
gen split merge : 982.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.25 us (0.3%)
LB compute : 355.49 us (94.6%)
LB move op cnt : 0
LB apply : 3.62 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.78 us (70.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 | 6.8323e+05 | 262144 | 1 | 3.837e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.012255179429378 (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 : 6.79 us (1.8%)
patch tree reduce : 1.42 us (0.4%)
gen split merge : 1.25 us (0.3%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.3%)
LB compute : 352.50 us (94.2%)
LB move op cnt : 0
LB apply : 4.34 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.89 us (72.9%)
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 | 7.6842e+05 | 262144 | 1 | 3.411e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.883808198972083 (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.09 us (1.8%)
patch tree reduce : 1.34 us (0.4%)
gen split merge : 901.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.11 us (0.3%)
LB compute : 319.01 us (94.1%)
LB move op cnt : 0
LB apply : 4.11 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.01 us (71.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 | 6.4426e+05 | 262144 | 1 | 4.069e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.15550928807823 (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 : 6.46 us (1.7%)
patch tree reduce : 1.37 us (0.4%)
gen split merge : 1.16 us (0.3%)
split / merge op : 0/0
apply split merge : 1.00 us (0.3%)
LB compute : 354.03 us (94.4%)
LB move op cnt : 0
LB apply : 4.49 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.92 us (63.1%)
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 | 6.8514e+05 | 262144 | 1 | 3.826e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.053229061354376 (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.58 us (1.8%)
patch tree reduce : 1.77 us (0.5%)
gen split merge : 921.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 881.00 ns (0.2%)
LB compute : 350.65 us (94.4%)
LB move op cnt : 0
LB apply : 4.10 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.44 us (74.6%)
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 | 7.5812e+05 | 262144 | 1 | 3.458e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.656512029638908 (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.36 us (1.8%)
patch tree reduce : 1.41 us (0.4%)
gen split merge : 1.01 us (0.3%)
split / merge op : 0/0
apply split merge : 1.05 us (0.3%)
LB compute : 336.20 us (94.3%)
LB move op cnt : 0
LB apply : 4.02 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.57 us (73.5%)
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 | 7.2717e+05 | 262144 | 1 | 3.605e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.976078251828085 (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.29 us (1.3%)
patch tree reduce : 1.46 us (0.3%)
gen split merge : 1.05 us (0.2%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.2%)
LB compute : 524.39 us (92.5%)
LB move op cnt : 0
LB apply : 24.99 us (4.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.00 us (72.0%)
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 | 7.3851e+05 | 262144 | 1 | 3.550e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.224831010424182 (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 : 6.21 us (1.6%)
patch tree reduce : 1.32 us (0.3%)
gen split merge : 972.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.34 us (0.3%)
LB compute : 378.98 us (95.0%)
LB move op cnt : 0
LB apply : 4.19 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.96 us (73.9%)
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.6453e+05 | 262144 | 1 | 3.429e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.796261108681808 (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.11 us (1.5%)
patch tree reduce : 1.33 us (0.3%)
gen split merge : 822.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.02 us (0.3%)
LB compute : 385.70 us (94.8%)
LB move op cnt : 0
LB apply : 4.22 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.76 us (72.6%)
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 | 7.6877e+05 | 262144 | 1 | 3.410e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.889123275467345 (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 : 6.66 us (1.8%)
patch tree reduce : 1.58 us (0.4%)
gen split merge : 942.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.09 us (0.3%)
LB compute : 346.12 us (94.1%)
LB move op cnt : 0
LB apply : 5.03 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.73 us (71.4%)
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 | 7.8487e+05 | 262144 | 1 | 3.340e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.242495982884762 (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 : 6.89 us (1.8%)
patch tree reduce : 1.51 us (0.4%)
gen split merge : 1.25 us (0.3%)
split / merge op : 0/0
apply split merge : 1.43 us (0.4%)
LB compute : 370.63 us (94.6%)
LB move op cnt : 0
LB apply : 3.85 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.94 us (74.2%)
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 | 7.8072e+05 | 262144 | 1 | 3.358e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.151080577500167 (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.25 us (1.6%)
patch tree reduce : 1.74 us (0.4%)
gen split merge : 851.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.35 us (0.3%)
LB compute : 377.85 us (94.8%)
LB move op cnt : 0
LB apply : 3.91 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.94 us (74.2%)
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 | 7.8336e+05 | 262144 | 1 | 3.346e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.208621655243864 (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.23 us (1.5%)
patch tree reduce : 1.61 us (0.4%)
gen split merge : 942.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 952.00 ns (0.2%)
LB compute : 387.85 us (94.8%)
LB move op cnt : 0
LB apply : 4.22 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.05 us (73.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 | 7.7354e+05 | 262144 | 1 | 3.389e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.99267785661698 (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 : 5.80 us (1.5%)
patch tree reduce : 1.73 us (0.5%)
gen split merge : 822.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.42 us (0.4%)
LB compute : 354.45 us (94.6%)
LB move op cnt : 0
LB apply : 4.14 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.97 us (72.9%)
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.7665e+05 | 262144 | 1 | 3.375e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11.084473151992807 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 278.45977505900004 (s) [Godunov][rank=0]
Info: dump to _to_trash/ramses_kh/periodic_0010.vtk [VTK Dump][rank=0]
- took 30.82 ms, bandwidth = 1.33 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 : 6.40 us (1.8%)
patch tree reduce : 1.45 us (0.4%)
gen split merge : 881.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.11 us (0.3%)
LB compute : 331.38 us (94.3%)
LB move op cnt : 0
LB apply : 4.04 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.77 us (69.2%)
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 | 7.6136e+05 | 262144 | 1 | 3.443e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.72460755471399 (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.07 us (1.5%)
patch tree reduce : 1.33 us (0.3%)
gen split merge : 911.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.2%)
LB compute : 386.88 us (95.1%)
LB move op cnt : 0
LB apply : 4.22 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.82 us (73.0%)
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 | 7.1060e+05 | 262144 | 1 | 3.689e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.609344973570614 (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.03 us (1.3%)
patch tree reduce : 1.33 us (0.3%)
gen split merge : 1.03 us (0.2%)
split / merge op : 0/0
apply split merge : 1.00 us (0.2%)
LB compute : 448.17 us (95.6%)
LB move op cnt : 0
LB apply : 4.33 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.88 us (66.7%)
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 | 6.4567e+05 | 262144 | 1 | 4.060e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.182767369535012 (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.19 us (1.4%)
patch tree reduce : 1.35 us (0.3%)
gen split merge : 902.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.09 us (0.2%)
LB compute : 425.86 us (95.5%)
LB move op cnt : 0
LB apply : 3.87 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.39 us (70.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 | 7.8577e+05 | 262144 | 1 | 3.336e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.25995538769545 (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.08 us (1.5%)
patch tree reduce : 1.42 us (0.3%)
gen split merge : 821.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.02 us (0.2%)
LB compute : 390.99 us (95.1%)
LB move op cnt : 0
LB apply : 4.14 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.10 us (73.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 | 7.1598e+05 | 262144 | 1 | 3.661e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.72661027450939 (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 : 6.93 us (1.9%)
patch tree reduce : 1.33 us (0.4%)
gen split merge : 932.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.42 us (0.4%)
LB compute : 348.79 us (94.4%)
LB move op cnt : 0
LB apply : 4.28 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.58 us (71.2%)
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 | 7.8373e+05 | 262144 | 1 | 3.345e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.21457446215093 (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 : 6.98 us (2.0%)
patch tree reduce : 1.40 us (0.4%)
gen split merge : 992.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.12 us (0.3%)
LB compute : 332.87 us (93.8%)
LB move op cnt : 0
LB apply : 4.61 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.83 us (70.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 | 7.8896e+05 | 262144 | 1 | 3.323e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.32918151254485 (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.79 us (1.7%)
patch tree reduce : 1.63 us (0.4%)
gen split merge : 912.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.29 us (0.3%)
LB compute : 366.32 us (94.4%)
LB move op cnt : 0
LB apply : 4.85 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.88 us (73.8%)
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 | 7.7760e+05 | 262144 | 1 | 3.371e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.079515557263917 (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 : 7.14 us (1.2%)
patch tree reduce : 1.47 us (0.3%)
gen split merge : 962.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.08 us (0.2%)
LB compute : 562.97 us (96.4%)
LB move op cnt : 0
LB apply : 3.91 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.11 us (76.9%)
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 | 7.4524e+05 | 262144 | 1 | 3.518e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.368417361940296 (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 : 6.17 us (1.7%)
patch tree reduce : 1.55 us (0.4%)
gen split merge : 1.24 us (0.3%)
split / merge op : 0/0
apply split merge : 922.00 ns (0.3%)
LB compute : 343.54 us (94.5%)
LB move op cnt : 0
LB apply : 3.87 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.66 us (71.0%)
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 | 7.8733e+05 | 262144 | 1 | 3.330e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.29259411154824 (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 : 6.04 us (1.6%)
patch tree reduce : 1.71 us (0.5%)
gen split merge : 841.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.02 us (0.3%)
LB compute : 355.53 us (94.6%)
LB move op cnt : 0
LB apply : 3.95 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.08 us (72.9%)
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.0478e+05 | 262144 | 1 | 3.720e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.479254380770971 (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.62 us (1.7%)
patch tree reduce : 1.35 us (0.3%)
gen split merge : 821.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.41 us (0.4%)
LB compute : 367.35 us (94.5%)
LB move op cnt : 0
LB apply : 4.37 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.45 us (76.1%)
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 | 7.8405e+05 | 262144 | 1 | 3.343e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.220068561345467 (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 : 6.19 us (1.8%)
patch tree reduce : 1.45 us (0.4%)
gen split merge : 971.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.14 us (0.3%)
LB compute : 319.05 us (94.1%)
LB move op cnt : 0
LB apply : 4.11 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.61 us (69.6%)
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 | 7.4542e+05 | 262144 | 1 | 3.517e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.37155413685972 (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 : 5.58 us (1.7%)
patch tree reduce : 1.75 us (0.5%)
gen split merge : 841.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.01 us (0.3%)
LB compute : 306.20 us (94.1%)
LB move op cnt : 0
LB apply : 3.81 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.03 us (74.0%)
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 | 7.3032e+05 | 262144 | 1 | 3.589e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.039696973114285 (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 : 5.85 us (1.6%)
patch tree reduce : 1.80 us (0.5%)
gen split merge : 982.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.13 us (0.3%)
LB compute : 351.02 us (94.4%)
LB move op cnt : 0
LB apply : 4.46 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.92 us (72.8%)
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 | 6.8499e+05 | 262144 | 1 | 3.827e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.043914467500977 (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 : 6.10 us (1.6%)
patch tree reduce : 1.37 us (0.4%)
gen split merge : 821.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.09 us (0.3%)
LB compute : 350.30 us (94.4%)
LB move op cnt : 0
LB apply : 4.88 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.46 us (72.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.7527e+05 | 262144 | 1 | 3.381e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.02641711626431 (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 : 6.79 us (1.9%)
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.00 us (0.3%)
LB compute : 344.28 us (94.3%)
LB move op cnt : 0
LB apply : 3.81 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.56 us (72.3%)
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 | 7.2972e+05 | 262144 | 1 | 3.592e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.025688289555838 (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 : 5.88 us (1.6%)
patch tree reduce : 1.52 us (0.4%)
gen split merge : 922.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.01 us (0.3%)
LB compute : 357.85 us (94.7%)
LB move op cnt : 0
LB apply : 4.34 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.86 us (71.3%)
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 | 7.7642e+05 | 262144 | 1 | 3.376e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.05118625008744 (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 : 6.32 us (1.7%)
patch tree reduce : 1.78 us (0.5%)
gen split merge : 932.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.3%)
LB compute : 352.85 us (94.4%)
LB move op cnt : 0
LB apply : 4.32 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.07 us (74.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 | 7.8030e+05 | 262144 | 1 | 3.360e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.136118378617713 (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 : 6.55 us (1.9%)
patch tree reduce : 1.55 us (0.4%)
gen split merge : 842.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.01 us (0.3%)
LB compute : 333.80 us (94.3%)
LB move op cnt : 0
LB apply : 3.90 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.66 us (72.4%)
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 | 7.4961e+05 | 262144 | 1 | 3.497e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.461861936477646 (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.15 us (1.6%)
patch tree reduce : 1.74 us (0.5%)
gen split merge : 812.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.02 us (0.3%)
LB compute : 360.00 us (94.6%)
LB move op cnt : 0
LB apply : 4.06 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.69 us (71.1%)
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 | 7.0364e+05 | 262144 | 1 | 3.726e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.452179342566989 (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.39 us (1.6%)
patch tree reduce : 1.46 us (0.4%)
gen split merge : 931.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.10 us (0.3%)
LB compute : 373.59 us (94.8%)
LB move op cnt : 0
LB apply : 4.19 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.92 us (73.1%)
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 | 7.8897e+05 | 262144 | 1 | 3.323e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.325834153851645 (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.11 us (1.6%)
patch tree reduce : 1.41 us (0.4%)
gen split merge : 1.13 us (0.3%)
split / merge op : 0/0
apply split merge : 1.05 us (0.3%)
LB compute : 350.42 us (94.5%)
LB move op cnt : 0
LB apply : 4.36 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.44 us (73.9%)
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 | 7.1630e+05 | 262144 | 1 | 3.660e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.729646081846019 (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.19 us (1.5%)
patch tree reduce : 1.37 us (0.3%)
gen split merge : 851.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.04 us (0.3%)
LB compute : 388.33 us (95.1%)
LB move op cnt : 0
LB apply : 3.99 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.54 us (72.1%)
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 | 6.9647e+05 | 262144 | 1 | 3.764e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.293951014963644 (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 : 5.96 us (1.6%)
patch tree reduce : 1.36 us (0.4%)
gen split merge : 932.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 981.00 ns (0.3%)
LB compute : 357.26 us (94.8%)
LB move op cnt : 0
LB apply : 3.63 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.26 us (72.9%)
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.0129e+05 | 262144 | 1 | 3.272e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.595710839576178 (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 : 6.56 us (1.6%)
patch tree reduce : 1.35 us (0.3%)
gen split merge : 841.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.09 us (0.3%)
LB compute : 389.46 us (95.0%)
LB move op cnt : 0
LB apply : 4.42 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.58 us (70.0%)
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 | 7.0438e+05 | 262144 | 1 | 3.722e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.467415576880745 (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 : 6.35 us (1.4%)
patch tree reduce : 1.89 us (0.4%)
gen split merge : 832.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 881.00 ns (0.2%)
LB compute : 406.95 us (90.7%)
LB move op cnt : 0
LB apply : 4.06 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.44 us (72.7%)
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 | 7.9811e+05 | 262144 | 1 | 3.285e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.52520482531726 (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 : 6.13 us (1.7%)
patch tree reduce : 2.00 us (0.6%)
gen split merge : 982.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.09 us (0.3%)
LB compute : 336.38 us (94.4%)
LB move op cnt : 0
LB apply : 3.70 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.23 us (69.2%)
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 | 7.3931e+05 | 262144 | 1 | 3.546e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.23391356613103 (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 : 6.33 us (1.9%)
patch tree reduce : 1.34 us (0.4%)
gen split merge : 812.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.11 us (0.3%)
LB compute : 318.61 us (94.1%)
LB move op cnt : 0
LB apply : 3.87 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.70 us (71.4%)
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 | 7.8201e+05 | 262144 | 1 | 3.352e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.171386062404263 (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 : 6.35 us (1.6%)
patch tree reduce : 1.34 us (0.3%)
gen split merge : 1.07 us (0.3%)
split / merge op : 0/0
apply split merge : 1.11 us (0.3%)
LB compute : 387.45 us (95.0%)
LB move op cnt : 0
LB apply : 4.41 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.56 us (70.4%)
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 | 7.8551e+05 | 262144 | 1 | 3.337e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.247912993633115 (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.31 us (1.6%)
patch tree reduce : 1.41 us (0.4%)
gen split merge : 912.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 892.00 ns (0.2%)
LB compute : 377.28 us (95.0%)
LB move op cnt : 0
LB apply : 3.89 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.69 us (71.7%)
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 | 6.9864e+05 | 262144 | 1 | 3.752e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.340178328085937 (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 : 6.28 us (1.9%)
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.10 us (0.3%)
LB compute : 308.24 us (93.8%)
LB move op cnt : 0
LB apply : 3.86 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.50 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 | 6.7943e+05 | 262144 | 1 | 3.858e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.918279905685099 (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.64 us (1.9%)
patch tree reduce : 1.77 us (0.5%)
gen split merge : 851.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.13 us (0.3%)
LB compute : 331.15 us (94.0%)
LB move op cnt : 0
LB apply : 4.32 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.27 us (72.4%)
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 | 6.0237e+05 | 262144 | 1 | 4.352e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.226053015482371 (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 : 6.47 us (1.8%)
patch tree reduce : 1.34 us (0.4%)
gen split merge : 831.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.04 us (0.3%)
LB compute : 342.00 us (94.5%)
LB move op cnt : 0
LB apply : 4.08 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.48 us (69.8%)
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 | 7.1786e+05 | 262144 | 1 | 3.652e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.761574712505697 (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 : 6.21 us (1.8%)
patch tree reduce : 1.43 us (0.4%)
gen split merge : 862.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.06 us (0.3%)
LB compute : 319.17 us (94.2%)
LB move op cnt : 0
LB apply : 3.92 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.37 us (73.5%)
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 | 6.6677e+05 | 262144 | 1 | 3.932e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.6397142488857 (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.35 us (1.9%)
patch tree reduce : 1.33 us (0.4%)
gen split merge : 911.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.00 us (0.3%)
LB compute : 311.75 us (94.0%)
LB move op cnt : 0
LB apply : 4.07 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.64 us (70.3%)
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 | 7.9323e+05 | 262144 | 1 | 3.305e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.415919950174253 (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 : 6.76 us (1.7%)
patch tree reduce : 1.35 us (0.3%)
gen split merge : 1.28 us (0.3%)
split / merge op : 0/0
apply split merge : 1.11 us (0.3%)
LB compute : 375.68 us (94.7%)
LB move op cnt : 0
LB apply : 3.92 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.76 us (72.6%)
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.9266e+05 | 262144 | 1 | 3.307e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.403177206385585 (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.41 us (1.8%)
patch tree reduce : 1.44 us (0.4%)
gen split merge : 1.15 us (0.3%)
split / merge op : 0/0
apply split merge : 1.10 us (0.3%)
LB compute : 341.28 us (94.0%)
LB move op cnt : 0
LB apply : 4.24 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.91 us (71.8%)
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 | 6.7191e+05 | 262144 | 1 | 3.901e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.751950371349285 (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 : 5.90 us (1.7%)
patch tree reduce : 1.42 us (0.4%)
gen split merge : 931.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.08 us (0.3%)
LB compute : 323.93 us (94.4%)
LB move op cnt : 0
LB apply : 3.58 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.45 us (68.0%)
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 | 7.5415e+05 | 262144 | 1 | 3.476e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.557260190020898 (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.39 us (1.8%)
patch tree reduce : 1.74 us (0.5%)
gen split merge : 872.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.3%)
LB compute : 344.57 us (94.4%)
LB move op cnt : 0
LB apply : 4.10 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.52 us (71.6%)
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 | 7.4238e+05 | 262144 | 1 | 3.531e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.29856543761737 (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 : 6.13 us (1.5%)
patch tree reduce : 1.49 us (0.4%)
gen split merge : 932.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.11 us (0.3%)
LB compute : 384.15 us (95.0%)
LB move op cnt : 0
LB apply : 4.31 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.99 us (74.5%)
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 | 7.8916e+05 | 262144 | 1 | 3.322e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.325301008753797 (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 : 6.52 us (1.7%)
patch tree reduce : 1.45 us (0.4%)
gen split merge : 821.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.13 us (0.3%)
LB compute : 355.99 us (94.7%)
LB move op cnt : 0
LB apply : 3.75 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.68 us (71.6%)
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.8484e+05 | 262144 | 1 | 3.340e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.230249078130548 (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 : 6.04 us (1.6%)
patch tree reduce : 1.46 us (0.4%)
gen split merge : 862.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.07 us (0.3%)
LB compute : 346.20 us (89.4%)
LB move op cnt : 0
LB apply : 4.03 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.43 us (75.7%)
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.2467e+05 | 262144 | 1 | 3.617e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.909021547086239 (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 : 5.77 us (1.5%)
patch tree reduce : 1.75 us (0.5%)
gen split merge : 832.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.17 us (0.3%)
LB compute : 369.59 us (95.0%)
LB move op cnt : 0
LB apply : 3.92 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.74 us (72.6%)
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 | 7.4919e+05 | 262144 | 1 | 3.499e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.44719970483277 (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.48 us (1.6%)
patch tree reduce : 1.82 us (0.5%)
gen split merge : 972.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 952.00 ns (0.2%)
LB compute : 376.88 us (94.6%)
LB move op cnt : 0
LB apply : 4.63 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.63 us (67.2%)
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 | 7.9611e+05 | 262144 | 1 | 3.293e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.47692751837484 (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 : 6.32 us (1.8%)
patch tree reduce : 1.66 us (0.5%)
gen split merge : 832.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.09 us (0.3%)
LB compute : 328.76 us (94.0%)
LB move op cnt : 0
LB apply : 4.17 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.47 us (72.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 | 6.9185e+05 | 262144 | 1 | 3.789e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.187869933856785 (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.02 us (1.6%)
patch tree reduce : 1.38 us (0.4%)
gen split merge : 841.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.09 us (0.3%)
LB compute : 363.53 us (94.8%)
LB move op cnt : 0
LB apply : 4.53 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.14 us (73.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 | 7.5374e+05 | 262144 | 1 | 3.478e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.54639067103302 (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 : 6.25 us (1.4%)
patch tree reduce : 1.81 us (0.4%)
gen split merge : 1.18 us (0.3%)
split / merge op : 0/0
apply split merge : 1.01 us (0.2%)
LB compute : 414.40 us (95.3%)
LB move op cnt : 0
LB apply : 3.97 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.83 us (74.6%)
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 | 7.0012e+05 | 262144 | 1 | 3.744e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.369045184714125 (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.34 us (1.9%)
patch tree reduce : 1.32 us (0.4%)
gen split merge : 921.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.00 us (0.3%)
LB compute : 309.92 us (93.9%)
LB move op cnt : 0
LB apply : 3.77 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.28 us (71.7%)
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 | 7.4286e+05 | 262144 | 1 | 3.529e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.30687495718124 (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.03 us (1.6%)
patch tree reduce : 1.78 us (0.5%)
gen split merge : 942.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.07 us (0.3%)
LB compute : 345.57 us (94.2%)
LB move op cnt : 0
LB apply : 4.48 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.17 us (78.6%)
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.5943e+05 | 262144 | 1 | 3.452e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.67056776080668 (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.14 us (1.7%)
patch tree reduce : 1.55 us (0.4%)
gen split merge : 951.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.02 us (0.3%)
LB compute : 340.48 us (94.5%)
LB move op cnt : 0
LB apply : 3.80 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.62 us (69.6%)
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 | 6.9170e+05 | 262144 | 1 | 3.790e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.183399448582767 (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.41 us (1.8%)
patch tree reduce : 1.44 us (0.4%)
gen split merge : 922.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.23 us (0.3%)
LB compute : 331.56 us (94.1%)
LB move op cnt : 0
LB apply : 4.44 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.91 us (72.9%)
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.9196e+05 | 262144 | 1 | 3.310e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.38399420940606 (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.81 us (2.0%)
patch tree reduce : 1.46 us (0.4%)
gen split merge : 982.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 872.00 ns (0.2%)
LB compute : 327.72 us (93.8%)
LB move op cnt : 0
LB apply : 4.13 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.24 us (76.4%)
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.4708e+05 | 262144 | 1 | 3.509e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.398527851550142 (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.22 us (1.8%)
patch tree reduce : 1.50 us (0.4%)
gen split merge : 831.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 892.00 ns (0.3%)
LB compute : 329.79 us (94.3%)
LB move op cnt : 0
LB apply : 3.72 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.63 us (71.6%)
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 | 6.9978e+05 | 262144 | 1 | 3.746e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.3601075849499 (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 : 6.69 us (1.9%)
patch tree reduce : 1.82 us (0.5%)
gen split merge : 841.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 981.00 ns (0.3%)
LB compute : 337.68 us (94.2%)
LB move op cnt : 0
LB apply : 3.95 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.83 us (73.6%)
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 | 7.4034e+05 | 262144 | 1 | 3.541e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.250131546291207 (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 : 6.73 us (2.0%)
patch tree reduce : 1.42 us (0.4%)
gen split merge : 852.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.32 us (0.4%)
LB compute : 307.60 us (93.6%)
LB move op cnt : 0
LB apply : 3.79 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.02 us (68.1%)
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 | 7.6113e+05 | 262144 | 1 | 3.444e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.70623413485753 (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 : 6.27 us (1.6%)
patch tree reduce : 1.48 us (0.4%)
gen split merge : 871.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.3%)
LB compute : 363.43 us (94.8%)
LB move op cnt : 0
LB apply : 3.74 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.75 us (73.7%)
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 | 7.8196e+05 | 262144 | 1 | 3.352e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.163126349482393 (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 : 6.14 us (1.5%)
patch tree reduce : 1.63 us (0.4%)
gen split merge : 832.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.03 us (0.3%)
LB compute : 376.85 us (95.0%)
LB move op cnt : 0
LB apply : 3.85 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.15 us (73.0%)
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 | 7.8553e+05 | 262144 | 1 | 3.337e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.241150910266597 (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.68 us (1.8%)
patch tree reduce : 1.35 us (0.4%)
gen split merge : 931.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.23 us (0.3%)
LB compute : 341.69 us (94.4%)
LB move op cnt : 0
LB apply : 3.81 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.10 us (67.1%)
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.8404e+05 | 262144 | 1 | 3.343e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.208249440844124 (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 : 6.19 us (1.6%)
patch tree reduce : 1.54 us (0.4%)
gen split merge : 1.05 us (0.3%)
split / merge op : 0/0
apply split merge : 861.00 ns (0.2%)
LB compute : 365.21 us (94.6%)
LB move op cnt : 0
LB apply : 4.36 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.74 us (73.4%)
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.6986e+05 | 262144 | 1 | 3.405e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.896646408703763 (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 : 5.80 us (1.7%)
patch tree reduce : 1.50 us (0.4%)
gen split merge : 811.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.10 us (0.3%)
LB compute : 313.60 us (93.8%)
LB move op cnt : 0
LB apply : 4.63 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.40 us (72.9%)
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.3322e+05 | 262144 | 1 | 3.575e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.092356329470036 (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.00 us (1.7%)
patch tree reduce : 1.32 us (0.4%)
gen split merge : 832.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.07 us (0.3%)
LB compute : 340.47 us (94.5%)
LB move op cnt : 0
LB apply : 3.80 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.51 us (69.1%)
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 | 7.0205e+05 | 262144 | 1 | 3.734e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.407904925122184 (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.08 us (1.5%)
patch tree reduce : 1.43 us (0.4%)
gen split merge : 931.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.2%)
LB compute : 382.59 us (95.0%)
LB move op cnt : 0
LB apply : 4.36 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.55 us (69.6%)
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.2969e+05 | 262144 | 1 | 3.593e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.014445776669746 (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 : 5.91 us (1.4%)
patch tree reduce : 1.44 us (0.3%)
gen split merge : 931.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 892.00 ns (0.2%)
LB compute : 411.40 us (95.4%)
LB move op cnt : 0
LB apply : 4.00 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.87 us (71.0%)
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.8327e+05 | 262144 | 1 | 3.347e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.18988570606048 (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.18 us (1.6%)
patch tree reduce : 1.56 us (0.4%)
gen split merge : 911.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.08 us (0.3%)
LB compute : 372.30 us (94.8%)
LB move op cnt : 0
LB apply : 3.93 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.87 us (72.4%)
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 | 7.8383e+05 | 262144 | 1 | 3.344e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.201864775249465 (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 : 6.69 us (1.7%)
patch tree reduce : 1.48 us (0.4%)
gen split merge : 1.31 us (0.3%)
split / merge op : 0/0
apply split merge : 891.00 ns (0.2%)
LB compute : 372.87 us (94.7%)
LB move op cnt : 0
LB apply : 4.14 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.42 us (67.8%)
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.7693e+05 | 262144 | 1 | 3.374e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.050258663008 (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.98 us (2.1%)
patch tree reduce : 1.55 us (0.5%)
gen split merge : 1.02 us (0.3%)
split / merge op : 0/0
apply split merge : 902.00 ns (0.3%)
LB compute : 314.24 us (93.7%)
LB move op cnt : 0
LB apply : 4.03 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.85 us (68.9%)
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 | 7.8312e+05 | 262144 | 1 | 3.347e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.1857466723694 (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 : 6.51 us (1.9%)
patch tree reduce : 1.49 us (0.4%)
gen split merge : 1.12 us (0.3%)
split / merge op : 0/0
apply split merge : 1.00 us (0.3%)
LB compute : 326.81 us (94.2%)
LB move op cnt : 0
LB apply : 3.73 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.14 us (69.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 | 7.0395e+05 | 262144 | 1 | 3.724e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.448102099132178 (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 : 6.33 us (1.7%)
patch tree reduce : 1.45 us (0.4%)
gen split merge : 922.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.07 us (0.3%)
LB compute : 358.05 us (94.6%)
LB move op cnt : 0
LB apply : 4.06 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.68 us (71.4%)
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 | 7.4457e+05 | 262144 | 1 | 3.521e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.338993687129076 (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 : 6.90 us (2.1%)
patch tree reduce : 1.73 us (0.5%)
gen split merge : 1.08 us (0.3%)
split / merge op : 0/0
apply split merge : 1.23 us (0.4%)
LB compute : 308.04 us (93.4%)
LB move op cnt : 0
LB apply : 4.06 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.33 us (64.7%)
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 | 7.7587e+05 | 262144 | 1 | 3.379e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.025676341664457 (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.54 us (1.9%)
patch tree reduce : 1.83 us (0.5%)
gen split merge : 882.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.17 us (0.3%)
LB compute : 321.09 us (93.9%)
LB move op cnt : 0
LB apply : 3.58 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.33 us (71.7%)
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 | 7.8231e+05 | 262144 | 1 | 3.351e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.16674316642866 (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 : 6.61 us (1.8%)
patch tree reduce : 1.42 us (0.4%)
gen split merge : 942.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.3%)
LB compute : 346.95 us (94.5%)
LB move op cnt : 0
LB apply : 3.70 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.68 us (70.6%)
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 | 7.8394e+05 | 262144 | 1 | 3.344e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.202062680519496 (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 : 6.20 us (1.7%)
patch tree reduce : 1.42 us (0.4%)
gen split merge : 811.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.10 us (0.3%)
LB compute : 352.49 us (94.5%)
LB move op cnt : 0
LB apply : 4.30 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.78 us (70.3%)
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 | 6.9513e+05 | 262144 | 1 | 3.771e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.253061598088829 (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 : 6.13 us (1.8%)
patch tree reduce : 1.41 us (0.4%)
gen split merge : 942.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.01 us (0.3%)
LB compute : 316.39 us (94.1%)
LB move op cnt : 0
LB apply : 4.10 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.59 us (70.4%)
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 | 7.4863e+05 | 262144 | 1 | 3.502e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.426721472708977 (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 : 5.85 us (1.3%)
patch tree reduce : 1.41 us (0.3%)
gen split merge : 952.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.05 us (0.2%)
LB compute : 416.58 us (95.4%)
LB move op cnt : 0
LB apply : 3.74 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.27 us (75.8%)
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 | 7.8038e+05 | 262144 | 1 | 3.359e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.123119972532038 (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 : 7.14 us (1.9%)
patch tree reduce : 1.53 us (0.4%)
gen split merge : 852.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.25 us (0.3%)
LB compute : 346.04 us (94.2%)
LB move op cnt : 0
LB apply : 4.16 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.67 us (71.9%)
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.7805e+05 | 262144 | 1 | 3.369e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.071586015854265 (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.66 us (1.7%)
patch tree reduce : 1.70 us (0.4%)
gen split merge : 972.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.06 us (0.3%)
LB compute : 374.35 us (94.8%)
LB move op cnt : 0
LB apply : 4.01 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.79 us (72.0%)
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.4657e+05 | 262144 | 1 | 3.511e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.380640924432324 (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.19 us (1.6%)
patch tree reduce : 1.72 us (0.4%)
gen split merge : 822.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.40 us (0.4%)
LB compute : 372.59 us (94.9%)
LB move op cnt : 0
LB apply : 3.72 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.77 us (73.6%)
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 | 7.8225e+05 | 262144 | 1 | 3.351e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.163207562931415 (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.78 us (1.8%)
patch tree reduce : 1.38 us (0.4%)
gen split merge : 831.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.09 us (0.3%)
LB compute : 347.41 us (94.4%)
LB move op cnt : 0
LB apply : 3.68 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.08 us (67.5%)
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.8186e+05 | 262144 | 1 | 3.353e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.154333042745083 (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 : 5.91 us (1.4%)
patch tree reduce : 1.44 us (0.3%)
gen split merge : 1.13 us (0.3%)
split / merge op : 0/0
apply split merge : 1.29 us (0.3%)
LB compute : 400.75 us (95.2%)
LB move op cnt : 0
LB apply : 4.02 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.51 us (68.1%)
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 | 7.8300e+05 | 262144 | 1 | 3.348e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.17920045619661 (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 : 6.30 us (1.5%)
patch tree reduce : 1.43 us (0.3%)
gen split merge : 922.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.22 us (0.3%)
LB compute : 394.59 us (95.0%)
LB move op cnt : 0
LB apply : 4.31 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.86 us (72.2%)
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 | 7.8192e+05 | 262144 | 1 | 3.353e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.15525326480198 (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 : 6.11 us (1.7%)
patch tree reduce : 1.44 us (0.4%)
gen split merge : 831.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.3%)
LB compute : 334.34 us (94.3%)
LB move op cnt : 0
LB apply : 4.58 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.73 us (71.4%)
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 | 7.9166e+05 | 262144 | 1 | 3.311e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.36852941834046 (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 : 6.45 us (1.7%)
patch tree reduce : 1.71 us (0.5%)
gen split merge : 811.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 872.00 ns (0.2%)
LB compute : 358.31 us (94.6%)
LB move op cnt : 0
LB apply : 4.05 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.84 us (72.9%)
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.3144e+05 | 262144 | 1 | 3.584e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12.107966832441374 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 308.17159512300003 (s) [Godunov][rank=0]
Info: dump to _to_trash/ramses_kh/periodic_0011.vtk [VTK Dump][rank=0]
- took 30.86 ms, bandwidth = 1.33 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 : 6.49 us (1.9%)
patch tree reduce : 1.39 us (0.4%)
gen split merge : 822.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.01 us (0.3%)
LB compute : 325.15 us (94.1%)
LB move op cnt : 0
LB apply : 3.89 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.25 us (67.0%)
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.4634e+05 | 262144 | 1 | 3.512e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.373966857096637 (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 : 6.18 us (1.6%)
patch tree reduce : 1.47 us (0.4%)
gen split merge : 822.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 872.00 ns (0.2%)
LB compute : 357.69 us (94.7%)
LB move op cnt : 0
LB apply : 4.12 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.89 us (72.0%)
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.1648e+05 | 262144 | 1 | 3.659e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.718634149461165 (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.05 us (1.7%)
patch tree reduce : 1.31 us (0.4%)
gen split merge : 891.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.3%)
LB compute : 329.12 us (94.5%)
LB move op cnt : 0
LB apply : 3.95 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.39 us (70.5%)
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 | 7.9249e+05 | 262144 | 1 | 3.308e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.38575674275734 (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.39 us (1.5%)
patch tree reduce : 1.39 us (0.3%)
gen split merge : 951.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.07 us (0.3%)
LB compute : 394.28 us (95.2%)
LB move op cnt : 0
LB apply : 3.98 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.08 us (67.8%)
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 | 7.8160e+05 | 262144 | 1 | 3.354e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.146585080722193 (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.13 us (1.5%)
patch tree reduce : 1.70 us (0.4%)
gen split merge : 852.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.04 us (0.3%)
LB compute : 388.52 us (95.0%)
LB move op cnt : 0
LB apply : 4.19 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.01 us (73.0%)
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 | 7.9014e+05 | 262144 | 1 | 3.318e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.333811427339164 (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 : 6.35 us (1.8%)
patch tree reduce : 1.45 us (0.4%)
gen split merge : 862.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.12 us (0.3%)
LB compute : 330.71 us (94.2%)
LB move op cnt : 0
LB apply : 3.95 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.41 us (71.7%)
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 | 7.9054e+05 | 262144 | 1 | 3.316e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.342200167700753 (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.38 us (1.9%)
patch tree reduce : 1.41 us (0.4%)
gen split merge : 871.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.23 us (0.4%)
LB compute : 322.31 us (94.1%)
LB move op cnt : 0
LB apply : 3.97 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.35 us (67.8%)
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 | 7.1489e+05 | 262144 | 1 | 3.667e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.682537651212028 (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 : 6.25 us (1.7%)
patch tree reduce : 1.38 us (0.4%)
gen split merge : 982.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.01 us (0.3%)
LB compute : 351.17 us (94.7%)
LB move op cnt : 0
LB apply : 3.64 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.42 us (76.8%)
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 | 6.9702e+05 | 262144 | 1 | 3.761e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.290186907018198 (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 : 6.57 us (1.9%)
patch tree reduce : 1.57 us (0.5%)
gen split merge : 931.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 991.00 ns (0.3%)
LB compute : 317.90 us (94.1%)
LB move op cnt : 0
LB apply : 3.75 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.97 us (66.2%)
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 | 7.9162e+05 | 262144 | 1 | 3.311e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.365289141733395 (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.26 us (1.6%)
patch tree reduce : 1.35 us (0.3%)
gen split merge : 841.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.39 us (0.4%)
LB compute : 375.52 us (94.7%)
LB move op cnt : 0
LB apply : 4.26 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.73 us (72.8%)
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 | 7.0307e+05 | 262144 | 1 | 3.729e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.422497432827068 (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 : 6.68 us (1.9%)
patch tree reduce : 1.17 us (0.3%)
gen split merge : 491.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 922.00 ns (0.3%)
LB compute : 330.80 us (94.5%)
LB move op cnt : 0
LB apply : 3.98 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.70 us (71.5%)
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 | 7.9303e+05 | 262144 | 1 | 3.306e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.395655048992168 (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 : 6.76 us (2.0%)
patch tree reduce : 1.64 us (0.5%)
gen split merge : 922.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 852.00 ns (0.3%)
LB compute : 320.00 us (93.9%)
LB move op cnt : 0
LB apply : 3.99 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.55 us (71.5%)
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 | 7.3598e+05 | 262144 | 1 | 3.562e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.14403192610668 (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.01 us (1.7%)
patch tree reduce : 1.81 us (0.5%)
gen split merge : 832.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.21 us (0.3%)
LB compute : 335.09 us (94.5%)
LB move op cnt : 0
LB apply : 3.68 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.67 us (68.7%)
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 | 7.8698e+05 | 262144 | 1 | 3.331e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.26241073862205 (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 : 5.46 us (1.3%)
patch tree reduce : 1.36 us (0.3%)
gen split merge : 791.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 812.00 ns (0.2%)
LB compute : 401.63 us (95.6%)
LB move op cnt : 0
LB apply : 4.01 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.89 us (72.5%)
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 | 6.8417e+05 | 262144 | 1 | 3.832e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.007130871667883 (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.29 us (1.6%)
patch tree reduce : 1.60 us (0.4%)
gen split merge : 1.09 us (0.3%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.2%)
LB compute : 384.48 us (95.0%)
LB move op cnt : 0
LB apply : 4.03 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.93 us (73.0%)
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 | 7.7542e+05 | 262144 | 1 | 3.381e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.008386448773248 (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 : 6.37 us (1.6%)
patch tree reduce : 1.52 us (0.4%)
gen split merge : 931.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.09 us (0.3%)
LB compute : 373.35 us (94.7%)
LB move op cnt : 0
LB apply : 4.26 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.63 us (70.4%)
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 | 7.9307e+05 | 262144 | 1 | 3.305e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.395430415694115 (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 : 5.78 us (1.5%)
patch tree reduce : 1.26 us (0.3%)
gen split merge : 501.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 1.06 us (0.3%)
LB compute : 357.15 us (95.0%)
LB move op cnt : 0
LB apply : 4.22 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.89 us (70.1%)
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 | 6.5010e+05 | 262144 | 1 | 4.032e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.259113979671744 (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 : 6.89 us (1.9%)
patch tree reduce : 1.40 us (0.4%)
gen split merge : 971.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.40 us (0.4%)
LB compute : 346.99 us (94.3%)
LB move op cnt : 0
LB apply : 3.76 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.83 us (74.0%)
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 | 7.0618e+05 | 262144 | 1 | 3.712e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.48899233236447 (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 : 7.34 us (1.5%)
patch tree reduce : 1.36 us (0.3%)
gen split merge : 831.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.12 us (0.2%)
LB compute : 474.23 us (95.6%)
LB move op cnt : 0
LB apply : 4.37 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.99 us (73.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 | 7.6651e+05 | 262144 | 1 | 3.420e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.812022153300347 (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.03 us (1.6%)
patch tree reduce : 1.49 us (0.4%)
gen split merge : 972.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.3%)
LB compute : 349.76 us (94.6%)
LB move op cnt : 0
LB apply : 4.35 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.79 us (69.7%)
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.6245e+05 | 262144 | 1 | 3.438e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.72282653847441 (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.42 us (1.7%)
patch tree reduce : 1.40 us (0.4%)
gen split merge : 1.15 us (0.3%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.3%)
LB compute : 351.11 us (94.3%)
LB move op cnt : 0
LB apply : 4.63 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.25 us (74.0%)
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.3261e+05 | 262144 | 1 | 3.578e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.068052733444766 (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.28 us (1.6%)
patch tree reduce : 1.60 us (0.4%)
gen split merge : 802.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.10 us (0.3%)
LB compute : 369.53 us (94.7%)
LB move op cnt : 0
LB apply : 4.20 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.23 us (69.2%)
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 | 7.8653e+05 | 262144 | 1 | 3.333e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.250489865275263 (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 : 6.93 us (1.8%)
patch tree reduce : 1.56 us (0.4%)
gen split merge : 822.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.10 us (0.3%)
LB compute : 365.24 us (94.5%)
LB move op cnt : 0
LB apply : 4.54 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.34 us (75.7%)
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 | 7.8350e+05 | 262144 | 1 | 3.346e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.183599552970122 (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 : 7.01 us (1.8%)
patch tree reduce : 1.30 us (0.3%)
gen split merge : 912.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.11 us (0.3%)
LB compute : 360.94 us (94.6%)
LB move op cnt : 0
LB apply : 3.81 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.40 us (66.8%)
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.5522e+05 | 262144 | 1 | 3.471e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.56322436021583 (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.88 us (1.8%)
patch tree reduce : 1.54 us (0.4%)
gen split merge : 952.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.3%)
LB compute : 362.15 us (94.5%)
LB move op cnt : 0
LB apply : 4.40 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.29 us (71.6%)
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 | 7.8313e+05 | 262144 | 1 | 3.347e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.17508373666492 (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.65 us (1.8%)
patch tree reduce : 1.42 us (0.4%)
gen split merge : 962.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.3%)
LB compute : 357.25 us (94.5%)
LB move op cnt : 0
LB apply : 4.32 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.00 us (68.0%)
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 | 7.8063e+05 | 262144 | 1 | 3.358e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.119877341710556 (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 : 5.78 us (1.5%)
patch tree reduce : 1.35 us (0.3%)
gen split merge : 1.08 us (0.3%)
split / merge op : 0/0
apply split merge : 1.32 us (0.3%)
LB compute : 377.45 us (94.8%)
LB move op cnt : 0
LB apply : 4.28 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.89 us (72.9%)
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 | 7.8763e+05 | 262144 | 1 | 3.328e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.27317742735282 (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 : 6.27 us (1.3%)
patch tree reduce : 1.45 us (0.3%)
gen split merge : 842.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.39 us (0.3%)
LB compute : 464.55 us (95.8%)
LB move op cnt : 0
LB apply : 4.29 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.25 us (74.1%)
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 | 7.5897e+05 | 262144 | 1 | 3.454e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.644363938887203 (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.30 us (1.7%)
patch tree reduce : 1.27 us (0.3%)
gen split merge : 822.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.03 us (0.3%)
LB compute : 344.11 us (94.5%)
LB move op cnt : 0
LB apply : 3.89 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.23 us (72.0%)
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 | 7.8467e+05 | 262144 | 1 | 3.341e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.207646859990707 (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 : 5.80 us (1.5%)
patch tree reduce : 1.43 us (0.4%)
gen split merge : 811.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.2%)
LB compute : 377.56 us (95.0%)
LB move op cnt : 0
LB apply : 4.18 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.80 us (71.5%)
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 | 7.5424e+05 | 262144 | 1 | 3.476e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.540154285784272 (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 : 5.85 us (1.4%)
patch tree reduce : 1.43 us (0.4%)
gen split merge : 1.20 us (0.3%)
split / merge op : 0/0
apply split merge : 1.13 us (0.3%)
LB compute : 388.02 us (95.0%)
LB move op cnt : 0
LB apply : 4.22 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.91 us (69.9%)
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 | 7.9734e+05 | 262144 | 1 | 3.288e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.484921978147234 (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.34 us (1.6%)
patch tree reduce : 1.34 us (0.3%)
gen split merge : 842.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.27 us (0.3%)
LB compute : 370.27 us (94.7%)
LB move op cnt : 0
LB apply : 4.09 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.69 us (70.0%)
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.8669e+05 | 262144 | 1 | 3.332e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.251050124129158 (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.73 us (1.8%)
patch tree reduce : 1.34 us (0.4%)
gen split merge : 1.02 us (0.3%)
split / merge op : 0/0
apply split merge : 991.00 ns (0.3%)
LB compute : 350.30 us (94.5%)
LB move op cnt : 0
LB apply : 4.03 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.34 us (74.0%)
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 | 7.3381e+05 | 262144 | 1 | 3.572e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.091240637507404 (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 : 27.91 us (6.5%)
patch tree reduce : 1.45 us (0.3%)
gen split merge : 962.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.13 us (0.3%)
LB compute : 389.60 us (90.3%)
LB move op cnt : 0
LB apply : 4.32 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.50 us (70.8%)
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 | 7.8420e+05 | 262144 | 1 | 3.343e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.195736607964317 (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.70 us (1.7%)
patch tree reduce : 1.55 us (0.4%)
gen split merge : 841.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.07 us (0.3%)
LB compute : 371.73 us (94.6%)
LB move op cnt : 0
LB apply : 4.50 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.54 us (72.6%)
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 | 7.8900e+05 | 262144 | 1 | 3.322e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.300804294969286 (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 : 6.46 us (1.7%)
patch tree reduce : 1.42 us (0.4%)
gen split merge : 852.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.30 us (0.3%)
LB compute : 353.28 us (94.4%)
LB move op cnt : 0
LB apply : 4.04 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.55 us (71.3%)
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 | 7.6802e+05 | 262144 | 1 | 3.413e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.84044304768182 (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.26 us (1.6%)
patch tree reduce : 1.40 us (0.3%)
gen split merge : 1.04 us (0.3%)
split / merge op : 0/0
apply split merge : 1.00 us (0.2%)
LB compute : 380.67 us (94.8%)
LB move op cnt : 0
LB apply : 4.16 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.27 us (75.5%)
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 | 7.9001e+05 | 262144 | 1 | 3.318e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.322194601030663 (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.16 us (1.5%)
patch tree reduce : 1.47 us (0.4%)
gen split merge : 1.12 us (0.3%)
split / merge op : 0/0
apply split merge : 1.12 us (0.3%)
LB compute : 389.21 us (95.0%)
LB move op cnt : 0
LB apply : 4.16 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.88 us (70.2%)
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 | 7.8744e+05 | 262144 | 1 | 3.329e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.26545023366736 (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.46 us (1.7%)
patch tree reduce : 1.50 us (0.4%)
gen split merge : 1.03 us (0.3%)
split / merge op : 0/0
apply split merge : 1.33 us (0.3%)
LB compute : 363.26 us (94.4%)
LB move op cnt : 0
LB apply : 4.51 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.69 us (70.3%)
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 | 7.8917e+05 | 262144 | 1 | 3.322e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.3031192872846 (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.26 us (1.5%)
patch tree reduce : 1.34 us (0.3%)
gen split merge : 912.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.12 us (0.3%)
LB compute : 396.89 us (95.1%)
LB move op cnt : 0
LB apply : 4.40 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.03 us (71.5%)
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 | 7.2720e+05 | 262144 | 1 | 3.605e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.944043131831744 (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.14 us (1.6%)
patch tree reduce : 1.30 us (0.3%)
gen split merge : 832.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.00 us (0.3%)
LB compute : 363.01 us (94.8%)
LB move op cnt : 0
LB apply : 4.28 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.00 us (70.4%)
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 | 7.4496e+05 | 262144 | 1 | 3.519e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.332892483100093 (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.38 us (1.5%)
patch tree reduce : 1.36 us (0.3%)
gen split merge : 902.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.14 us (0.3%)
LB compute : 398.99 us (95.2%)
LB move op cnt : 0
LB apply : 3.98 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.70 us (71.5%)
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 | 7.2931e+05 | 262144 | 1 | 3.594e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.989608996530617 (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.08 us (1.6%)
patch tree reduce : 1.36 us (0.4%)
gen split merge : 822.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.10 us (0.3%)
LB compute : 363.55 us (94.9%)
LB move op cnt : 0
LB apply : 3.95 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.54 us (73.2%)
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 | 7.9760e+05 | 262144 | 1 | 3.287e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.48626372089152 (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 : 5.95 us (1.4%)
patch tree reduce : 1.44 us (0.4%)
gen split merge : 811.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 991.00 ns (0.2%)
LB compute : 391.41 us (95.1%)
LB move op cnt : 0
LB apply : 4.35 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.04 us (69.0%)
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 | 7.2664e+05 | 262144 | 1 | 3.608e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.93021301601951 (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 : 6.44 us (1.8%)
patch tree reduce : 1.35 us (0.4%)
gen split merge : 842.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.44 us (0.4%)
LB compute : 340.99 us (94.4%)
LB move op cnt : 0
LB apply : 4.07 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.95 us (71.4%)
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 | 7.8697e+05 | 262144 | 1 | 3.331e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.252529430181923 (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.01 us (1.5%)
patch tree reduce : 1.33 us (0.3%)
gen split merge : 832.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.26 us (0.3%)
LB compute : 391.67 us (95.2%)
LB move op cnt : 0
LB apply : 3.88 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.77 us (70.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 | 7.8209e+05 | 262144 | 1 | 3.352e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.14516694012304 (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.63 us (1.7%)
patch tree reduce : 1.33 us (0.3%)
gen split merge : 1.00 us (0.3%)
split / merge op : 0/0
apply split merge : 1.06 us (0.3%)
LB compute : 379.92 us (94.9%)
LB move op cnt : 0
LB apply : 3.93 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.14 us (71.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 | 7.5997e+05 | 262144 | 1 | 3.449e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.65966306099566 (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.56 us (1.6%)
patch tree reduce : 1.61 us (0.4%)
gen split merge : 961.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.07 us (0.3%)
LB compute : 400.45 us (95.1%)
LB move op cnt : 0
LB apply : 4.18 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.04 us (48.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.4155e+05 | 262144 | 1 | 4.086e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.063551906059038 (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.74 us (1.7%)
patch tree reduce : 1.65 us (0.4%)
gen split merge : 831.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.05 us (0.3%)
LB compute : 369.03 us (94.6%)
LB move op cnt : 0
LB apply : 4.50 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.87 us (71.3%)
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 | 6.4216e+05 | 262144 | 1 | 4.082e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.076500825366598 (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.42 us (1.8%)
patch tree reduce : 1.71 us (0.5%)
gen split merge : 961.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.03 us (0.3%)
LB compute : 339.90 us (94.3%)
LB move op cnt : 0
LB apply : 4.05 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.47 us (68.0%)
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 | 6.9878e+05 | 262144 | 1 | 3.751e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.317296403702626 (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.02 us (1.7%)
patch tree reduce : 1.61 us (0.5%)
gen split merge : 931.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.04 us (0.3%)
LB compute : 330.71 us (94.2%)
LB move op cnt : 0
LB apply : 4.26 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.56 us (71.1%)
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 | 7.1089e+05 | 262144 | 1 | 3.688e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.582409549384485 (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 : 6.60 us (1.7%)
patch tree reduce : 1.69 us (0.4%)
gen split merge : 851.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.3%)
LB compute : 360.80 us (94.5%)
LB move op cnt : 0
LB apply : 4.49 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.21 us (74.6%)
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 | 6.9898e+05 | 262144 | 1 | 3.750e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.320887224884826 (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 : 5.99 us (1.8%)
patch tree reduce : 1.37 us (0.4%)
gen split merge : 902.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.11 us (0.3%)
LB compute : 310.41 us (94.0%)
LB move op cnt : 0
LB apply : 4.15 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.54 us (70.9%)
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 | 7.8875e+05 | 262144 | 1 | 3.324e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.288163970704264 (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 : 7.09 us (1.6%)
patch tree reduce : 1.58 us (0.4%)
gen split merge : 982.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.13 us (0.3%)
LB compute : 426.15 us (95.0%)
LB move op cnt : 0
LB apply : 4.14 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.17 us (74.2%)
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 | 7.9262e+05 | 262144 | 1 | 3.307e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.372557289285293 (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 : 6.26 us (1.5%)
patch tree reduce : 1.74 us (0.4%)
gen split merge : 912.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.10 us (0.3%)
LB compute : 392.66 us (94.9%)
LB move op cnt : 0
LB apply : 4.35 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.95 us (71.5%)
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.2015e+05 | 262144 | 1 | 3.640e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.783613249565093 (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.43 us (1.5%)
patch tree reduce : 1.34 us (0.3%)
gen split merge : 802.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.02 us (0.2%)
LB compute : 395.14 us (95.0%)
LB move op cnt : 0
LB apply : 4.11 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.23 us (76.3%)
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.5508e+05 | 262144 | 1 | 3.472e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.548720726580605 (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.61 us (1.8%)
patch tree reduce : 1.42 us (0.4%)
gen split merge : 921.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.02 us (0.3%)
LB compute : 337.81 us (94.4%)
LB move op cnt : 0
LB apply : 3.71 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.01 us (73.0%)
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 | 7.3433e+05 | 262144 | 1 | 3.570e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.093607640532134 (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 : 28.36 us (7.7%)
patch tree reduce : 1.53 us (0.4%)
gen split merge : 1.05 us (0.3%)
split / merge op : 0/0
apply split merge : 952.00 ns (0.3%)
LB compute : 326.70 us (88.5%)
LB move op cnt : 0
LB apply : 3.76 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.60 us (71.2%)
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 | 7.6954e+05 | 262144 | 1 | 3.407e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.864793492440878 (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.26 us (1.5%)
patch tree reduce : 1.54 us (0.4%)
gen split merge : 852.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.33 us (0.3%)
LB compute : 402.92 us (95.1%)
LB move op cnt : 0
LB apply : 4.13 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.33 us (76.1%)
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.4228e+05 | 262144 | 1 | 3.532e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.267032747626818 (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.29 us (1.7%)
patch tree reduce : 1.36 us (0.4%)
gen split merge : 831.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.13 us (0.3%)
LB compute : 359.64 us (94.8%)
LB move op cnt : 0
LB apply : 4.04 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.62 us (70.7%)
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 | 7.4779e+05 | 262144 | 1 | 3.506e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.38745864813485 (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.44 us (1.6%)
patch tree reduce : 1.54 us (0.4%)
gen split merge : 801.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.3%)
LB compute : 376.55 us (95.0%)
LB move op cnt : 0
LB apply : 3.88 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.47 us (71.0%)
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 | 7.9705e+05 | 262144 | 1 | 3.289e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.46637611217682 (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.54 us (1.7%)
patch tree reduce : 1.38 us (0.4%)
gen split merge : 951.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.29 us (0.3%)
LB compute : 373.21 us (94.7%)
LB move op cnt : 0
LB apply : 4.45 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.86 us (70.8%)
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 | 7.8416e+05 | 262144 | 1 | 3.343e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.183552145030056 (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 : 7.00 us (1.8%)
patch tree reduce : 1.45 us (0.4%)
gen split merge : 822.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 861.00 ns (0.2%)
LB compute : 362.53 us (94.5%)
LB move op cnt : 0
LB apply : 4.00 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.52 us (68.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.6261e+05 | 262144 | 1 | 3.437e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.710882469147307 (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.52 us (1.7%)
patch tree reduce : 1.74 us (0.5%)
gen split merge : 1.28 us (0.3%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.3%)
LB compute : 361.38 us (94.7%)
LB move op cnt : 0
LB apply : 3.95 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.75 us (69.7%)
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.9174e+05 | 262144 | 1 | 3.311e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.348785532693032 (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 : 5.70 us (1.3%)
patch tree reduce : 1.39 us (0.3%)
gen split merge : 982.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.2%)
LB compute : 413.31 us (95.5%)
LB move op cnt : 0
LB apply : 4.21 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.98 us (73.3%)
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 | 7.9436e+05 | 262144 | 1 | 3.300e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.40571827636942 (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.33 us (2.0%)
patch tree reduce : 1.34 us (0.4%)
gen split merge : 922.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.02 us (0.3%)
LB compute : 339.49 us (94.1%)
LB move op cnt : 0
LB apply : 3.94 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.69 us (71.8%)
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.6869e+05 | 262144 | 1 | 3.410e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.842741190166144 (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.63 us (1.9%)
patch tree reduce : 1.75 us (0.5%)
gen split merge : 882.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.15 us (0.3%)
LB compute : 334.39 us (94.3%)
LB move op cnt : 0
LB apply : 3.57 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.47 us (70.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 | 7.7382e+05 | 262144 | 1 | 3.388e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.954835220000337 (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.07 us (1.8%)
patch tree reduce : 1.42 us (0.4%)
gen split merge : 1.00 us (0.3%)
split / merge op : 0/0
apply split merge : 1.23 us (0.4%)
LB compute : 314.75 us (93.9%)
LB move op cnt : 0
LB apply : 3.89 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.89 us (69.9%)
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 | 7.2534e+05 | 262144 | 1 | 3.614e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.892300313018431 (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 : 5.96 us (1.5%)
patch tree reduce : 1.51 us (0.4%)
gen split merge : 982.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.00 us (0.3%)
LB compute : 368.36 us (95.0%)
LB move op cnt : 0
LB apply : 3.86 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.74 us (72.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 | 6.9053e+05 | 262144 | 1 | 3.796e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.129090932967435 (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.68 us (1.7%)
patch tree reduce : 1.55 us (0.4%)
gen split merge : 942.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.3%)
LB compute : 361.88 us (94.7%)
LB move op cnt : 0
LB apply : 3.94 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.89 us (73.1%)
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.6248e+05 | 262144 | 1 | 3.438e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.705066866643435 (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.50 us (1.9%)
patch tree reduce : 1.35 us (0.4%)
gen split merge : 942.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.34 us (0.4%)
LB compute : 318.72 us (94.0%)
LB move op cnt : 0
LB apply : 3.80 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.43 us (70.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.3690e+05 | 262144 | 1 | 3.557e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.144402145034967 (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.07 us (1.8%)
patch tree reduce : 1.75 us (0.5%)
gen split merge : 841.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.3%)
LB compute : 325.97 us (94.3%)
LB move op cnt : 0
LB apply : 3.86 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.28 us (69.1%)
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.4553e+05 | 262144 | 1 | 3.516e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.33314831041832 (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 : 5.89 us (1.7%)
patch tree reduce : 1.35 us (0.4%)
gen split merge : 921.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.3%)
LB compute : 319.01 us (94.4%)
LB move op cnt : 0
LB apply : 3.78 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.19 us (73.4%)
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 | 7.5466e+05 | 262144 | 1 | 3.474e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.53267922914139 (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.30 us (1.8%)
patch tree reduce : 1.58 us (0.5%)
gen split merge : 902.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.02 us (0.3%)
LB compute : 328.15 us (94.3%)
LB move op cnt : 0
LB apply : 3.84 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.63 us (69.9%)
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.5388e+05 | 262144 | 1 | 3.477e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.51517110408728 (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 : 5.90 us (1.6%)
patch tree reduce : 1.30 us (0.4%)
gen split merge : 842.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 801.00 ns (0.2%)
LB compute : 349.27 us (94.7%)
LB move op cnt : 0
LB apply : 4.17 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.87 us (73.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.9590e+05 | 262144 | 1 | 3.294e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.43533264849992 (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 : 6.01 us (1.5%)
patch tree reduce : 1.33 us (0.3%)
gen split merge : 1.28 us (0.3%)
split / merge op : 0/0
apply split merge : 1.00 us (0.3%)
LB compute : 374.29 us (94.9%)
LB move op cnt : 0
LB apply : 4.20 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.20 us (74.7%)
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.8079e+05 | 262144 | 1 | 3.357e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.10407768168552 (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 : 6.89 us (1.7%)
patch tree reduce : 1.46 us (0.4%)
gen split merge : 1.10 us (0.3%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.2%)
LB compute : 377.46 us (94.5%)
LB move op cnt : 0
LB apply : 4.45 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.66 us (72.8%)
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 | 7.7609e+05 | 262144 | 1 | 3.378e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.00068095501994 (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 : 6.28 us (1.6%)
patch tree reduce : 1.51 us (0.4%)
gen split merge : 1.15 us (0.3%)
split / merge op : 0/0
apply split merge : 1.10 us (0.3%)
LB compute : 378.82 us (94.9%)
LB move op cnt : 0
LB apply : 3.84 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.70 us (69.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.7696e+05 | 262144 | 1 | 3.374e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.0193935727586 (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 : 6.28 us (1.6%)
patch tree reduce : 1.88 us (0.5%)
gen split merge : 872.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.02 us (0.3%)
LB compute : 367.27 us (94.5%)
LB move op cnt : 0
LB apply : 4.40 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.87 us (71.5%)
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 | 7.5136e+05 | 262144 | 1 | 3.489e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.45833318992464 (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 : 6.27 us (1.6%)
patch tree reduce : 1.50 us (0.4%)
gen split merge : 922.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 931.00 ns (0.2%)
LB compute : 380.43 us (95.1%)
LB move op cnt : 0
LB apply : 3.69 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.73 us (74.5%)
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 | 7.4973e+05 | 262144 | 1 | 3.496e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.422300517131276 (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.35 us (1.7%)
patch tree reduce : 1.33 us (0.3%)
gen split merge : 1.29 us (0.3%)
split / merge op : 0/0
apply split merge : 1.01 us (0.3%)
LB compute : 362.27 us (94.7%)
LB move op cnt : 0
LB apply : 4.06 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.33 us (75.4%)
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.1562e+05 | 262144 | 1 | 3.663e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.674754368103644 (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.28 us (1.8%)
patch tree reduce : 1.37 us (0.4%)
gen split merge : 911.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.00 us (0.3%)
LB compute : 331.13 us (94.4%)
LB move op cnt : 0
LB apply : 3.86 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.76 us (71.4%)
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 | 7.1344e+05 | 262144 | 1 | 3.674e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.626759466781694 (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.49 us (2.0%)
patch tree reduce : 1.51 us (0.5%)
gen split merge : 1.01 us (0.3%)
split / merge op : 0/0
apply split merge : 1.02 us (0.3%)
LB compute : 302.41 us (93.5%)
LB move op cnt : 0
LB apply : 4.19 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.78 us (73.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.4827e+05 | 262144 | 1 | 3.503e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.272078891245643 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 337.612936395 (s) [Godunov][rank=0]
Info: dump to _to_trash/ramses_kh/periodic_0012.vtk [VTK Dump][rank=0]
- took 33.52 ms, bandwidth = 1.22 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 : 6.21 us (1.5%)
patch tree reduce : 1.50 us (0.4%)
gen split merge : 922.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.08 us (0.3%)
LB compute : 380.92 us (95.0%)
LB move op cnt : 0
LB apply : 3.89 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.24 us (67.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 | 6.3782e+05 | 262144 | 1 | 4.110e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.969805831412561 (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 : 7.79 us (1.8%)
patch tree reduce : 1.64 us (0.4%)
gen split merge : 952.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.00 us (0.2%)
LB compute : 406.60 us (94.7%)
LB move op cnt : 0
LB apply : 4.22 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.14 us (71.8%)
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 | 7.9258e+05 | 262144 | 1 | 3.307e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.359080974765288 (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 : 6.93 us (1.7%)
patch tree reduce : 1.44 us (0.4%)
gen split merge : 1.15 us (0.3%)
split / merge op : 0/0
apply split merge : 952.00 ns (0.2%)
LB compute : 383.87 us (94.7%)
LB move op cnt : 0
LB apply : 3.95 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.17 us (72.0%)
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 | 7.7193e+05 | 262144 | 1 | 3.396e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.906539313931322 (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.19 us (1.8%)
patch tree reduce : 1.36 us (0.4%)
gen split merge : 942.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.00 us (0.3%)
LB compute : 323.42 us (94.2%)
LB move op cnt : 0
LB apply : 4.26 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.40 us (73.2%)
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.1309e+05 | 262144 | 1 | 3.676e-01 | 0.0% | 0.3% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.617685186928483 (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.23 us (1.9%)
patch tree reduce : 1.40 us (0.4%)
gen split merge : 801.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.10 us (0.3%)
LB compute : 316.58 us (94.0%)
LB move op cnt : 0
LB apply : 3.79 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.24 us (68.4%)
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 | 7.8203e+05 | 262144 | 1 | 3.352e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.127191173280327 (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 : 5.66 us (1.4%)
patch tree reduce : 1.30 us (0.3%)
gen split merge : 972.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.35 us (0.3%)
LB compute : 383.80 us (94.9%)
LB move op cnt : 0
LB apply : 4.28 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.25 us (76.4%)
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 | 6.7883e+05 | 262144 | 1 | 3.862e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.866742021911948 (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 : 6.52 us (1.8%)
patch tree reduce : 1.57 us (0.4%)
gen split merge : 842.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.08 us (0.3%)
LB compute : 345.10 us (94.3%)
LB move op cnt : 0
LB apply : 3.95 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.46 us (70.6%)
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 | 7.4091e+05 | 262144 | 1 | 3.538e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.226117390209264 (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.69 us (1.9%)
patch tree reduce : 1.42 us (0.4%)
gen split merge : 962.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.3%)
LB compute : 329.35 us (94.1%)
LB move op cnt : 0
LB apply : 3.87 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.46 us (72.5%)
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 | 7.8365e+05 | 262144 | 1 | 3.345e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.161812042391166 (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 : 5.65 us (1.6%)
patch tree reduce : 1.43 us (0.4%)
gen split merge : 842.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.3%)
LB compute : 331.05 us (94.3%)
LB move op cnt : 0
LB apply : 3.91 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.41 us (68.2%)
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 | 7.9151e+05 | 262144 | 1 | 3.312e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.333629320749402 (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 : 6.26 us (1.5%)
patch tree reduce : 1.47 us (0.4%)
gen split merge : 842.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 851.00 ns (0.2%)
LB compute : 390.39 us (95.1%)
LB move op cnt : 0
LB apply : 4.24 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.65 us (71.7%)
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 | 7.8049e+05 | 262144 | 1 | 3.359e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.092085493372 (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 : 6.60 us (1.0%)
patch tree reduce : 1.58 us (0.2%)
gen split merge : 841.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 912.00 ns (0.1%)
LB compute : 612.71 us (96.6%)
LB move op cnt : 0
LB apply : 4.18 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.03 us (73.5%)
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 | 6.9284e+05 | 262144 | 1 | 3.784e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.172396579787126 (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 : 6.09 us (1.4%)
patch tree reduce : 1.40 us (0.3%)
gen split merge : 921.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 971.00 ns (0.2%)
LB compute : 419.52 us (95.6%)
LB move op cnt : 0
LB apply : 4.11 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.72 us (67.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 | 6.7454e+05 | 262144 | 1 | 3.886e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.771407449844695 (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 : 5.99 us (1.4%)
patch tree reduce : 1.57 us (0.4%)
gen split merge : 812.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.31 us (0.3%)
LB compute : 406.04 us (95.0%)
LB move op cnt : 0
LB apply : 4.25 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.73 us (70.9%)
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 | 7.5667e+05 | 262144 | 1 | 3.464e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.56965598569532 (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.21 us (1.7%)
patch tree reduce : 1.31 us (0.4%)
gen split merge : 912.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.02 us (0.3%)
LB compute : 336.41 us (94.2%)
LB move op cnt : 0
LB apply : 4.37 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.49 us (72.2%)
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.4807e+05 | 262144 | 1 | 3.504e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.381069382101796 (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 : 6.09 us (1.7%)
patch tree reduce : 1.46 us (0.4%)
gen split merge : 892.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.3%)
LB compute : 344.10 us (94.5%)
LB move op cnt : 0
LB apply : 4.15 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.32 us (67.6%)
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 | 6.7548e+05 | 262144 | 1 | 3.881e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.791264061132631 (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.29 us (1.4%)
patch tree reduce : 1.68 us (0.4%)
gen split merge : 1.18 us (0.3%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.2%)
LB compute : 417.37 us (95.2%)
LB move op cnt : 0
LB apply : 4.57 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.84 us (71.5%)
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.8762e+05 | 262144 | 1 | 3.328e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.246563732577595 (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 : 5.82 us (1.4%)
patch tree reduce : 1.64 us (0.4%)
gen split merge : 842.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.02 us (0.2%)
LB compute : 402.37 us (95.2%)
LB move op cnt : 0
LB apply : 3.95 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.64 us (71.7%)
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 | 7.8515e+05 | 262144 | 1 | 3.339e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.192071695246163 (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 : 5.94 us (1.6%)
patch tree reduce : 1.44 us (0.4%)
gen split merge : 932.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.28 us (0.3%)
LB compute : 362.81 us (94.7%)
LB move op cnt : 0
LB apply : 4.24 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.60 us (71.2%)
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.8077e+05 | 262144 | 1 | 3.358e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.095856987143456 (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.71 us (2.0%)
patch tree reduce : 1.66 us (0.5%)
gen split merge : 841.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 922.00 ns (0.3%)
LB compute : 317.77 us (93.8%)
LB move op cnt : 0
LB apply : 4.03 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.49 us (69.1%)
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 | 6.9629e+05 | 262144 | 1 | 3.765e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.245799174013909 (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.13 us (1.9%)
patch tree reduce : 1.52 us (0.4%)
gen split merge : 982.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.3%)
LB compute : 358.11 us (94.2%)
LB move op cnt : 0
LB apply : 4.10 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.07 us (73.6%)
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 | 7.3935e+05 | 262144 | 1 | 3.546e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.18837504999234 (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 : 6.09 us (1.7%)
patch tree reduce : 2.05 us (0.6%)
gen split merge : 831.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 902.00 ns (0.3%)
LB compute : 338.87 us (94.3%)
LB move op cnt : 0
LB apply : 4.24 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.52 us (69.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.2303e+05 | 262144 | 1 | 3.626e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.830774351938713 (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 : 5.88 us (1.6%)
patch tree reduce : 1.51 us (0.4%)
gen split merge : 912.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.16 us (0.3%)
LB compute : 348.67 us (94.6%)
LB move op cnt : 0
LB apply : 4.27 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.93 us (73.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 | 7.8984e+05 | 262144 | 1 | 3.319e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.293183582579175 (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 : 5.67 us (1.6%)
patch tree reduce : 1.49 us (0.4%)
gen split merge : 831.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.10 us (0.3%)
LB compute : 339.63 us (94.5%)
LB move op cnt : 0
LB apply : 4.08 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.62 us (71.5%)
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 | 7.4116e+05 | 262144 | 1 | 3.537e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.227024705924514 (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 : 6.01 us (1.6%)
patch tree reduce : 1.60 us (0.4%)
gen split merge : 841.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.09 us (0.3%)
LB compute : 349.97 us (94.4%)
LB move op cnt : 0
LB apply : 4.19 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.75 us (70.3%)
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.3892e+05 | 262144 | 1 | 3.548e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.177635982627294 (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.61 us (2.0%)
patch tree reduce : 1.57 us (0.5%)
gen split merge : 1.23 us (0.4%)
split / merge op : 0/0
apply split merge : 912.00 ns (0.3%)
LB compute : 311.34 us (93.7%)
LB move op cnt : 0
LB apply : 4.14 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.42 us (69.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 | 7.0532e+05 | 262144 | 1 | 3.717e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.441792160003038 (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 : 6.74 us (1.9%)
patch tree reduce : 1.46 us (0.4%)
gen split merge : 821.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 872.00 ns (0.3%)
LB compute : 326.85 us (94.1%)
LB move op cnt : 0
LB apply : 4.21 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.40 us (68.8%)
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 | 7.6736e+05 | 262144 | 1 | 3.416e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.799592213961308 (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.64 us (1.8%)
patch tree reduce : 1.42 us (0.4%)
gen split merge : 1.17 us (0.3%)
split / merge op : 0/0
apply split merge : 952.00 ns (0.3%)
LB compute : 354.34 us (94.6%)
LB move op cnt : 0
LB apply : 3.59 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.21 us (66.7%)
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 | 7.5016e+05 | 262144 | 1 | 3.494e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.422943458882234 (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 : 6.21 us (1.6%)
patch tree reduce : 1.60 us (0.4%)
gen split merge : 921.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 862.00 ns (0.2%)
LB compute : 373.69 us (94.9%)
LB move op cnt : 0
LB apply : 3.87 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.89 us (73.7%)
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 | 7.0097e+05 | 262144 | 1 | 3.740e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.345567989878338 (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.59 us (1.7%)
patch tree reduce : 1.69 us (0.4%)
gen split merge : 962.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 871.00 ns (0.2%)
LB compute : 369.35 us (94.7%)
LB move op cnt : 0
LB apply : 3.69 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.15 us (69.3%)
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 | 7.8590e+05 | 262144 | 1 | 3.336e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.2046218169329 (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 : 7.12 us (1.9%)
patch tree reduce : 1.45 us (0.4%)
gen split merge : 1.01 us (0.3%)
split / merge op : 0/0
apply split merge : 892.00 ns (0.2%)
LB compute : 345.46 us (94.3%)
LB move op cnt : 0
LB apply : 3.84 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.17 us (66.8%)
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 | 7.5300e+05 | 262144 | 1 | 3.481e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.484071882681803 (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 : 6.95 us (1.9%)
patch tree reduce : 1.52 us (0.4%)
gen split merge : 1.21 us (0.3%)
split / merge op : 0/0
apply split merge : 862.00 ns (0.2%)
LB compute : 349.71 us (94.4%)
LB move op cnt : 0
LB apply : 3.89 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.01 us (69.0%)
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 | 7.2512e+05 | 262144 | 1 | 3.615e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.873543940066424 (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.08 us (1.8%)
patch tree reduce : 1.53 us (0.5%)
gen split merge : 882.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.3%)
LB compute : 311.91 us (94.0%)
LB move op cnt : 0
LB apply : 4.36 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.17 us (66.8%)
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 | 7.6727e+05 | 262144 | 1 | 3.417e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.795961550994054 (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.40 us (1.7%)
patch tree reduce : 1.78 us (0.5%)
gen split merge : 1.16 us (0.3%)
split / merge op : 0/0
apply split merge : 941.00 ns (0.2%)
LB compute : 365.43 us (94.6%)
LB move op cnt : 0
LB apply : 3.84 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.26 us (70.2%)
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 | 7.3045e+05 | 262144 | 1 | 3.589e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.989650779927643 (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 : 5.87 us (1.7%)
patch tree reduce : 1.69 us (0.5%)
gen split merge : 831.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 952.00 ns (0.3%)
LB compute : 323.13 us (94.1%)
LB move op cnt : 0
LB apply : 4.03 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.91 us (69.4%)
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 | 7.3033e+05 | 262144 | 1 | 3.589e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.986554575960744 (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.32 us (1.7%)
patch tree reduce : 1.40 us (0.4%)
gen split merge : 972.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.27 us (0.3%)
LB compute : 343.50 us (94.4%)
LB move op cnt : 0
LB apply : 4.33 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.60 us (69.9%)
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 | 6.8378e+05 | 262144 | 1 | 3.834e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.967341744697194 (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.34 us (1.9%)
patch tree reduce : 1.56 us (0.5%)
gen split merge : 871.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 911.00 ns (0.3%)
LB compute : 311.13 us (93.9%)
LB move op cnt : 0
LB apply : 4.11 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.30 us (73.8%)
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 | 6.3189e+05 | 262144 | 1 | 4.149e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.83118616201216 (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 : 6.43 us (1.7%)
patch tree reduce : 1.68 us (0.4%)
gen split merge : 841.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.11 us (0.3%)
LB compute : 357.89 us (94.7%)
LB move op cnt : 0
LB apply : 3.60 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.77 us (71.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 | 7.9499e+05 | 262144 | 1 | 3.297e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.4010153686465 (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.17 us (1.7%)
patch tree reduce : 1.41 us (0.4%)
gen split merge : 842.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 872.00 ns (0.2%)
LB compute : 340.35 us (94.4%)
LB move op cnt : 0
LB apply : 4.25 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.99 us (72.7%)
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 | 7.5520e+05 | 262144 | 1 | 3.471e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.529802029325 (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.13 us (1.8%)
patch tree reduce : 1.48 us (0.4%)
gen split merge : 922.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.12 us (0.3%)
LB compute : 315.01 us (93.9%)
LB move op cnt : 0
LB apply : 3.88 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.56 us (68.4%)
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 | 6.9854e+05 | 262144 | 1 | 3.753e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.289170975449471 (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 : 6.19 us (1.6%)
patch tree reduce : 1.43 us (0.4%)
gen split merge : 912.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.00 us (0.3%)
LB compute : 358.71 us (94.8%)
LB move op cnt : 0
LB apply : 4.03 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.88 us (74.0%)
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 | 7.2930e+05 | 262144 | 1 | 3.594e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.96222724679737 (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 : 6.60 us (1.9%)
patch tree reduce : 1.75 us (0.5%)
gen split merge : 831.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.07 us (0.3%)
LB compute : 323.63 us (93.9%)
LB move op cnt : 0
LB apply : 4.58 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.04 us (70.5%)
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 | 7.4324e+05 | 262144 | 1 | 3.527e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.266983693230863 (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 : 6.10 us (1.6%)
patch tree reduce : 1.61 us (0.4%)
gen split merge : 1.05 us (0.3%)
split / merge op : 0/0
apply split merge : 1.01 us (0.3%)
LB compute : 361.13 us (94.7%)
LB move op cnt : 0
LB apply : 3.72 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.79 us (70.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 | 7.6301e+05 | 262144 | 1 | 3.436e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.699351716127524 (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.08 us (1.9%)
patch tree reduce : 1.33 us (0.4%)
gen split merge : 972.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.11 us (0.3%)
LB compute : 307.98 us (93.9%)
LB move op cnt : 0
LB apply : 4.08 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.35 us (65.8%)
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 | 7.7297e+05 | 262144 | 1 | 3.391e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.916802459475416 (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 : 5.92 us (1.6%)
patch tree reduce : 1.58 us (0.4%)
gen split merge : 842.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 872.00 ns (0.2%)
LB compute : 362.06 us (94.9%)
LB move op cnt : 0
LB apply : 3.99 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.46 us (72.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 | 7.9277e+05 | 262144 | 1 | 3.307e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.349785038677684 (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 : 6.35 us (1.6%)
patch tree reduce : 1.70 us (0.4%)
gen split merge : 842.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.2%)
LB compute : 380.59 us (94.7%)
LB move op cnt : 0
LB apply : 3.98 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.10 us (73.9%)
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 | 7.6578e+05 | 262144 | 1 | 3.423e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.758777081432775 (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 : 6.12 us (1.9%)
patch tree reduce : 1.44 us (0.4%)
gen split merge : 1.24 us (0.4%)
split / merge op : 0/0
apply split merge : 1.03 us (0.3%)
LB compute : 307.71 us (93.8%)
LB move op cnt : 0
LB apply : 3.93 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.94 us (69.4%)
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 | 7.6614e+05 | 262144 | 1 | 3.422e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.766251643193577 (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 : 6.59 us (1.8%)
patch tree reduce : 1.45 us (0.4%)
gen split merge : 912.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 892.00 ns (0.2%)
LB compute : 347.43 us (94.4%)
LB move op cnt : 0
LB apply : 4.06 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.98 us (66.5%)
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 | 7.4978e+05 | 262144 | 1 | 3.496e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.40768207897449 (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.37 us (1.7%)
patch tree reduce : 1.44 us (0.4%)
gen split merge : 932.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 942.00 ns (0.3%)
LB compute : 353.24 us (94.6%)
LB move op cnt : 0
LB apply : 4.03 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.98 us (67.6%)
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 | 7.5519e+05 | 262144 | 1 | 3.471e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.525681250973488 (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.43 us (1.9%)
patch tree reduce : 1.39 us (0.4%)
gen split merge : 1.18 us (0.4%)
split / merge op : 0/0
apply split merge : 1.15 us (0.3%)
LB compute : 315.01 us (93.9%)
LB move op cnt : 0
LB apply : 3.59 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.88 us (69.8%)
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.2674e+05 | 262144 | 1 | 3.607e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.902789360662196 (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.44 us (1.9%)
patch tree reduce : 1.38 us (0.4%)
gen split merge : 932.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.01 us (0.3%)
LB compute : 323.77 us (94.1%)
LB move op cnt : 0
LB apply : 3.82 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.20 us (70.9%)
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.9342e+05 | 262144 | 1 | 3.304e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.361561276594994 (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 : 6.70 us (1.8%)
patch tree reduce : 1.67 us (0.5%)
gen split merge : 892.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 942.00 ns (0.3%)
LB compute : 346.44 us (94.3%)
LB move op cnt : 0
LB apply : 3.87 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.24 us (69.6%)
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 | 7.6010e+05 | 262144 | 1 | 3.449e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.631942584573157 (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.21 us (1.7%)
patch tree reduce : 1.39 us (0.4%)
gen split merge : 822.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.3%)
LB compute : 336.63 us (94.5%)
LB move op cnt : 0
LB apply : 3.84 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.91 us (76.8%)
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 | 7.2161e+05 | 262144 | 1 | 3.633e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.78919380659466 (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 : 5.93 us (1.5%)
patch tree reduce : 1.99 us (0.5%)
gen split merge : 932.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.3%)
LB compute : 363.81 us (94.7%)
LB move op cnt : 0
LB apply : 3.85 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.81 us (71.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.5470e+05 | 262144 | 1 | 3.473e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.512785645355162 (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.03 us (1.6%)
patch tree reduce : 1.62 us (0.4%)
gen split merge : 831.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.3%)
LB compute : 364.05 us (94.6%)
LB move op cnt : 0
LB apply : 4.26 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.62 us (70.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 | 7.9576e+05 | 262144 | 1 | 3.294e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.410753467913327 (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 : 5.70 us (1.7%)
patch tree reduce : 1.50 us (0.4%)
gen split merge : 1.00 us (0.3%)
split / merge op : 0/0
apply split merge : 1.25 us (0.4%)
LB compute : 324.54 us (94.1%)
LB move op cnt : 0
LB apply : 4.57 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.48 us (72.1%)
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 | 7.3712e+05 | 262144 | 1 | 3.556e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.127252223333688 (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.10 us (1.5%)
patch tree reduce : 1.47 us (0.4%)
gen split merge : 832.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.29 us (0.3%)
LB compute : 385.38 us (95.0%)
LB move op cnt : 0
LB apply : 3.77 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.28 us (70.6%)
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 | 7.5601e+05 | 262144 | 1 | 3.467e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.539942190757262 (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 : 5.68 us (1.5%)
patch tree reduce : 1.75 us (0.5%)
gen split merge : 932.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 901.00 ns (0.2%)
LB compute : 358.62 us (94.7%)
LB move op cnt : 0
LB apply : 4.01 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.50 us (73.6%)
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 | 7.9436e+05 | 262144 | 1 | 3.300e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.378458219390428 (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 : 6.23 us (1.6%)
patch tree reduce : 1.60 us (0.4%)
gen split merge : 841.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.2%)
LB compute : 374.26 us (94.8%)
LB move op cnt : 0
LB apply : 4.34 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.50 us (70.9%)
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 | 7.6636e+05 | 262144 | 1 | 3.421e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.765442355584174 (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.11 us (1.9%)
patch tree reduce : 1.77 us (0.5%)
gen split merge : 822.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.12 us (0.3%)
LB compute : 305.23 us (93.8%)
LB move op cnt : 0
LB apply : 3.83 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.33 us (68.1%)
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 | 6.9004e+05 | 262144 | 1 | 3.799e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.095372148479575 (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 : 5.96 us (1.7%)
patch tree reduce : 1.89 us (0.6%)
gen split merge : 902.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 942.00 ns (0.3%)
LB compute : 320.15 us (94.0%)
LB move op cnt : 0
LB apply : 4.35 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.05 us (71.9%)
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 | 7.4132e+05 | 262144 | 1 | 3.536e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.21669875629288 (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 : 6.10 us (1.7%)
patch tree reduce : 1.50 us (0.4%)
gen split merge : 801.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 861.00 ns (0.2%)
LB compute : 338.28 us (94.3%)
LB move op cnt : 0
LB apply : 4.21 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.55 us (73.3%)
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 | 7.1574e+05 | 262144 | 1 | 3.663e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.65653543257456 (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 : 6.57 us (1.8%)
patch tree reduce : 1.68 us (0.5%)
gen split merge : 1.26 us (0.3%)
split / merge op : 0/0
apply split merge : 981.00 ns (0.3%)
LB compute : 341.28 us (94.3%)
LB move op cnt : 0
LB apply : 4.15 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.45 us (69.9%)
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 | 7.9735e+05 | 262144 | 1 | 3.288e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.441168264140078 (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 : 6.91 us (2.0%)
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.34 us (0.4%)
LB compute : 323.32 us (93.8%)
LB move op cnt : 0
LB apply : 4.00 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.04 us (72.8%)
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 | 7.4879e+05 | 262144 | 1 | 3.501e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.37839836970811 (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 : 6.51 us (2.0%)
patch tree reduce : 1.66 us (0.5%)
gen split merge : 892.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 892.00 ns (0.3%)
LB compute : 308.00 us (93.8%)
LB move op cnt : 0
LB apply : 4.03 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.14 us (69.1%)
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 | 7.9869e+05 | 262144 | 1 | 3.282e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.46924102226053 (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.21 us (1.7%)
patch tree reduce : 1.50 us (0.4%)
gen split merge : 912.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.3%)
LB compute : 345.09 us (94.6%)
LB move op cnt : 0
LB apply : 4.04 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.26 us (69.5%)
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 | 6.9806e+05 | 262144 | 1 | 3.755e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.267704509742684 (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.00 us (1.4%)
patch tree reduce : 1.76 us (0.4%)
gen split merge : 821.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.11 us (0.3%)
LB compute : 392.81 us (94.9%)
LB move op cnt : 0
LB apply : 4.38 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.53 us (71.9%)
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.8864e+05 | 262144 | 1 | 3.324e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.248165268205298 (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 : 6.37 us (1.5%)
patch tree reduce : 1.59 us (0.4%)
gen split merge : 1.12 us (0.3%)
split / merge op : 0/0
apply split merge : 871.00 ns (0.2%)
LB compute : 403.64 us (95.0%)
LB move op cnt : 0
LB apply : 4.23 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.97 us (72.9%)
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 | 6.8637e+05 | 262144 | 1 | 3.819e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.01099379222418 (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 : 5.90 us (1.7%)
patch tree reduce : 1.77 us (0.5%)
gen split merge : 831.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.00 us (0.3%)
LB compute : 336.62 us (94.2%)
LB move op cnt : 0
LB apply : 4.72 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.45 us (67.8%)
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 | 7.0419e+05 | 262144 | 1 | 3.723e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.400144878841044 (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 : 6.15 us (1.8%)
patch tree reduce : 1.35 us (0.4%)
gen split merge : 822.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.09 us (0.3%)
LB compute : 322.59 us (94.2%)
LB move op cnt : 0
LB apply : 3.90 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.60 us (72.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 | 7.9014e+05 | 262144 | 1 | 3.318e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.279192311363115 (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.15 us (1.6%)
patch tree reduce : 1.58 us (0.4%)
gen split merge : 852.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.09 us (0.3%)
LB compute : 356.52 us (94.5%)
LB move op cnt : 0
LB apply : 3.79 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.81 us (70.0%)
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 | 7.9461e+05 | 262144 | 1 | 3.299e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.376346573446728 (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.60 us (1.8%)
patch tree reduce : 1.33 us (0.4%)
gen split merge : 942.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.37 us (0.4%)
LB compute : 349.67 us (94.3%)
LB move op cnt : 0
LB apply : 4.50 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.83 us (72.1%)
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 | 7.5369e+05 | 262144 | 1 | 3.478e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.480844084461506 (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.28 us (1.7%)
patch tree reduce : 1.55 us (0.4%)
gen split merge : 832.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.3%)
LB compute : 350.48 us (94.6%)
LB move op cnt : 0
LB apply : 4.05 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.08 us (72.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 | 6.9121e+05 | 262144 | 1 | 3.793e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.114066809981752 (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 : 5.66 us (1.7%)
patch tree reduce : 1.42 us (0.4%)
gen split merge : 1.03 us (0.3%)
split / merge op : 0/0
apply split merge : 1.27 us (0.4%)
LB compute : 313.57 us (94.0%)
LB move op cnt : 0
LB apply : 3.91 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.94 us (72.2%)
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 | 7.6849e+05 | 262144 | 1 | 3.411e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.80315702417243 (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 : 6.76 us (1.9%)
patch tree reduce : 1.55 us (0.4%)
gen split merge : 962.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.34 us (0.4%)
LB compute : 342.98 us (94.2%)
LB move op cnt : 0
LB apply : 4.13 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.67 us (71.1%)
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 | 7.3284e+05 | 262144 | 1 | 3.577e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.023133067429555 (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.02 us (1.7%)
patch tree reduce : 1.57 us (0.4%)
gen split merge : 941.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 892.00 ns (0.2%)
LB compute : 341.56 us (94.3%)
LB move op cnt : 0
LB apply : 4.13 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.54 us (68.8%)
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 | 7.9482e+05 | 262144 | 1 | 3.298e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.37778525927691 (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.24 us (1.5%)
patch tree reduce : 1.42 us (0.3%)
gen split merge : 892.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.01 us (0.2%)
LB compute : 389.50 us (95.1%)
LB move op cnt : 0
LB apply : 4.20 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.76 us (71.3%)
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.9326e+05 | 262144 | 1 | 3.305e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.342858358199752 (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 : 6.42 us (1.5%)
patch tree reduce : 1.48 us (0.4%)
gen split merge : 841.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.28 us (0.3%)
LB compute : 396.78 us (94.9%)
LB move op cnt : 0
LB apply : 4.07 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.24 us (73.6%)
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.8303e+05 | 262144 | 1 | 3.348e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.118590450787515 (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 : 6.84 us (1.8%)
patch tree reduce : 1.37 us (0.4%)
gen split merge : 932.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.17 us (0.3%)
LB compute : 363.17 us (94.5%)
LB move op cnt : 0
LB apply : 4.25 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.91 us (72.5%)
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 | 7.6654e+05 | 262144 | 1 | 3.420e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.757423997697444 (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.36 us (1.7%)
patch tree reduce : 1.36 us (0.4%)
gen split merge : 831.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.01 us (0.3%)
LB compute : 354.65 us (94.7%)
LB move op cnt : 0
LB apply : 4.15 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.39 us (68.6%)
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 | 5.4131e+05 | 262144 | 1 | 4.843e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11.833311345194701 (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.23 us (1.5%)
patch tree reduce : 2.00 us (0.5%)
gen split merge : 932.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.21 us (0.3%)
LB compute : 381.73 us (94.7%)
LB move op cnt : 0
LB apply : 4.37 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.48 us (74.1%)
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 | 7.2761e+05 | 262144 | 1 | 3.603e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.905303520903562 (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.33 us (1.6%)
patch tree reduce : 1.34 us (0.3%)
gen split merge : 822.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.05 us (0.3%)
LB compute : 363.68 us (94.7%)
LB move op cnt : 0
LB apply : 4.02 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.77 us (70.1%)
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 | 7.4108e+05 | 262144 | 1 | 3.537e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.199100064615052 (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 : 5.93 us (1.3%)
patch tree reduce : 1.57 us (0.4%)
gen split merge : 942.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 872.00 ns (0.2%)
LB compute : 428.42 us (95.5%)
LB move op cnt : 0
LB apply : 4.41 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.95 us (72.8%)
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 | 7.8005e+05 | 262144 | 1 | 3.361e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.050333346053456 (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.26 us (1.7%)
patch tree reduce : 1.72 us (0.5%)
gen split merge : 932.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.13 us (0.3%)
LB compute : 358.05 us (94.6%)
LB move op cnt : 0
LB apply : 3.96 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.24 us (71.1%)
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 | 7.8769e+05 | 262144 | 1 | 3.328e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.21660183076757 (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.51 us (1.6%)
patch tree reduce : 1.42 us (0.4%)
gen split merge : 802.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.2%)
LB compute : 382.61 us (95.0%)
LB move op cnt : 0
LB apply : 4.28 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.26 us (66.3%)
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 | 7.8694e+05 | 262144 | 1 | 3.331e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.31972228100132866 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 367.802714326 (s) [Godunov][rank=0]
Info: dump to _to_trash/ramses_kh/periodic_0013.vtk [VTK Dump][rank=0]
- took 30.72 ms, bandwidth = 1.33 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 : 6.32 us (1.5%)
patch tree reduce : 1.80 us (0.4%)
gen split merge : 831.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.00 us (0.2%)
LB compute : 402.14 us (95.2%)
LB move op cnt : 0
LB apply : 3.85 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.39 us (69.9%)
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 | 7.2533e+05 | 262144 | 1 | 3.614e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.853120636773781 (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.38 us (1.9%)
patch tree reduce : 1.42 us (0.4%)
gen split merge : 1.24 us (0.4%)
split / merge op : 0/0
apply split merge : 1.14 us (0.3%)
LB compute : 322.21 us (94.0%)
LB move op cnt : 0
LB apply : 3.85 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.43 us (74.0%)
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.1573e+05 | 262144 | 1 | 3.663e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.64259284407795 (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.21 us (1.9%)
patch tree reduce : 1.44 us (0.4%)
gen split merge : 961.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.00 us (0.3%)
LB compute : 308.94 us (93.8%)
LB move op cnt : 0
LB apply : 3.87 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.38 us (68.8%)
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 | 6.9174e+05 | 262144 | 1 | 3.790e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.117752599595702 (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.13 us (1.8%)
patch tree reduce : 1.44 us (0.4%)
gen split merge : 982.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.39 us (0.4%)
LB compute : 324.83 us (94.2%)
LB move op cnt : 0
LB apply : 3.80 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.34 us (67.6%)
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 | 6.7795e+05 | 262144 | 1 | 3.867e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.815723443346702 (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.51 us (1.9%)
patch tree reduce : 1.41 us (0.4%)
gen split merge : 811.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 852.00 ns (0.3%)
LB compute : 314.57 us (94.0%)
LB move op cnt : 0
LB apply : 3.91 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.88 us (71.4%)
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 | 6.7479e+05 | 262144 | 1 | 3.885e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.74616847492264 (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.11 us (1.8%)
patch tree reduce : 1.59 us (0.5%)
gen split merge : 832.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.3%)
LB compute : 316.76 us (94.2%)
LB move op cnt : 0
LB apply : 3.72 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.32 us (67.8%)
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 | 6.9429e+05 | 262144 | 1 | 3.776e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.171674954941533 (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.98 us (2.0%)
patch tree reduce : 1.76 us (0.5%)
gen split merge : 822.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 871.00 ns (0.3%)
LB compute : 327.17 us (94.0%)
LB move op cnt : 0
LB apply : 3.79 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.60 us (70.3%)
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.7380e+05 | 262144 | 1 | 3.388e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.908556382452655 (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 (0.9%)
patch tree reduce : 1.46 us (0.2%)
gen split merge : 832.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 1.11 us (0.1%)
LB compute : 742.48 us (97.3%)
LB move op cnt : 0
LB apply : 4.62 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.30 us (75.5%)
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 | 7.1086e+05 | 262144 | 1 | 3.688e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.532630821401064 (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.22 us (1.9%)
patch tree reduce : 1.90 us (0.6%)
gen split merge : 821.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.3%)
LB compute : 315.47 us (93.9%)
LB move op cnt : 0
LB apply : 3.86 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.33 us (68.7%)
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 | 6.6940e+05 | 262144 | 1 | 3.916e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.62617024941712 (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.06 us (1.8%)
patch tree reduce : 1.52 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 : 311.39 us (93.8%)
LB move op cnt : 0
LB apply : 3.77 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.42 us (68.5%)
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.8652e+05 | 262144 | 1 | 3.333e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.18458954803927 (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.08 us (1.6%)
patch tree reduce : 1.66 us (0.4%)
gen split merge : 822.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.12 us (0.3%)
LB compute : 352.68 us (94.6%)
LB move op cnt : 0
LB apply : 3.79 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.39 us (69.7%)
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 | 7.0559e+05 | 262144 | 1 | 3.715e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.415868071197746 (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.22 us (1.6%)
patch tree reduce : 1.86 us (0.5%)
gen split merge : 831.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.24 us (0.3%)
LB compute : 360.50 us (94.7%)
LB move op cnt : 0
LB apply : 3.81 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.78 us (72.9%)
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 | 7.8870e+05 | 262144 | 1 | 3.324e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.231080016378147 (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.51 us (1.6%)
patch tree reduce : 1.69 us (0.4%)
gen split merge : 822.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.03 us (0.3%)
LB compute : 389.97 us (95.0%)
LB move op cnt : 0
LB apply : 3.77 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.18 us (70.8%)
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 | 7.8519e+05 | 262144 | 1 | 3.339e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.153666259930837 (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 : 5.89 us (1.6%)
patch tree reduce : 1.51 us (0.4%)
gen split merge : 1.26 us (0.3%)
split / merge op : 0/0
apply split merge : 942.00 ns (0.3%)
LB compute : 348.14 us (94.4%)
LB move op cnt : 0
LB apply : 4.54 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.78 us (71.4%)
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 | 7.8861e+05 | 262144 | 1 | 3.324e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.227862913542353 (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.20 us (1.8%)
patch tree reduce : 1.42 us (0.4%)
gen split merge : 821.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.3%)
LB compute : 316.29 us (93.9%)
LB move op cnt : 0
LB apply : 4.10 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.22 us (66.5%)
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 | 7.9228e+05 | 262144 | 1 | 3.309e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.307327811415306 (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 : 5.84 us (1.6%)
patch tree reduce : 1.65 us (0.4%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.26 us (0.3%)
LB compute : 352.01 us (94.6%)
LB move op cnt : 0
LB apply : 3.65 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.12 us (74.2%)
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 | 6.8592e+05 | 262144 | 1 | 3.822e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.983327578971467 (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.07 us (1.8%)
patch tree reduce : 1.42 us (0.4%)
gen split merge : 932.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.31 us (0.4%)
LB compute : 308.19 us (93.8%)
LB move op cnt : 0
LB apply : 3.93 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.39 us (69.8%)
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 | 7.3193e+05 | 262144 | 1 | 3.582e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.987979499701517 (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 : 6.44 us (1.5%)
patch tree reduce : 1.43 us (0.3%)
gen split merge : 812.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.00 us (0.2%)
LB compute : 418.87 us (95.3%)
LB move op cnt : 0
LB apply : 4.22 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.32 us (67.6%)
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 | 7.8229e+05 | 262144 | 1 | 3.351e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.087224403268106 (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 : 5.90 us (1.5%)
patch tree reduce : 1.40 us (0.4%)
gen split merge : 882.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.18 us (0.3%)
LB compute : 362.60 us (94.8%)
LB move op cnt : 0
LB apply : 3.81 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.63 us (71.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 | 7.7054e+05 | 262144 | 1 | 3.402e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.83007152184515 (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 : 6.08 us (1.7%)
patch tree reduce : 1.31 us (0.4%)
gen split merge : 822.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.07 us (0.3%)
LB compute : 346.23 us (94.6%)
LB move op cnt : 0
LB apply : 3.87 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.86 us (71.6%)
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 | 7.8621e+05 | 262144 | 1 | 3.334e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.17172252229352 (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 : 5.70 us (1.6%)
patch tree reduce : 1.47 us (0.4%)
gen split merge : 941.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.00 us (0.3%)
LB compute : 347.85 us (94.6%)
LB move op cnt : 0
LB apply : 3.96 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.28 us (68.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 | 7.7321e+05 | 262144 | 1 | 3.390e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.887108917472627 (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 : 5.71 us (1.4%)
patch tree reduce : 1.38 us (0.3%)
gen split merge : 1.27 us (0.3%)
split / merge op : 0/0
apply split merge : 892.00 ns (0.2%)
LB compute : 378.05 us (94.9%)
LB move op cnt : 0
LB apply : 4.24 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.37 us (77.1%)
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.8774e+05 | 262144 | 1 | 3.328e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.203936051353583 (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.12 us (1.6%)
patch tree reduce : 1.82 us (0.5%)
gen split merge : 851.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.41 us (0.4%)
LB compute : 355.53 us (94.1%)
LB move op cnt : 0
LB apply : 5.11 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.92 us (74.3%)
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.5622e+05 | 262144 | 1 | 3.466e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.515105121539797 (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.53 us (1.5%)
patch tree reduce : 1.70 us (0.4%)
gen split merge : 1.08 us (0.3%)
split / merge op : 0/0
apply split merge : 1.01 us (0.2%)
LB compute : 408.78 us (95.1%)
LB move op cnt : 0
LB apply : 4.51 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.35 us (74.7%)
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 | 7.8312e+05 | 262144 | 1 | 3.347e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.10185688972448 (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.04 us (1.6%)
patch tree reduce : 1.34 us (0.4%)
gen split merge : 901.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 991.00 ns (0.3%)
LB compute : 347.02 us (94.6%)
LB move op cnt : 0
LB apply : 4.24 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.80 us (74.2%)
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 | 7.1582e+05 | 262144 | 1 | 3.662e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.631588062571234 (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 : 6.04 us (1.7%)
patch tree reduce : 1.50 us (0.4%)
gen split merge : 932.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.07 us (0.3%)
LB compute : 327.71 us (94.3%)
LB move op cnt : 0
LB apply : 3.98 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.66 us (73.4%)
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 | 7.8358e+05 | 262144 | 1 | 3.345e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.11076511680346 (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.75 us (1.9%)
patch tree reduce : 1.45 us (0.4%)
gen split merge : 902.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 882.00 ns (0.3%)
LB compute : 332.79 us (94.4%)
LB move op cnt : 0
LB apply : 3.73 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.22 us (66.9%)
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 | 7.5285e+05 | 262144 | 1 | 3.482e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.43926827772547 (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 : 6.15 us (0.9%)
patch tree reduce : 1.75 us (0.2%)
gen split merge : 891.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 1.10 us (0.2%)
LB compute : 686.54 us (97.0%)
LB move op cnt : 0
LB apply : 4.51 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.94 us (77.4%)
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.4352e+05 | 262144 | 1 | 3.526e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.234908151888984 (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.15 us (1.7%)
patch tree reduce : 1.65 us (0.4%)
gen split merge : 1.05 us (0.3%)
split / merge op : 0/0
apply split merge : 922.00 ns (0.2%)
LB compute : 350.23 us (94.6%)
LB move op cnt : 0
LB apply : 3.78 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.84 us (72.8%)
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.8683e+05 | 262144 | 1 | 3.332e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.180105915771833 (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.74 us (1.8%)
patch tree reduce : 1.62 us (0.4%)
gen split merge : 1.03 us (0.3%)
split / merge op : 0/0
apply split merge : 1.02 us (0.3%)
LB compute : 345.37 us (94.4%)
LB move op cnt : 0
LB apply : 3.94 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.64 us (72.3%)
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.8600e+05 | 262144 | 1 | 3.335e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.161355321297247 (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 : 6.97 us (2.0%)
patch tree reduce : 1.59 us (0.5%)
gen split merge : 922.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.10 us (0.3%)
LB compute : 320.49 us (93.6%)
LB move op cnt : 0
LB apply : 4.55 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.66 us (74.0%)
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 | 7.1409e+05 | 262144 | 1 | 3.671e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.590842590410166 (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 : 5.81 us (1.7%)
patch tree reduce : 1.54 us (0.4%)
gen split merge : 1.16 us (0.3%)
split / merge op : 0/0
apply split merge : 1.12 us (0.3%)
LB compute : 328.35 us (94.3%)
LB move op cnt : 0
LB apply : 3.93 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 24.27 us (94.9%)
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.8920e+05 | 262144 | 1 | 3.322e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.23021677240944 (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.16 us (1.5%)
patch tree reduce : 1.47 us (0.4%)
gen split merge : 822.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.2%)
LB compute : 379.59 us (95.0%)
LB move op cnt : 0
LB apply : 3.84 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.76 us (72.6%)
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.8042e+05 | 262144 | 1 | 3.359e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.037951035688458 (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 : 6.23 us (1.6%)
patch tree reduce : 1.33 us (0.3%)
gen split merge : 811.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.07 us (0.3%)
LB compute : 365.55 us (95.0%)
LB move op cnt : 0
LB apply : 3.85 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.40 us (68.3%)
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 | 7.6370e+05 | 262144 | 1 | 3.433e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.67253720162192 (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.71 us (1.7%)
patch tree reduce : 1.76 us (0.4%)
gen split merge : 962.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.06 us (0.3%)
LB compute : 375.83 us (94.6%)
LB move op cnt : 0
LB apply : 4.21 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.05 us (72.9%)
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.7655e+05 | 262144 | 1 | 3.376e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.9523976239982 (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.85 us (1.6%)
patch tree reduce : 1.34 us (0.4%)
gen split merge : 812.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.05 us (0.3%)
LB compute : 351.27 us (94.8%)
LB move op cnt : 0
LB apply : 3.96 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.80 us (71.2%)
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.8749e+05 | 262144 | 1 | 3.329e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.190861880966146 (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.00 us (1.5%)
patch tree reduce : 1.42 us (0.4%)
gen split merge : 1.05 us (0.3%)
split / merge op : 0/0
apply split merge : 1.12 us (0.3%)
LB compute : 383.03 us (95.1%)
LB move op cnt : 0
LB apply : 3.92 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.85 us (72.8%)
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.8098e+05 | 262144 | 1 | 3.357e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.048186234121918 (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 : 6.89 us (1.8%)
patch tree reduce : 1.34 us (0.3%)
gen split merge : 921.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.32 us (0.3%)
LB compute : 369.22 us (94.7%)
LB move op cnt : 0
LB apply : 3.83 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.50 us (70.8%)
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 | 7.3300e+05 | 262144 | 1 | 3.576e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.000300611864947 (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.23 us (1.6%)
patch tree reduce : 1.58 us (0.4%)
gen split merge : 932.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.3%)
LB compute : 357.77 us (94.7%)
LB move op cnt : 0
LB apply : 3.98 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.22 us (72.6%)
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 | 7.8112e+05 | 262144 | 1 | 3.356e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.050266026667888 (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 : 6.28 us (1.6%)
patch tree reduce : 1.68 us (0.4%)
gen split merge : 921.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 952.00 ns (0.2%)
LB compute : 376.86 us (94.8%)
LB move op cnt : 0
LB apply : 4.39 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.25 us (72.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 | 7.8369e+05 | 262144 | 1 | 3.345e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.105907334620973 (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.33 us (1.8%)
patch tree reduce : 1.55 us (0.4%)
gen split merge : 1.14 us (0.3%)
split / merge op : 0/0
apply split merge : 1.04 us (0.3%)
LB compute : 326.76 us (94.2%)
LB move op cnt : 0
LB apply : 3.70 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.39 us (72.5%)
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 | 7.7155e+05 | 262144 | 1 | 3.398e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.840371640753407 (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 : 6.46 us (1.7%)
patch tree reduce : 1.55 us (0.4%)
gen split merge : 942.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 882.00 ns (0.2%)
LB compute : 350.01 us (94.5%)
LB move op cnt : 0
LB apply : 3.87 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.95 us (69.5%)
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.8815e+05 | 262144 | 1 | 3.326e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.202259911603864 (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.04 us (1.7%)
patch tree reduce : 1.48 us (0.4%)
gen split merge : 881.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.22 us (0.4%)
LB compute : 329.04 us (94.2%)
LB move op cnt : 0
LB apply : 3.74 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.25 us (70.3%)
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 | 7.1269e+05 | 262144 | 1 | 3.678e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.55479893801101 (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.12 us (1.7%)
patch tree reduce : 1.72 us (0.5%)
gen split merge : 912.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 911.00 ns (0.2%)
LB compute : 349.72 us (94.3%)
LB move op cnt : 0
LB apply : 4.19 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.01 us (70.4%)
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 | 7.8564e+05 | 262144 | 1 | 3.337e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.14650795960599 (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.44 us (1.8%)
patch tree reduce : 1.70 us (0.5%)
gen split merge : 851.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.3%)
LB compute : 316.85 us (88.4%)
LB move op cnt : 0
LB apply : 4.05 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.33 us (74.4%)
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 | 7.7327e+05 | 262144 | 1 | 3.390e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.875959162938063 (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.24 us (1.7%)
patch tree reduce : 1.39 us (0.4%)
gen split merge : 902.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 991.00 ns (0.3%)
LB compute : 347.18 us (94.6%)
LB move op cnt : 0
LB apply : 3.95 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.67 us (68.6%)
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 | 7.7503e+05 | 262144 | 1 | 3.382e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.91387781357137 (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 : 6.01 us (1.8%)
patch tree reduce : 1.66 us (0.5%)
gen split merge : 961.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.3%)
LB compute : 319.57 us (94.1%)
LB move op cnt : 0
LB apply : 3.91 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.11 us (69.2%)
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 | 7.6795e+05 | 262144 | 1 | 3.414e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.759054137133866 (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.97 us (1.9%)
patch tree reduce : 1.57 us (0.4%)
gen split merge : 1.00 us (0.3%)
split / merge op : 0/0
apply split merge : 1.05 us (0.3%)
LB compute : 336.28 us (93.9%)
LB move op cnt : 0
LB apply : 4.13 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.76 us (71.3%)
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 | 7.6884e+05 | 262144 | 1 | 3.410e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.77801674858786 (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.20 us (1.8%)
patch tree reduce : 1.42 us (0.4%)
gen split merge : 1.24 us (0.4%)
split / merge op : 0/0
apply split merge : 1.00 us (0.3%)
LB compute : 325.50 us (94.1%)
LB move op cnt : 0
LB apply : 4.22 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.46 us (71.0%)
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 | 7.6837e+05 | 262144 | 1 | 3.412e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.76711745310644 (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.64 us (1.9%)
patch tree reduce : 1.79 us (0.5%)
gen split merge : 922.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.17 us (0.3%)
LB compute : 332.62 us (94.0%)
LB move op cnt : 0
LB apply : 4.38 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.42 us (76.3%)
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 | 7.6170e+05 | 262144 | 1 | 3.442e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.621182736523075 (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.44 us (1.7%)
patch tree reduce : 1.65 us (0.4%)
gen split merge : 1.21 us (0.3%)
split / merge op : 0/0
apply split merge : 881.00 ns (0.2%)
LB compute : 356.70 us (94.7%)
LB move op cnt : 0
LB apply : 3.66 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.78 us (74.5%)
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 | 7.5615e+05 | 262144 | 1 | 3.467e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.49961569421106 (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.18 us (1.7%)
patch tree reduce : 1.40 us (0.4%)
gen split merge : 852.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.34 us (0.4%)
LB compute : 342.00 us (94.4%)
LB move op cnt : 0
LB apply : 4.10 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.20 us (71.7%)
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 | 7.6803e+05 | 262144 | 1 | 3.413e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.75847625580923 (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 : 6.57 us (1.8%)
patch tree reduce : 1.43 us (0.4%)
gen split merge : 822.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.02 us (0.3%)
LB compute : 347.51 us (94.5%)
LB move op cnt : 0
LB apply : 3.68 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.55 us (69.6%)
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 | 7.6541e+05 | 262144 | 1 | 3.425e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.700899733726427 (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.50 us (1.8%)
patch tree reduce : 1.49 us (0.4%)
gen split merge : 821.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.13 us (0.3%)
LB compute : 341.83 us (94.5%)
LB move op cnt : 0
LB apply : 3.89 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.25 us (69.0%)
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 | 7.7025e+05 | 262144 | 1 | 3.403e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.80596460115932 (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 : 72.96 us (16.3%)
patch tree reduce : 1.64 us (0.4%)
gen split merge : 1.01 us (0.2%)
split / merge op : 0/0
apply split merge : 1.06 us (0.2%)
LB compute : 360.23 us (80.4%)
LB move op cnt : 0
LB apply : 4.14 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.23 us (71.1%)
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 | 7.7492e+05 | 262144 | 1 | 3.383e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.907494192367068 (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.25 us (1.8%)
patch tree reduce : 1.37 us (0.4%)
gen split merge : 1.01 us (0.3%)
split / merge op : 0/0
apply split merge : 1.43 us (0.4%)
LB compute : 328.35 us (94.2%)
LB move op cnt : 0
LB apply : 3.88 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.10 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 | 7.4947e+05 | 262144 | 1 | 3.498e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.351739681978334 (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 : 6.31 us (1.9%)
patch tree reduce : 1.45 us (0.4%)
gen split merge : 822.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 851.00 ns (0.3%)
LB compute : 318.27 us (94.2%)
LB move op cnt : 0
LB apply : 4.15 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.40 us (69.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 | 7.7851e+05 | 262144 | 1 | 3.367e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.984674003357696 (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 : 6.27 us (1.0%)
patch tree reduce : 1.87 us (0.3%)
gen split merge : 911.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.2%)
LB compute : 595.03 us (96.6%)
LB move op cnt : 0
LB apply : 4.48 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.95 us (74.4%)
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 | 7.7812e+05 | 262144 | 1 | 3.369e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.975863288697166 (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.49 us (1.7%)
patch tree reduce : 1.55 us (0.4%)
gen split merge : 911.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 951.00 ns (0.3%)
LB compute : 357.35 us (94.5%)
LB move op cnt : 0
LB apply : 3.99 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.46 us (74.4%)
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 | 7.7362e+05 | 262144 | 1 | 3.389e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.87707008792262 (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.60 us (1.8%)
patch tree reduce : 1.64 us (0.5%)
gen split merge : 921.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 891.00 ns (0.2%)
LB compute : 340.81 us (94.2%)
LB move op cnt : 0
LB apply : 4.26 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.93 us (71.6%)
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 | 7.6007e+05 | 262144 | 1 | 3.449e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.581045019984895 (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 : 7.11 us (1.9%)
patch tree reduce : 1.42 us (0.4%)
gen split merge : 922.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 912.00 ns (0.2%)
LB compute : 344.90 us (94.5%)
LB move op cnt : 0
LB apply : 3.83 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.79 us (73.0%)
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 | 7.6590e+05 | 262144 | 1 | 3.423e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.70770306706994 (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.08 us (1.6%)
patch tree reduce : 1.59 us (0.4%)
gen split merge : 831.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 872.00 ns (0.2%)
LB compute : 355.92 us (94.6%)
LB move op cnt : 0
LB apply : 4.21 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.16 us (69.9%)
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 | 7.6531e+05 | 262144 | 1 | 3.425e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.694374852924334 (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.06 us (1.6%)
patch tree reduce : 1.52 us (0.4%)
gen split merge : 991.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 961.00 ns (0.3%)
LB compute : 351.88 us (94.5%)
LB move op cnt : 0
LB apply : 4.37 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.25 us (69.4%)
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.7275e+05 | 262144 | 1 | 3.392e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.856204897285068 (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.82 us (1.9%)
patch tree reduce : 1.77 us (0.5%)
gen split merge : 812.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 882.00 ns (0.2%)
LB compute : 334.82 us (94.3%)
LB move op cnt : 0
LB apply : 3.59 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.70 us (71.5%)
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 | 5.6325e+05 | 262144 | 1 | 4.654e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12.285959011652976 (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 : 7.02 us (1.8%)
patch tree reduce : 1.59 us (0.4%)
gen split merge : 952.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.2%)
LB compute : 342.04 us (88.8%)
LB move op cnt : 0
LB apply : 3.99 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.77 us (77.2%)
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 | 6.1312e+05 | 262144 | 1 | 4.276e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.373326674815441 (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.37 us (1.7%)
patch tree reduce : 1.59 us (0.4%)
gen split merge : 812.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 911.00 ns (0.2%)
LB compute : 365.49 us (94.7%)
LB move op cnt : 0
LB apply : 3.87 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.56 us (76.0%)
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 | 6.6578e+05 | 262144 | 1 | 3.937e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.521382897093366 (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.42 us (1.6%)
patch tree reduce : 1.33 us (0.3%)
gen split merge : 821.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.41 us (0.4%)
LB compute : 376.69 us (94.9%)
LB move op cnt : 0
LB apply : 3.91 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.18 us (68.3%)
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 | 7.7619e+05 | 262144 | 1 | 3.377e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.929135200010137 (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.61 us (1.8%)
patch tree reduce : 1.72 us (0.5%)
gen split merge : 912.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 851.00 ns (0.2%)
LB compute : 342.49 us (94.4%)
LB move op cnt : 0
LB apply : 4.11 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.72 us (70.4%)
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 | 7.8179e+05 | 262144 | 1 | 3.353e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.050656541649918 (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 : 5.95 us (1.7%)
patch tree reduce : 1.32 us (0.4%)
gen split merge : 912.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.08 us (0.3%)
LB compute : 323.79 us (94.4%)
LB move op cnt : 0
LB apply : 3.82 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.23 us (70.2%)
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 | 7.2501e+05 | 262144 | 1 | 3.616e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.811771340604198 (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.28 us (1.9%)
patch tree reduce : 1.49 us (0.4%)
gen split merge : 841.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.20 us (0.4%)
LB compute : 316.28 us (94.2%)
LB move op cnt : 0
LB apply : 3.71 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.06 us (64.6%)
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.8402e+05 | 262144 | 1 | 3.344e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.0981270932093 (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.73 us (2.0%)
patch tree reduce : 1.42 us (0.4%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 942.00 ns (0.3%)
LB compute : 310.83 us (93.9%)
LB move op cnt : 0
LB apply : 3.65 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.36 us (68.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.7545e+05 | 262144 | 1 | 3.381e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.910491540750222 (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 : 6.23 us (1.9%)
patch tree reduce : 1.42 us (0.4%)
gen split merge : 832.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.00 us (0.3%)
LB compute : 316.66 us (94.2%)
LB move op cnt : 0
LB apply : 3.78 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.17 us (66.7%)
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 | 7.7970e+05 | 262144 | 1 | 3.362e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.00272772422103 (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.23 us (1.8%)
patch tree reduce : 1.35 us (0.4%)
gen split merge : 912.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.19 us (0.3%)
LB compute : 327.37 us (94.3%)
LB move op cnt : 0
LB apply : 4.32 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.88 us (72.1%)
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 | 7.7409e+05 | 262144 | 1 | 3.386e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.87964762615519 (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.11 us (1.8%)
patch tree reduce : 1.53 us (0.5%)
gen split merge : 931.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 882.00 ns (0.3%)
LB compute : 315.99 us (94.0%)
LB move op cnt : 0
LB apply : 3.86 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.32 us (68.8%)
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 | 7.6613e+05 | 262144 | 1 | 3.422e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.705371788150906 (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.17 us (1.8%)
patch tree reduce : 1.29 us (0.4%)
gen split merge : 912.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.02 us (0.3%)
LB compute : 326.60 us (94.3%)
LB move op cnt : 0
LB apply : 4.12 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.60 us (72.2%)
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.8039e+05 | 262144 | 1 | 3.359e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.01563481523777 (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.14 us (1.5%)
patch tree reduce : 1.47 us (0.4%)
gen split merge : 922.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.08 us (0.3%)
LB compute : 396.01 us (95.2%)
LB move op cnt : 0
LB apply : 4.15 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.07 us (75.4%)
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.3549e+05 | 262144 | 1 | 3.564e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.03609962681579 (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 : 5.96 us (1.8%)
patch tree reduce : 1.59 us (0.5%)
gen split merge : 842.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.10 us (0.3%)
LB compute : 319.09 us (94.0%)
LB move op cnt : 0
LB apply : 4.12 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.69 us (71.3%)
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 | 6.5471e+05 | 262144 | 1 | 4.004e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.27426649538026 (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.89 us (1.9%)
patch tree reduce : 1.53 us (0.4%)
gen split merge : 962.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.21 us (0.3%)
LB compute : 345.79 us (94.3%)
LB move op cnt : 0
LB apply : 4.33 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.79 us (72.4%)
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.3150e+05 | 262144 | 1 | 3.584e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.94777458175956 (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 : 5.86 us (1.6%)
patch tree reduce : 1.43 us (0.4%)
gen split merge : 832.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.03 us (0.3%)
LB compute : 347.42 us (94.6%)
LB move op cnt : 0
LB apply : 3.72 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.41 us (73.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.0789e+05 | 262144 | 1 | 3.703e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.432518730558373 (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 : 5.98 us (1.6%)
patch tree reduce : 1.46 us (0.4%)
gen split merge : 1.11 us (0.3%)
split / merge op : 0/0
apply split merge : 862.00 ns (0.2%)
LB compute : 365.81 us (94.9%)
LB move op cnt : 0
LB apply : 3.94 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.07 us (67.7%)
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 | 6.9253e+05 | 262144 | 1 | 3.785e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.096929940478994 (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.08 us (1.7%)
patch tree reduce : 1.35 us (0.4%)
gen split merge : 902.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.12 us (0.3%)
LB compute : 343.75 us (94.6%)
LB move op cnt : 0
LB apply : 4.11 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.34 us (69.6%)
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.9135e+05 | 262144 | 1 | 3.313e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.250381640157336 (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.11 us (1.7%)
patch tree reduce : 1.44 us (0.4%)
gen split merge : 941.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 871.00 ns (0.2%)
LB compute : 337.96 us (94.5%)
LB move op cnt : 0
LB apply : 3.90 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.74 us (72.8%)
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 | 6.8491e+05 | 262144 | 1 | 3.827e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.929432610529558 (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 : 6.01 us (1.8%)
patch tree reduce : 1.58 us (0.5%)
gen split merge : 801.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.3%)
LB compute : 307.68 us (94.1%)
LB move op cnt : 0
LB apply : 3.78 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.32 us (67.4%)
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.6814e+05 | 262144 | 1 | 3.413e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.743049707553737 (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 : 6.38 us (1.6%)
patch tree reduce : 1.30 us (0.3%)
gen split merge : 1.06 us (0.3%)
split / merge op : 0/0
apply split merge : 991.00 ns (0.2%)
LB compute : 379.18 us (94.9%)
LB move op cnt : 0
LB apply : 4.19 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.61 us (75.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 | 6.7370e+05 | 262144 | 1 | 3.891e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.464089854601289 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 397.83108876700004 (s) [Godunov][rank=0]
Info: dump to _to_trash/ramses_kh/periodic_0014.vtk [VTK Dump][rank=0]
- took 32.81 ms, bandwidth = 1.25 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.35 us (1.6%)
patch tree reduce : 1.65 us (0.4%)
gen split merge : 1.08 us (0.3%)
split / merge op : 0/0
apply split merge : 1.07 us (0.3%)
LB compute : 388.52 us (95.1%)
LB move op cnt : 0
LB apply : 3.71 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.35 us (69.2%)
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 | 6.8422e+05 | 262144 | 1 | 3.831e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.91296080031647 (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 : 5.96 us (1.6%)
patch tree reduce : 1.51 us (0.4%)
gen split merge : 832.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.02 us (0.3%)
LB compute : 344.53 us (94.5%)
LB move op cnt : 0
LB apply : 3.96 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.41 us (69.1%)
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 | 6.3544e+05 | 262144 | 1 | 4.125e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.849124555608885 (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.28 us (1.7%)
patch tree reduce : 1.46 us (0.4%)
gen split merge : 1.15 us (0.3%)
split / merge op : 0/0
apply split merge : 1.02 us (0.3%)
LB compute : 353.24 us (94.6%)
LB move op cnt : 0
LB apply : 3.98 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.24 us (68.1%)
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 | 7.4278e+05 | 262144 | 1 | 3.529e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.18781767180078 (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.01 us (1.8%)
patch tree reduce : 1.92 us (0.6%)
gen split merge : 832.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.07 us (0.3%)
LB compute : 310.27 us (93.9%)
LB move op cnt : 0
LB apply : 4.11 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.45 us (70.3%)
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 | 7.4649e+05 | 262144 | 1 | 3.512e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.26785729115838 (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.38 us (1.8%)
patch tree reduce : 1.35 us (0.4%)
gen split merge : 821.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.10 us (0.3%)
LB compute : 336.94 us (94.4%)
LB move op cnt : 0
LB apply : 4.13 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.77 us (71.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 | 6.6639e+05 | 262144 | 1 | 3.934e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.521676681054817 (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.26 us (1.8%)
patch tree reduce : 1.35 us (0.4%)
gen split merge : 821.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 961.00 ns (0.3%)
LB compute : 321.11 us (94.3%)
LB move op cnt : 0
LB apply : 3.95 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.96 us (68.8%)
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 | 7.8591e+05 | 262144 | 1 | 3.336e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.125376061254062 (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 : 5.98 us (1.5%)
patch tree reduce : 1.71 us (0.4%)
gen split merge : 821.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.18 us (0.3%)
LB compute : 369.64 us (95.0%)
LB move op cnt : 0
LB apply : 3.89 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.32 us (73.1%)
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 | 7.8593e+05 | 262144 | 1 | 3.335e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.124805136877146 (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.23 us (1.6%)
patch tree reduce : 1.38 us (0.4%)
gen split merge : 832.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.3%)
LB compute : 368.86 us (95.0%)
LB move op cnt : 0
LB apply : 3.90 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.17 us (68.2%)
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 | 7.8504e+05 | 262144 | 1 | 3.339e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.10474248755355 (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 : 5.93 us (1.7%)
patch tree reduce : 1.89 us (0.5%)
gen split merge : 842.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.24 us (0.4%)
LB compute : 329.71 us (94.2%)
LB move op cnt : 0
LB apply : 3.88 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.50 us (73.3%)
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 | 7.4125e+05 | 262144 | 1 | 3.537e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.149794978757786 (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.44 us (1.8%)
patch tree reduce : 1.76 us (0.5%)
gen split merge : 822.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.00 us (0.3%)
LB compute : 345.59 us (94.2%)
LB move op cnt : 0
LB apply : 4.21 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.62 us (67.4%)
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 | 7.5440e+05 | 262144 | 1 | 3.475e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.43539393379301 (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 : 5.74 us (1.6%)
patch tree reduce : 1.51 us (0.4%)
gen split merge : 822.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.3%)
LB compute : 350.14 us (94.8%)
LB move op cnt : 0
LB apply : 3.76 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.39 us (68.9%)
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 | 7.0893e+05 | 262144 | 1 | 3.698e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.444190043099471 (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.29 us (1.9%)
patch tree reduce : 1.68 us (0.5%)
gen split merge : 992.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 861.00 ns (0.3%)
LB compute : 316.27 us (94.0%)
LB move op cnt : 0
LB apply : 4.25 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.20 us (72.2%)
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 | 7.1819e+05 | 262144 | 1 | 3.650e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.645128756397055 (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.00 us (0.9%)
patch tree reduce : 1.57 us (0.2%)
gen split merge : 971.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 872.00 ns (0.1%)
LB compute : 658.92 us (96.8%)
LB move op cnt : 0
LB apply : 4.64 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.67 us (76.7%)
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 | 7.9826e+05 | 262144 | 1 | 3.284e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.388489233802314 (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 : 6.16 us (1.8%)
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.04 us (0.3%)
LB compute : 315.68 us (93.9%)
LB move op cnt : 0
LB apply : 3.94 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.14 us (67.6%)
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 | 7.6137e+05 | 262144 | 1 | 3.443e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.583940758999905 (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.23 us (1.7%)
patch tree reduce : 1.81 us (0.5%)
gen split merge : 1.13 us (0.3%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.3%)
LB compute : 341.72 us (94.5%)
LB move op cnt : 0
LB apply : 3.77 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.36 us (70.2%)
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.6144e+05 | 262144 | 1 | 3.443e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.584709189902306 (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 : 6.17 us (1.5%)
patch tree reduce : 1.51 us (0.4%)
gen split merge : 922.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 882.00 ns (0.2%)
LB compute : 387.35 us (95.0%)
LB move op cnt : 0
LB apply : 4.69 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.63 us (72.0%)
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 | 7.5270e+05 | 262144 | 1 | 3.483e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.39360302089702 (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.17 us (1.6%)
patch tree reduce : 1.51 us (0.4%)
gen split merge : 832.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 882.00 ns (0.2%)
LB compute : 361.54 us (95.0%)
LB move op cnt : 0
LB apply : 3.70 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.36 us (70.4%)
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 | 7.5093e+05 | 262144 | 1 | 3.491e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.354026533961207 (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.08 us (1.7%)
patch tree reduce : 1.44 us (0.4%)
gen split merge : 832.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.3%)
LB compute : 340.35 us (94.5%)
LB move op cnt : 0
LB apply : 4.25 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.00 us (69.2%)
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 | 7.8280e+05 | 262144 | 1 | 3.349e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.04736602919763 (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 : 6.23 us (1.6%)
patch tree reduce : 1.33 us (0.3%)
gen split merge : 821.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.09 us (0.3%)
LB compute : 367.64 us (94.8%)
LB move op cnt : 0
LB apply : 3.95 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.81 us (73.7%)
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.5533e+05 | 262144 | 1 | 3.471e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.448255749193486 (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 : 6.10 us (1.8%)
patch tree reduce : 1.42 us (0.4%)
gen split merge : 932.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.20 us (0.4%)
LB compute : 310.94 us (93.9%)
LB move op cnt : 0
LB apply : 4.31 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.51 us (72.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 | 6.9978e+05 | 262144 | 1 | 3.746e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.237631772875963 (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.62 us (2.0%)
patch tree reduce : 1.40 us (0.4%)
gen split merge : 802.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.12 us (0.3%)
LB compute : 310.21 us (93.9%)
LB move op cnt : 0
LB apply : 3.97 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.33 us (68.9%)
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 | 6.9714e+05 | 262144 | 1 | 3.760e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.179381185943692 (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.12 us (1.3%)
patch tree reduce : 1.71 us (0.4%)
gen split merge : 921.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.01 us (0.2%)
LB compute : 468.56 us (95.8%)
LB move op cnt : 0
LB apply : 4.27 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.89 us (72.2%)
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 | 7.8446e+05 | 262144 | 1 | 3.342e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.07989740233612 (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 : 5.77 us (1.5%)
patch tree reduce : 1.34 us (0.4%)
gen split merge : 892.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.13 us (0.3%)
LB compute : 362.98 us (94.7%)
LB move op cnt : 0
LB apply : 3.75 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.59 us (72.1%)
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 | 7.9396e+05 | 262144 | 1 | 3.302e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.2857041082337 (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 : 6.13 us (1.6%)
patch tree reduce : 1.52 us (0.4%)
gen split merge : 932.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 841.00 ns (0.2%)
LB compute : 332.90 us (89.0%)
LB move op cnt : 0
LB apply : 25.59 us (6.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.31 us (73.3%)
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 | 7.8964e+05 | 262144 | 1 | 3.320e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.19064327866765 (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 : 5.92 us (1.4%)
patch tree reduce : 1.67 us (0.4%)
gen split merge : 822.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.44 us (0.4%)
LB compute : 390.57 us (95.0%)
LB move op cnt : 0
LB apply : 4.09 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.71 us (69.2%)
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 | 7.5702e+05 | 262144 | 1 | 3.463e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.479605698063406 (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.06 us (1.6%)
patch tree reduce : 1.28 us (0.3%)
gen split merge : 811.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.01 us (0.3%)
LB compute : 356.31 us (94.8%)
LB move op cnt : 0
LB apply : 3.90 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.30 us (73.1%)
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 | 7.8685e+05 | 262144 | 1 | 3.332e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.128108679565727 (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.41 us (1.8%)
patch tree reduce : 1.51 us (0.4%)
gen split merge : 862.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 881.00 ns (0.2%)
LB compute : 341.49 us (94.5%)
LB move op cnt : 0
LB apply : 4.02 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.66 us (70.3%)
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 | 7.9275e+05 | 262144 | 1 | 3.307e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.25563564741199 (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 : 7.41 us (1.9%)
patch tree reduce : 1.33 us (0.4%)
gen split merge : 1.19 us (0.3%)
split / merge op : 0/0
apply split merge : 1.13 us (0.3%)
LB compute : 359.35 us (94.4%)
LB move op cnt : 0
LB apply : 3.75 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.56 us (70.1%)
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 | 7.8611e+05 | 262144 | 1 | 3.335e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.11012100429277 (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 : 5.98 us (1.4%)
patch tree reduce : 1.49 us (0.4%)
gen split merge : 832.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.02 us (0.2%)
LB compute : 398.71 us (95.2%)
LB move op cnt : 0
LB apply : 4.37 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.84 us (68.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.9324e+05 | 262144 | 1 | 3.305e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.264377347988184 (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.15 us (1.8%)
patch tree reduce : 1.83 us (0.5%)
gen split merge : 842.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.21 us (0.3%)
LB compute : 319.25 us (92.0%)
LB move op cnt : 0
LB apply : 11.29 us (3.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.32 us (72.0%)
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 | 7.9111e+05 | 262144 | 1 | 3.314e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.21710262249503 (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.76 us (1.9%)
patch tree reduce : 1.54 us (0.4%)
gen split merge : 911.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.10 us (0.3%)
LB compute : 326.78 us (93.7%)
LB move op cnt : 0
LB apply : 5.04 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.92 us (73.3%)
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 | 7.2667e+05 | 262144 | 1 | 3.607e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.813966169918718 (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 : 6.20 us (1.8%)
patch tree reduce : 1.47 us (0.4%)
gen split merge : 801.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.3%)
LB compute : 316.40 us (94.1%)
LB move op cnt : 0
LB apply : 4.03 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.63 us (69.9%)
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 | 7.8717e+05 | 262144 | 1 | 3.330e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.129499060627584 (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.69 us (1.8%)
patch tree reduce : 1.57 us (0.4%)
gen split merge : 872.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.49 us (0.4%)
LB compute : 347.92 us (94.3%)
LB move op cnt : 0
LB apply : 4.19 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.69 us (73.0%)
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 | 7.2014e+05 | 262144 | 1 | 3.640e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.670119175038822 (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.49 us (1.8%)
patch tree reduce : 1.34 us (0.4%)
gen split merge : 832.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.20 us (0.3%)
LB compute : 344.03 us (94.2%)
LB move op cnt : 0
LB apply : 4.53 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.96 us (72.1%)
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.8175e+05 | 262144 | 1 | 3.353e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.009744273517036 (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.04 us (1.5%)
patch tree reduce : 1.46 us (0.4%)
gen split merge : 932.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.44 us (0.4%)
LB compute : 382.91 us (94.9%)
LB move op cnt : 0
LB apply : 3.92 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.72 us (72.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 | 7.8606e+05 | 262144 | 1 | 3.335e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.10263270053995 (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.78 us (1.8%)
patch tree reduce : 1.64 us (0.4%)
gen split merge : 892.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.32 us (0.4%)
LB compute : 355.58 us (94.3%)
LB move op cnt : 0
LB apply : 4.30 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.17 us (71.2%)
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 | 6.5750e+05 | 262144 | 1 | 3.987e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.3046906340282 (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 : 7.07 us (1.8%)
patch tree reduce : 1.55 us (0.4%)
gen split merge : 821.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.24 us (0.3%)
LB compute : 369.81 us (94.5%)
LB move op cnt : 0
LB apply : 4.16 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.69 us (73.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 | 7.8024e+05 | 262144 | 1 | 3.360e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.974166381960902 (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 : 7.03 us (1.7%)
patch tree reduce : 1.40 us (0.3%)
gen split merge : 972.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 981.00 ns (0.2%)
LB compute : 388.71 us (94.9%)
LB move op cnt : 0
LB apply : 3.82 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.99 us (73.9%)
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 | 7.7442e+05 | 262144 | 1 | 3.385e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.846671483375218 (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 : 5.96 us (1.6%)
patch tree reduce : 1.23 us (0.3%)
gen split merge : 932.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.01 us (0.3%)
LB compute : 363.64 us (94.7%)
LB move op cnt : 0
LB apply : 4.07 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.85 us (71.7%)
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 | 7.7748e+05 | 262144 | 1 | 3.372e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.912362224130394 (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 : 6.66 us (1.8%)
patch tree reduce : 1.58 us (0.4%)
gen split merge : 912.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.29 us (0.3%)
LB compute : 357.15 us (94.5%)
LB move op cnt : 0
LB apply : 3.76 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.41 us (69.8%)
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 | 7.8170e+05 | 262144 | 1 | 3.353e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.003277125619096 (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 : 6.96 us (1.7%)
patch tree reduce : 1.82 us (0.4%)
gen split merge : 1.00 us (0.2%)
split / merge op : 0/0
apply split merge : 1.31 us (0.3%)
LB compute : 394.22 us (94.4%)
LB move op cnt : 0
LB apply : 4.65 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.28 us (75.0%)
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 | 7.8028e+05 | 262144 | 1 | 3.360e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.971299753474437 (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.21 us (1.9%)
patch tree reduce : 1.40 us (0.4%)
gen split merge : 1.09 us (0.3%)
split / merge op : 0/0
apply split merge : 1.22 us (0.3%)
LB compute : 360.83 us (94.5%)
LB move op cnt : 0
LB apply : 3.78 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.45 us (70.1%)
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.7673e+05 | 262144 | 1 | 3.375e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.893240673635123 (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.65 us (1.8%)
patch tree reduce : 1.44 us (0.4%)
gen split merge : 1.21 us (0.3%)
split / merge op : 0/0
apply split merge : 902.00 ns (0.2%)
LB compute : 349.84 us (94.4%)
LB move op cnt : 0
LB apply : 4.00 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.52 us (71.4%)
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 | 7.7264e+05 | 262144 | 1 | 3.393e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.80349206192141 (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 : 6.38 us (1.5%)
patch tree reduce : 1.62 us (0.4%)
gen split merge : 1.09 us (0.3%)
split / merge op : 0/0
apply split merge : 901.00 ns (0.2%)
LB compute : 403.15 us (95.0%)
LB move op cnt : 0
LB apply : 4.68 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.90 us (71.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 | 7.8781e+05 | 262144 | 1 | 3.327e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.13245797428827 (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 : 6.02 us (1.5%)
patch tree reduce : 1.82 us (0.5%)
gen split merge : 831.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 971.00 ns (0.2%)
LB compute : 381.06 us (94.9%)
LB move op cnt : 0
LB apply : 4.01 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.67 us (70.4%)
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 | 7.9164e+05 | 262144 | 1 | 3.311e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.214794691027905 (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.55 us (1.8%)
patch tree reduce : 1.44 us (0.4%)
gen split merge : 931.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.11 us (0.3%)
LB compute : 341.00 us (94.5%)
LB move op cnt : 0
LB apply : 3.57 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.08 us (68.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 | 7.7413e+05 | 262144 | 1 | 3.386e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.833233070212888 (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 : 6.51 us (1.8%)
patch tree reduce : 1.74 us (0.5%)
gen split merge : 832.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 902.00 ns (0.2%)
LB compute : 349.87 us (94.7%)
LB move op cnt : 0
LB apply : 3.62 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.11 us (66.6%)
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 | 7.1836e+05 | 262144 | 1 | 3.649e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.619703712488358 (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 : 6.11 us (1.7%)
patch tree reduce : 1.41 us (0.4%)
gen split merge : 901.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.37 us (0.4%)
LB compute : 349.74 us (94.6%)
LB move op cnt : 0
LB apply : 4.01 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.06 us (66.9%)
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 | 7.9392e+05 | 262144 | 1 | 3.302e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.261617843709434 (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.11 us (1.5%)
patch tree reduce : 1.50 us (0.4%)
gen split merge : 922.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 882.00 ns (0.2%)
LB compute : 389.27 us (95.1%)
LB move op cnt : 0
LB apply : 4.29 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.01 us (72.1%)
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.8469e+05 | 262144 | 1 | 3.341e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.06003743182293 (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.59 us (1.7%)
patch tree reduce : 1.32 us (0.3%)
gen split merge : 1.12 us (0.3%)
split / merge op : 0/0
apply split merge : 1.23 us (0.3%)
LB compute : 368.45 us (94.7%)
LB move op cnt : 0
LB apply : 4.21 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.73 us (72.5%)
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 | 7.5440e+05 | 262144 | 1 | 3.475e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.40062376312733 (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 : 6.52 us (2.0%)
patch tree reduce : 1.53 us (0.5%)
gen split merge : 892.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.09 us (0.3%)
LB compute : 306.45 us (93.7%)
LB move op cnt : 0
LB apply : 3.84 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.69 us (72.2%)
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 | 7.4070e+05 | 262144 | 1 | 3.539e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.10204900192408 (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.96 us (2.0%)
patch tree reduce : 1.47 us (0.4%)
gen split merge : 1.23 us (0.4%)
split / merge op : 0/0
apply split merge : 1.04 us (0.3%)
LB compute : 318.75 us (93.8%)
LB move op cnt : 0
LB apply : 4.24 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.38 us (68.9%)
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 | 7.1335e+05 | 262144 | 1 | 3.675e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.506821054125558 (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.59 us (1.8%)
patch tree reduce : 1.47 us (0.4%)
gen split merge : 852.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.3%)
LB compute : 341.19 us (94.4%)
LB move op cnt : 0
LB apply : 4.05 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.42 us (72.4%)
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 | 7.8829e+05 | 262144 | 1 | 3.325e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.134986799279172 (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.10 us (1.8%)
patch tree reduce : 1.63 us (0.5%)
gen split merge : 841.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 871.00 ns (0.3%)
LB compute : 327.00 us (94.3%)
LB move op cnt : 0
LB apply : 3.84 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.56 us (70.3%)
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 | 7.9605e+05 | 262144 | 1 | 3.293e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.302646476095397 (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.24 us (1.7%)
patch tree reduce : 1.36 us (0.4%)
gen split merge : 832.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.3%)
LB compute : 356.15 us (94.5%)
LB move op cnt : 0
LB apply : 4.38 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.35 us (73.6%)
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 | 7.5639e+05 | 262144 | 1 | 3.466e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.439767552401648 (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 : 6.52 us (1.8%)
patch tree reduce : 1.52 us (0.4%)
gen split merge : 1.09 us (0.3%)
split / merge op : 0/0
apply split merge : 902.00 ns (0.3%)
LB compute : 333.72 us (94.1%)
LB move op cnt : 0
LB apply : 4.19 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.05 us (70.7%)
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 | 7.7658e+05 | 262144 | 1 | 3.376e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.877871438906585 (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 : 6.09 us (1.8%)
patch tree reduce : 1.52 us (0.4%)
gen split merge : 832.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 901.00 ns (0.3%)
LB compute : 322.90 us (94.2%)
LB move op cnt : 0
LB apply : 4.04 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.28 us (73.8%)
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 | 7.2970e+05 | 262144 | 1 | 3.592e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.858192581261239 (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.74 us (1.9%)
patch tree reduce : 1.94 us (0.5%)
gen split merge : 822.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.14 us (0.3%)
LB compute : 334.49 us (94.1%)
LB move op cnt : 0
LB apply : 4.07 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.48 us (68.2%)
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.0096e+05 | 262144 | 1 | 3.273e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.40614169507809 (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 : 6.17 us (1.5%)
patch tree reduce : 1.32 us (0.3%)
gen split merge : 932.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.06 us (0.3%)
LB compute : 381.17 us (95.0%)
LB move op cnt : 0
LB apply : 4.28 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.63 us (72.4%)
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 | 7.9111e+05 | 262144 | 1 | 3.314e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.19124968548252 (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.12 us (1.7%)
patch tree reduce : 1.38 us (0.4%)
gen split merge : 972.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.35 us (0.4%)
LB compute : 340.09 us (94.3%)
LB move op cnt : 0
LB apply : 4.17 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.55 us (69.8%)
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 | 7.8257e+05 | 262144 | 1 | 3.350e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.00486275728726 (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.32 us (0.6%)
patch tree reduce : 1.43 us (0.1%)
gen split merge : 832.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 872.00 ns (0.1%)
LB compute : 1.11 ms (98.1%)
LB move op cnt : 0
LB apply : 4.52 us (0.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.22 us (77.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 | 7.8429e+05 | 262144 | 1 | 3.342e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.041394310676804 (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.06 us (1.7%)
patch tree reduce : 1.42 us (0.4%)
gen split merge : 932.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.3%)
LB compute : 329.51 us (94.3%)
LB move op cnt : 0
LB apply : 4.09 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.76 us (71.6%)
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 | 7.8819e+05 | 262144 | 1 | 3.326e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.125416154181913 (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.35 us (1.8%)
patch tree reduce : 1.41 us (0.4%)
gen split merge : 832.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.22 us (0.4%)
LB compute : 326.11 us (94.2%)
LB move op cnt : 0
LB apply : 4.24 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.58 us (69.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.8636e+05 | 262144 | 1 | 3.334e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.08485383494767 (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 : 6.09 us (0.5%)
patch tree reduce : 1.55 us (0.1%)
gen split merge : 922.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 921.00 ns (0.1%)
LB compute : 1.29 ms (98.4%)
LB move op cnt : 0
LB apply : 4.93 us (0.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.25 us (74.5%)
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 | 7.8431e+05 | 262144 | 1 | 3.342e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.03960566894364 (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.43 us (1.7%)
patch tree reduce : 1.54 us (0.4%)
gen split merge : 832.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.08 us (0.3%)
LB compute : 354.68 us (94.7%)
LB move op cnt : 0
LB apply : 3.60 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.21 us (8.8%)
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 | 7.8235e+05 | 262144 | 1 | 3.351e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.996144475641582 (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 : 5.94 us (1.5%)
patch tree reduce : 1.37 us (0.3%)
gen split merge : 942.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.11 us (0.3%)
LB compute : 383.09 us (95.1%)
LB move op cnt : 0
LB apply : 4.29 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.31 us (67.9%)
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 | 7.9180e+05 | 262144 | 1 | 3.311e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.200813251935156 (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.63 us (1.1%)
patch tree reduce : 1.64 us (0.3%)
gen split merge : 912.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.2%)
LB compute : 603.76 us (96.6%)
LB move op cnt : 0
LB apply : 4.30 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.86 us (72.3%)
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 | 6.4342e+05 | 262144 | 1 | 4.074e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.976783952954502 (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.21 us (1.5%)
patch tree reduce : 1.45 us (0.4%)
gen split merge : 902.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 942.00 ns (0.2%)
LB compute : 390.23 us (95.2%)
LB move op cnt : 0
LB apply : 4.01 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.70 us (73.7%)
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 | 7.8710e+05 | 262144 | 1 | 3.331e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.097182665185272 (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.09 us (1.7%)
patch tree reduce : 1.84 us (0.5%)
gen split merge : 831.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 941.00 ns (0.3%)
LB compute : 342.75 us (94.4%)
LB move op cnt : 0
LB apply : 3.72 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.37 us (73.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 | 7.2678e+05 | 262144 | 1 | 3.607e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.786222856166967 (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 : 6.22 us (1.9%)
patch tree reduce : 1.57 us (0.5%)
gen split merge : 851.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 981.00 ns (0.3%)
LB compute : 315.16 us (94.0%)
LB move op cnt : 0
LB apply : 4.21 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.43 us (72.0%)
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.2362e+05 | 262144 | 1 | 3.623e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.716859043896179 (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.77 us (2.0%)
patch tree reduce : 1.40 us (0.4%)
gen split merge : 1.12 us (0.3%)
split / merge op : 0/0
apply split merge : 932.00 ns (0.3%)
LB compute : 317.49 us (93.7%)
LB move op cnt : 0
LB apply : 4.12 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.52 us (69.2%)
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.8683e+05 | 262144 | 1 | 3.332e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.089021502758825 (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.70 us (1.7%)
patch tree reduce : 1.58 us (0.4%)
gen split merge : 1.07 us (0.3%)
split / merge op : 0/0
apply split merge : 1.06 us (0.3%)
LB compute : 377.47 us (94.8%)
LB move op cnt : 0
LB apply : 4.24 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.99 us (73.0%)
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 | 7.8950e+05 | 262144 | 1 | 3.320e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.146478578130207 (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 : 6.32 us (1.8%)
patch tree reduce : 1.95 us (0.5%)
gen split merge : 911.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 872.00 ns (0.2%)
LB compute : 338.53 us (94.1%)
LB move op cnt : 0
LB apply : 4.32 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.74 us (72.0%)
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 | 7.4015e+05 | 262144 | 1 | 3.542e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.073838378257932 (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 : 5.92 us (1.6%)
patch tree reduce : 1.78 us (0.5%)
gen split merge : 1.15 us (0.3%)
split / merge op : 0/0
apply split merge : 952.00 ns (0.3%)
LB compute : 356.62 us (94.6%)
LB move op cnt : 0
LB apply : 4.01 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.95 us (69.7%)
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 | 7.3705e+05 | 262144 | 1 | 3.557e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.00586737538259 (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 : 5.97 us (1.7%)
patch tree reduce : 1.67 us (0.5%)
gen split merge : 871.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.03 us (0.3%)
LB compute : 324.59 us (94.1%)
LB move op cnt : 0
LB apply : 3.88 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.87 us (70.6%)
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.9030e+05 | 262144 | 1 | 3.317e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.16153595301503 (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.03 us (1.7%)
patch tree reduce : 1.40 us (0.4%)
gen split merge : 942.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 891.00 ns (0.3%)
LB compute : 330.15 us (94.3%)
LB move op cnt : 0
LB apply : 4.11 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.75 us (75.0%)
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.9294e+05 | 262144 | 1 | 3.306e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.21808923817319 (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 : 5.91 us (1.7%)
patch tree reduce : 1.77 us (0.5%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.3%)
LB compute : 324.45 us (94.1%)
LB move op cnt : 0
LB apply : 3.85 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.48 us (70.8%)
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 | 7.7860e+05 | 262144 | 1 | 3.367e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.90605945935367 (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 : 6.07 us (1.6%)
patch tree reduce : 1.43 us (0.4%)
gen split merge : 1.04 us (0.3%)
split / merge op : 0/0
apply split merge : 991.00 ns (0.3%)
LB compute : 353.44 us (94.6%)
LB move op cnt : 0
LB apply : 4.07 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.28 us (71.4%)
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 | 7.8351e+05 | 262144 | 1 | 3.346e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.011894245264216 (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.05 us (1.6%)
patch tree reduce : 1.42 us (0.4%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.00 us (0.3%)
LB compute : 356.20 us (94.9%)
LB move op cnt : 0
LB apply : 3.94 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.27 us (68.3%)
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 | 7.8035e+05 | 262144 | 1 | 3.359e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.942526799754496 (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 : 5.95 us (1.7%)
patch tree reduce : 1.60 us (0.5%)
gen split merge : 1.01 us (0.3%)
split / merge op : 0/0
apply split merge : 1.07 us (0.3%)
LB compute : 326.64 us (94.3%)
LB move op cnt : 0
LB apply : 3.72 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.58 us (68.0%)
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.8426e+05 | 262144 | 1 | 3.343e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.026777767292877 (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.25 us (1.7%)
patch tree reduce : 1.75 us (0.5%)
gen split merge : 1.05 us (0.3%)
split / merge op : 0/0
apply split merge : 892.00 ns (0.2%)
LB compute : 348.03 us (94.5%)
LB move op cnt : 0
LB apply : 4.00 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.32 us (69.0%)
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 | 7.3373e+05 | 262144 | 1 | 3.573e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.929139100167687 (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 : 6.68 us (1.6%)
patch tree reduce : 1.54 us (0.4%)
gen split merge : 1.00 us (0.2%)
split / merge op : 0/0
apply split merge : 1.11 us (0.3%)
LB compute : 399.28 us (94.7%)
LB move op cnt : 0
LB apply : 4.09 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.27 us (74.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 | 7.8670e+05 | 262144 | 1 | 3.332e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.078292724405983 (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.98 us (1.8%)
patch tree reduce : 2.12 us (0.5%)
gen split merge : 1.01 us (0.3%)
split / merge op : 0/0
apply split merge : 941.00 ns (0.2%)
LB compute : 365.51 us (94.2%)
LB move op cnt : 0
LB apply : 4.47 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.90 us (72.8%)
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 | 7.4506e+05 | 262144 | 1 | 3.518e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.173677175527718 (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.26 us (1.7%)
patch tree reduce : 1.69 us (0.5%)
gen split merge : 832.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 932.00 ns (0.3%)
LB compute : 345.38 us (94.5%)
LB move op cnt : 0
LB apply : 4.31 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.80 us (71.0%)
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 | 7.8349e+05 | 262144 | 1 | 3.346e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8.991364988560703 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 427.389489044 (s) [Godunov][rank=0]
Info: dump to _to_trash/ramses_kh/periodic_0015.vtk [VTK Dump][rank=0]
- took 32.45 ms, bandwidth = 1.26 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 : 6.15 us (1.5%)
patch tree reduce : 1.66 us (0.4%)
gen split merge : 832.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.13 us (0.3%)
LB compute : 385.42 us (95.0%)
LB move op cnt : 0
LB apply : 4.02 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.47 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 | 6.4860e+05 | 262144 | 1 | 4.042e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.078877049791 (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 : 6.37 us (1.6%)
patch tree reduce : 1.49 us (0.4%)
gen split merge : 1.23 us (0.3%)
split / merge op : 0/0
apply split merge : 932.00 ns (0.2%)
LB compute : 372.91 us (94.8%)
LB move op cnt : 0
LB apply : 4.19 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.28 us (67.4%)
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 | 6.9209e+05 | 262144 | 1 | 3.788e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.02213840885777 (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.03 us (1.5%)
patch tree reduce : 1.64 us (0.4%)
gen split merge : 932.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.10 us (0.3%)
LB compute : 377.63 us (95.0%)
LB move op cnt : 0
LB apply : 3.92 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.00 us (70.7%)
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 | 7.6454e+05 | 262144 | 1 | 3.429e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.594079031219746 (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 : 6.02 us (1.7%)
patch tree reduce : 1.50 us (0.4%)
gen split merge : 822.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.10 us (0.3%)
LB compute : 334.77 us (94.2%)
LB move op cnt : 0
LB apply : 4.20 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.82 us (71.2%)
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.1494e+05 | 262144 | 1 | 3.667e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.51663457656734 (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.29 us (1.7%)
patch tree reduce : 1.53 us (0.4%)
gen split merge : 1.07 us (0.3%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.3%)
LB compute : 346.35 us (94.3%)
LB move op cnt : 0
LB apply : 4.32 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.00 us (72.6%)
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 | 6.6115e+05 | 262144 | 1 | 3.965e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.348579630042341 (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.30 us (1.8%)
patch tree reduce : 1.65 us (0.5%)
gen split merge : 841.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.01 us (0.3%)
LB compute : 321.45 us (94.1%)
LB move op cnt : 0
LB apply : 3.80 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.32 us (72.3%)
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 | 6.7893e+05 | 262144 | 1 | 3.861e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.733750347087371 (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.65 us (2.0%)
patch tree reduce : 1.45 us (0.4%)
gen split merge : 922.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 872.00 ns (0.3%)
LB compute : 310.07 us (94.0%)
LB move op cnt : 0
LB apply : 3.71 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.24 us (68.5%)
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 | 7.9176e+05 | 262144 | 1 | 3.311e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.181617161535197 (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 : 6.22 us (1.8%)
patch tree reduce : 1.75 us (0.5%)
gen split merge : 901.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.37 us (0.4%)
LB compute : 315.59 us (93.7%)
LB move op cnt : 0
LB apply : 4.57 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.28 us (71.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 | 7.8991e+05 | 262144 | 1 | 3.319e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.140671142711753 (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 : 5.81 us (1.6%)
patch tree reduce : 1.37 us (0.4%)
gen split merge : 931.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 981.00 ns (0.3%)
LB compute : 348.29 us (94.6%)
LB move op cnt : 0
LB apply : 4.21 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.08 us (72.6%)
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 | 7.9347e+05 | 262144 | 1 | 3.304e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.21726193149301 (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 : 6.56 us (1.9%)
patch tree reduce : 1.87 us (0.5%)
gen split merge : 852.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.20 us (0.4%)
LB compute : 320.43 us (93.8%)
LB move op cnt : 0
LB apply : 3.86 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.40 us (68.7%)
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 | 7.0894e+05 | 262144 | 1 | 3.698e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.382442722394023 (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 : 5.97 us (1.7%)
patch tree reduce : 1.68 us (0.5%)
gen split merge : 822.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.00 us (0.3%)
LB compute : 325.10 us (94.3%)
LB move op cnt : 0
LB apply : 3.67 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.17 us (69.1%)
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.0331e+05 | 262144 | 1 | 3.727e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.259659139406741 (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 : 5.83 us (1.5%)
patch tree reduce : 1.42 us (0.4%)
gen split merge : 871.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 961.00 ns (0.3%)
LB compute : 364.16 us (94.9%)
LB move op cnt : 0
LB apply : 3.87 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.14 us (70.7%)
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 | 7.2418e+05 | 262144 | 1 | 3.620e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.711811625458349 (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 : 6.08 us (1.5%)
patch tree reduce : 1.48 us (0.4%)
gen split merge : 951.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 941.00 ns (0.2%)
LB compute : 391.21 us (95.0%)
LB move op cnt : 0
LB apply : 4.47 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.93 us (71.0%)
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.7305e+05 | 262144 | 1 | 3.391e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.771222811090098 (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.33 us (1.6%)
patch tree reduce : 1.58 us (0.4%)
gen split merge : 831.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 981.00 ns (0.2%)
LB compute : 377.32 us (94.8%)
LB move op cnt : 0
LB apply : 4.05 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.06 us (69.3%)
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 | 7.8314e+05 | 262144 | 1 | 3.347e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.98940199017553 (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.60 us (1.9%)
patch tree reduce : 1.49 us (0.4%)
gen split merge : 852.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.15 us (0.3%)
LB compute : 325.73 us (94.2%)
LB move op cnt : 0
LB apply : 3.90 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.49 us (68.5%)
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 | 7.8506e+05 | 262144 | 1 | 3.339e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.0303369913047 (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 : 5.97 us (1.6%)
patch tree reduce : 1.50 us (0.4%)
gen split merge : 872.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 901.00 ns (0.2%)
LB compute : 352.59 us (94.6%)
LB move op cnt : 0
LB apply : 3.97 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.31 us (76.1%)
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 | 7.4711e+05 | 262144 | 1 | 3.509e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.2063566139033 (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.34 us (1.6%)
patch tree reduce : 1.79 us (0.5%)
gen split merge : 941.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.00 us (0.3%)
LB compute : 368.79 us (94.6%)
LB move op cnt : 0
LB apply : 4.37 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.54 us (69.3%)
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 | 7.7447e+05 | 262144 | 1 | 3.385e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.79889415912583 (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 : 5.88 us (1.5%)
patch tree reduce : 1.33 us (0.3%)
gen split merge : 811.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.3%)
LB compute : 372.70 us (95.0%)
LB move op cnt : 0
LB apply : 3.80 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.15 us (75.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 | 7.7977e+05 | 262144 | 1 | 3.362e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.9130845991097 (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 : 6.33 us (1.7%)
patch tree reduce : 1.67 us (0.4%)
gen split merge : 922.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.3%)
LB compute : 354.32 us (94.5%)
LB move op cnt : 0
LB apply : 3.98 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.34 us (69.4%)
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 | 7.7797e+05 | 262144 | 1 | 3.370e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.873366044918026 (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 : 6.35 us (1.6%)
patch tree reduce : 1.37 us (0.3%)
gen split merge : 972.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.2%)
LB compute : 372.75 us (94.8%)
LB move op cnt : 0
LB apply : 3.97 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.04 us (66.0%)
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 | 7.8519e+05 | 262144 | 1 | 3.339e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.029103100484257 (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.36 us (1.5%)
patch tree reduce : 1.48 us (0.4%)
gen split merge : 952.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 902.00 ns (0.2%)
LB compute : 396.80 us (95.2%)
LB move op cnt : 0
LB apply : 3.80 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.01 us (73.2%)
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 | 7.6608e+05 | 262144 | 1 | 3.422e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.613886113292395 (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 : 5.65 us (1.6%)
patch tree reduce : 1.43 us (0.4%)
gen split merge : 822.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.12 us (0.3%)
LB compute : 344.34 us (94.8%)
LB move op cnt : 0
LB apply : 3.75 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.28 us (67.4%)
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 | 7.8452e+05 | 262144 | 1 | 3.341e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.012933031460616 (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.10 us (1.6%)
patch tree reduce : 1.31 us (0.3%)
gen split merge : 841.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.06 us (0.3%)
LB compute : 368.15 us (94.7%)
LB move op cnt : 0
LB apply : 4.39 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.01 us (74.4%)
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 | 7.3417e+05 | 262144 | 1 | 3.571e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.920273689414332 (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.32 us (1.8%)
patch tree reduce : 1.42 us (0.4%)
gen split merge : 932.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.10 us (0.3%)
LB compute : 339.73 us (94.5%)
LB move op cnt : 0
LB apply : 3.74 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.06 us (68.9%)
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.8055e+05 | 262144 | 1 | 3.358e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.925296729223028 (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.78 us (1.9%)
patch tree reduce : 1.81 us (0.5%)
gen split merge : 941.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.05 us (0.3%)
LB compute : 338.78 us (94.0%)
LB move op cnt : 0
LB apply : 3.78 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.52 us (73.0%)
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 | 7.8212e+05 | 262144 | 1 | 3.352e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.95839590993824 (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.50 us (1.7%)
patch tree reduce : 1.61 us (0.4%)
gen split merge : 942.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.18 us (0.3%)
LB compute : 355.44 us (94.5%)
LB move op cnt : 0
LB apply : 4.11 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.74 us (69.8%)
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 | 7.6986e+05 | 262144 | 1 | 3.405e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.691901528427675 (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.27 us (1.6%)
patch tree reduce : 1.54 us (0.4%)
gen split merge : 972.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.3%)
LB compute : 361.72 us (94.7%)
LB move op cnt : 0
LB apply : 4.26 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.87 us (74.1%)
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 | 7.2716e+05 | 262144 | 1 | 3.605e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.765377192684571 (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 : 5.89 us (1.7%)
patch tree reduce : 1.45 us (0.4%)
gen split merge : 962.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.13 us (0.3%)
LB compute : 335.10 us (94.5%)
LB move op cnt : 0
LB apply : 4.13 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.92 us (64.7%)
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 | 6.9392e+05 | 262144 | 1 | 3.778e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.04389537001085 (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.43 us (1.9%)
patch tree reduce : 1.44 us (0.4%)
gen split merge : 852.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.06 us (0.3%)
LB compute : 324.65 us (94.2%)
LB move op cnt : 0
LB apply : 4.08 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.31 us (73.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 | 7.0720e+05 | 262144 | 1 | 3.707e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.330969782685623 (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 : 5.98 us (1.6%)
patch tree reduce : 1.66 us (0.5%)
gen split merge : 942.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 862.00 ns (0.2%)
LB compute : 345.13 us (94.6%)
LB move op cnt : 0
LB apply : 3.92 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.34 us (70.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.4852e+05 | 262144 | 1 | 3.502e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.22602574281728 (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 : 6.18 us (1.9%)
patch tree reduce : 1.40 us (0.4%)
gen split merge : 822.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 882.00 ns (0.3%)
LB compute : 312.80 us (94.0%)
LB move op cnt : 0
LB apply : 4.13 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.55 us (70.8%)
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 | 7.8564e+05 | 262144 | 1 | 3.337e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.02998712815033 (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.50 us (2.0%)
patch tree reduce : 1.42 us (0.4%)
gen split merge : 821.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.43 us (0.4%)
LB compute : 311.63 us (93.8%)
LB move op cnt : 0
LB apply : 4.26 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.52 us (69.8%)
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 | 7.7224e+05 | 262144 | 1 | 3.395e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.738605688986215 (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 : 5.82 us (1.6%)
patch tree reduce : 1.47 us (0.4%)
gen split merge : 832.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 892.00 ns (0.2%)
LB compute : 343.09 us (94.6%)
LB move op cnt : 0
LB apply : 4.35 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.21 us (66.6%)
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 | 7.8969e+05 | 262144 | 1 | 3.320e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.115989009011212 (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.20 us (1.5%)
patch tree reduce : 1.54 us (0.4%)
gen split merge : 1.19 us (0.3%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.2%)
LB compute : 379.58 us (94.5%)
LB move op cnt : 0
LB apply : 4.88 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.25 us (74.8%)
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 | 7.7919e+05 | 262144 | 1 | 3.364e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.88763123847231 (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.66 us (1.7%)
patch tree reduce : 1.66 us (0.4%)
gen split merge : 831.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.12 us (0.3%)
LB compute : 360.55 us (94.4%)
LB move op cnt : 0
LB apply : 4.29 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.44 us (71.5%)
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 | 7.8280e+05 | 262144 | 1 | 3.349e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.96515043337665 (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 : 6.23 us (1.7%)
patch tree reduce : 1.36 us (0.4%)
gen split merge : 891.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.15 us (0.3%)
LB compute : 345.90 us (94.6%)
LB move op cnt : 0
LB apply : 3.87 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.40 us (71.6%)
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 | 7.7525e+05 | 262144 | 1 | 3.381e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.800582121247032 (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.17 us (1.5%)
patch tree reduce : 1.42 us (0.3%)
gen split merge : 822.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.33 us (0.3%)
LB compute : 388.98 us (95.0%)
LB move op cnt : 0
LB apply : 4.32 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.11 us (74.0%)
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 | 7.4052e+05 | 262144 | 1 | 3.540e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.047090675146013 (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.08 us (1.5%)
patch tree reduce : 1.49 us (0.4%)
gen split merge : 821.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.30 us (0.3%)
LB compute : 384.20 us (95.0%)
LB move op cnt : 0
LB apply : 3.88 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.60 us (71.8%)
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 | 6.6473e+05 | 262144 | 1 | 3.944e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.404159415224955 (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.34 us (1.5%)
patch tree reduce : 1.41 us (0.3%)
gen split merge : 971.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.00 us (0.2%)
LB compute : 407.49 us (95.2%)
LB move op cnt : 0
LB apply : 3.95 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.79 us (70.4%)
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.2979e+05 | 262144 | 1 | 3.592e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.813107319800446 (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 : 5.99 us (1.6%)
patch tree reduce : 1.55 us (0.4%)
gen split merge : 851.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.10 us (0.3%)
LB compute : 360.05 us (94.8%)
LB move op cnt : 0
LB apply : 4.02 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.24 us (67.2%)
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 | 7.7023e+05 | 262144 | 1 | 3.403e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.688519835026586 (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.96 us (1.8%)
patch tree reduce : 1.47 us (0.4%)
gen split merge : 993.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 882.00 ns (0.2%)
LB compute : 363.02 us (94.6%)
LB move op cnt : 0
LB apply : 4.14 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.39 us (68.7%)
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 | 7.3123e+05 | 262144 | 1 | 3.585e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.8427130234322 (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.07 us (1.5%)
patch tree reduce : 1.49 us (0.4%)
gen split merge : 942.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 882.00 ns (0.2%)
LB compute : 385.39 us (95.0%)
LB move op cnt : 0
LB apply : 4.28 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.80 us (71.4%)
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 | 7.8158e+05 | 262144 | 1 | 3.354e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.932891437951664 (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 : 6.14 us (1.4%)
patch tree reduce : 1.32 us (0.3%)
gen split merge : 872.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.02 us (0.2%)
LB compute : 406.93 us (95.4%)
LB move op cnt : 0
LB apply : 3.90 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.82 us (73.0%)
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 | 7.1496e+05 | 262144 | 1 | 3.667e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.488523392374042 (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 : 6.25 us (1.6%)
patch tree reduce : 1.52 us (0.4%)
gen split merge : 1.18 us (0.3%)
split / merge op : 0/0
apply split merge : 1.02 us (0.3%)
LB compute : 380.88 us (94.8%)
LB move op cnt : 0
LB apply : 4.09 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.54 us (69.4%)
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 | 7.8324e+05 | 262144 | 1 | 3.347e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.966542593625682 (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 (1.6%)
patch tree reduce : 1.64 us (0.4%)
gen split merge : 842.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.08 us (0.3%)
LB compute : 389.62 us (94.9%)
LB move op cnt : 0
LB apply : 4.22 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.96 us (70.8%)
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 | 7.8400e+05 | 262144 | 1 | 3.344e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.98181466951487 (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.60 us (0.2%)
patch tree reduce : 1.53 us (0.0%)
gen split merge : 1.03 us (0.0%)
split / merge op : 0/0
apply split merge : 1.07 us (0.0%)
LB compute : 4.89 ms (99.5%)
LB move op cnt : 0
LB apply : 4.58 us (0.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.59 us (80.1%)
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.5202e+05 | 262144 | 1 | 4.020e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.121965700795771 (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.19 us (1.4%)
patch tree reduce : 1.40 us (0.3%)
gen split merge : 932.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.09 us (0.3%)
LB compute : 414.32 us (95.4%)
LB move op cnt : 0
LB apply : 4.12 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.73 us (71.6%)
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 | 6.9588e+05 | 262144 | 1 | 3.767e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.070824103109036 (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.20 us (1.5%)
patch tree reduce : 1.37 us (0.3%)
gen split merge : 832.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.32 us (0.3%)
LB compute : 385.56 us (95.0%)
LB move op cnt : 0
LB apply : 3.80 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.05 us (74.3%)
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 | 7.4234e+05 | 262144 | 1 | 3.531e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.075813569832043 (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.28 us (1.6%)
patch tree reduce : 1.84 us (0.5%)
gen split merge : 821.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.20 us (0.3%)
LB compute : 366.02 us (94.7%)
LB move op cnt : 0
LB apply : 3.85 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.45 us (70.0%)
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 | 7.8219e+05 | 262144 | 1 | 3.351e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.93753278804086 (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.26 us (1.5%)
patch tree reduce : 1.52 us (0.4%)
gen split merge : 821.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.05 us (0.2%)
LB compute : 406.16 us (95.2%)
LB move op cnt : 0
LB apply : 4.01 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.14 us (73.8%)
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 | 7.1911e+05 | 262144 | 1 | 3.645e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.570353428176208 (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.42 us (1.8%)
patch tree reduce : 1.49 us (0.4%)
gen split merge : 1.21 us (0.3%)
split / merge op : 0/0
apply split merge : 971.00 ns (0.3%)
LB compute : 331.78 us (94.2%)
LB move op cnt : 0
LB apply : 3.68 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.95 us (70.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 | 7.3785e+05 | 262144 | 1 | 3.553e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.974939844415239 (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.71 us (1.9%)
patch tree reduce : 1.53 us (0.4%)
gen split merge : 1.01 us (0.3%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.3%)
LB compute : 333.21 us (94.0%)
LB move op cnt : 0
LB apply : 3.94 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.60 us (71.8%)
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 | 7.1237e+05 | 262144 | 1 | 3.680e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.422151525036497 (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 : 5.68 us (1.7%)
patch tree reduce : 1.43 us (0.4%)
gen split merge : 862.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.21 us (0.4%)
LB compute : 320.91 us (94.2%)
LB move op cnt : 0
LB apply : 3.79 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.22 us (66.6%)
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 | 7.7439e+05 | 262144 | 1 | 3.385e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.763637369828444 (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.43 us (1.8%)
patch tree reduce : 1.46 us (0.4%)
gen split merge : 971.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.24 us (0.3%)
LB compute : 345.15 us (94.3%)
LB move op cnt : 0
LB apply : 3.90 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.50 us (69.0%)
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 | 7.8538e+05 | 262144 | 1 | 3.338e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.000299050418267 (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.18 us (1.7%)
patch tree reduce : 1.31 us (0.4%)
gen split merge : 1.17 us (0.3%)
split / merge op : 0/0
apply split merge : 1.00 us (0.3%)
LB compute : 339.74 us (94.5%)
LB move op cnt : 0
LB apply : 3.76 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.04 us (72.1%)
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 | 7.8352e+05 | 262144 | 1 | 3.346e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.958771674230796 (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.27 us (1.7%)
patch tree reduce : 1.38 us (0.4%)
gen split merge : 822.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.3%)
LB compute : 339.93 us (94.6%)
LB move op cnt : 0
LB apply : 3.84 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.37 us (71.4%)
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.2540e+05 | 262144 | 1 | 3.614e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.699543200884936 (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.25 us (1.7%)
patch tree reduce : 1.79 us (0.5%)
gen split merge : 1.20 us (0.3%)
split / merge op : 0/0
apply split merge : 1.03 us (0.3%)
LB compute : 341.06 us (94.4%)
LB move op cnt : 0
LB apply : 3.57 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.41 us (70.5%)
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 | 7.7868e+05 | 262144 | 1 | 3.367e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.851523696831762 (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 : 5.99 us (1.5%)
patch tree reduce : 1.45 us (0.4%)
gen split merge : 932.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.03 us (0.3%)
LB compute : 374.58 us (94.9%)
LB move op cnt : 0
LB apply : 4.20 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.68 us (69.4%)
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 | 7.8231e+05 | 262144 | 1 | 3.351e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.92896454968211 (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.09 us (1.4%)
patch tree reduce : 1.38 us (0.3%)
gen split merge : 1.16 us (0.3%)
split / merge op : 0/0
apply split merge : 1.05 us (0.2%)
LB compute : 408.22 us (95.4%)
LB move op cnt : 0
LB apply : 3.95 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.68 us (72.6%)
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 | 7.8376e+05 | 262144 | 1 | 3.345e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.95904304651287 (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 : 5.96 us (1.5%)
patch tree reduce : 1.39 us (0.4%)
gen split merge : 1.25 us (0.3%)
split / merge op : 0/0
apply split merge : 931.00 ns (0.2%)
LB compute : 376.87 us (95.0%)
LB move op cnt : 0
LB apply : 4.35 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.28 us (71.9%)
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 | 7.8527e+05 | 262144 | 1 | 3.338e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.99053390675204 (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 : 5.56 us (1.3%)
patch tree reduce : 1.41 us (0.3%)
gen split merge : 832.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.02 us (0.2%)
LB compute : 421.51 us (95.5%)
LB move op cnt : 0
LB apply : 4.00 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.90 us (73.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 | 7.6063e+05 | 262144 | 1 | 3.446e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.45628531631252 (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 : 5.80 us (1.3%)
patch tree reduce : 1.56 us (0.4%)
gen split merge : 922.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.22 us (0.3%)
LB compute : 414.01 us (95.4%)
LB move op cnt : 0
LB apply : 4.07 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.10 us (74.3%)
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 | 6.9479e+05 | 262144 | 1 | 3.773e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.030700497999332 (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.62 us (1.8%)
patch tree reduce : 1.44 us (0.4%)
gen split merge : 1.24 us (0.3%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.3%)
LB compute : 349.33 us (94.5%)
LB move op cnt : 0
LB apply : 3.86 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.22 us (68.7%)
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 | 7.8628e+05 | 262144 | 1 | 3.334e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.008718044260103 (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.01 us (1.5%)
patch tree reduce : 1.65 us (0.4%)
gen split merge : 842.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 912.00 ns (0.2%)
LB compute : 393.05 us (94.9%)
LB move op cnt : 0
LB apply : 4.26 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.24 us (67.5%)
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 | 7.1321e+05 | 262144 | 1 | 3.676e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.427096415921 (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 : 6.03 us (1.4%)
patch tree reduce : 1.53 us (0.4%)
gen split merge : 1.19 us (0.3%)
split / merge op : 0/0
apply split merge : 1.38 us (0.3%)
LB compute : 396.26 us (95.0%)
LB move op cnt : 0
LB apply : 3.99 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.73 us (72.0%)
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.8291e+05 | 262144 | 1 | 3.348e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.933544192682373 (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.74 us (1.7%)
patch tree reduce : 1.60 us (0.4%)
gen split merge : 912.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.18 us (0.3%)
LB compute : 371.34 us (94.4%)
LB move op cnt : 0
LB apply : 4.09 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.48 us (70.2%)
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 | 6.3603e+05 | 262144 | 1 | 4.122e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.75577600078653 (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.47 us (1.6%)
patch tree reduce : 1.39 us (0.3%)
gen split merge : 971.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.24 us (0.3%)
LB compute : 394.06 us (94.8%)
LB move op cnt : 0
LB apply : 4.69 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.79 us (70.4%)
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 | 7.7944e+05 | 262144 | 1 | 3.363e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.856289385116973 (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.31 us (1.8%)
patch tree reduce : 1.33 us (0.4%)
gen split merge : 912.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.00 us (0.3%)
LB compute : 325.42 us (94.1%)
LB move op cnt : 0
LB apply : 3.98 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.58 us (70.1%)
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 | 7.0134e+05 | 262144 | 1 | 3.738e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.166256847702538 (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.16 us (1.9%)
patch tree reduce : 1.36 us (0.4%)
gen split merge : 1.03 us (0.3%)
split / merge op : 0/0
apply split merge : 1.14 us (0.3%)
LB compute : 310.46 us (93.7%)
LB move op cnt : 0
LB apply : 4.32 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.75 us (69.7%)
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 | 7.4954e+05 | 262144 | 1 | 3.497e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.207459788418163 (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.34 us (1.8%)
patch tree reduce : 1.42 us (0.4%)
gen split merge : 931.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.09 us (0.3%)
LB compute : 340.62 us (94.4%)
LB move op cnt : 0
LB apply : 3.73 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.75 us (69.5%)
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 | 7.6031e+05 | 262144 | 1 | 3.448e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.439150897720328 (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.27 us (1.7%)
patch tree reduce : 1.49 us (0.4%)
gen split merge : 941.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.01 us (0.3%)
LB compute : 340.06 us (94.3%)
LB move op cnt : 0
LB apply : 4.34 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.75 us (71.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 | 7.8908e+05 | 262144 | 1 | 3.322e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.060134284779334 (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 : 6.17 us (1.6%)
patch tree reduce : 1.34 us (0.4%)
gen split merge : 912.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.3%)
LB compute : 360.65 us (94.6%)
LB move op cnt : 0
LB apply : 4.23 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.19 us (65.8%)
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 | 6.6078e+05 | 262144 | 1 | 3.967e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.285353852779515 (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 : 6.32 us (1.4%)
patch tree reduce : 1.68 us (0.4%)
gen split merge : 841.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.2%)
LB compute : 351.86 us (76.6%)
LB move op cnt : 0
LB apply : 4.08 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.40 us (72.6%)
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 | 7.1441e+05 | 262144 | 1 | 3.669e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.44376233617909 (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.45 us (1.6%)
patch tree reduce : 1.32 us (0.3%)
gen split merge : 982.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.18 us (0.3%)
LB compute : 390.55 us (95.1%)
LB move op cnt : 0
LB apply : 4.00 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.95 us (72.6%)
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 | 7.2254e+05 | 262144 | 1 | 3.628e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.618254334119115 (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.33 us (1.4%)
patch tree reduce : 1.47 us (0.3%)
gen split merge : 892.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.12 us (0.2%)
LB compute : 444.46 us (95.3%)
LB move op cnt : 0
LB apply : 4.70 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.88 us (71.4%)
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 | 7.6796e+05 | 262144 | 1 | 3.414e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.598989617798065 (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 : 5.86 us (1.7%)
patch tree reduce : 1.86 us (0.6%)
gen split merge : 831.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 861.00 ns (0.3%)
LB compute : 315.96 us (94.1%)
LB move op cnt : 0
LB apply : 4.11 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.80 us (69.9%)
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 | 7.8900e+05 | 262144 | 1 | 3.322e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.052632271456112 (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.84 us (1.9%)
patch tree reduce : 2.07 us (0.6%)
gen split merge : 841.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.00 us (0.3%)
LB compute : 332.78 us (93.9%)
LB move op cnt : 0
LB apply : 3.98 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.25 us (67.5%)
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 | 7.8178e+05 | 262144 | 1 | 3.353e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.89534169388439 (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.34 us (1.7%)
patch tree reduce : 1.66 us (0.5%)
gen split merge : 1.28 us (0.3%)
split / merge op : 0/0
apply split merge : 1.10 us (0.3%)
LB compute : 346.38 us (94.1%)
LB move op cnt : 0
LB apply : 4.47 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.68 us (69.7%)
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 | 7.6745e+05 | 262144 | 1 | 3.416e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.584401509967574 (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 : 6.42 us (1.6%)
patch tree reduce : 1.43 us (0.3%)
gen split merge : 841.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.72 us (0.4%)
LB compute : 387.27 us (94.6%)
LB move op cnt : 0
LB apply : 4.71 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.90 us (72.4%)
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 | 7.7884e+05 | 262144 | 1 | 3.366e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.82924691988936 (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.84 us (1.7%)
patch tree reduce : 1.26 us (0.3%)
gen split merge : 1.04 us (0.3%)
split / merge op : 0/0
apply split merge : 1.13 us (0.3%)
LB compute : 371.53 us (94.5%)
LB move op cnt : 0
LB apply : 4.06 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.91 us (76.0%)
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 | 7.8225e+05 | 262144 | 1 | 3.351e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.901664030295294 (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 : 6.81 us (1.7%)
patch tree reduce : 1.59 us (0.4%)
gen split merge : 822.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.29 us (0.3%)
LB compute : 369.74 us (94.6%)
LB move op cnt : 0
LB apply : 3.88 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.33 us (68.7%)
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 | 7.8099e+05 | 262144 | 1 | 3.357e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.87335786406379 (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.56 us (1.7%)
patch tree reduce : 1.57 us (0.4%)
gen split merge : 831.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.3%)
LB compute : 367.63 us (94.8%)
LB move op cnt : 0
LB apply : 4.09 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.28 us (68.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 | 7.8324e+05 | 262144 | 1 | 3.347e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.920737061517087 (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 : 6.50 us (1.6%)
patch tree reduce : 1.36 us (0.3%)
gen split merge : 801.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 911.00 ns (0.2%)
LB compute : 377.06 us (95.1%)
LB move op cnt : 0
LB apply : 3.73 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.77 us (70.8%)
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 | 7.7858e+05 | 262144 | 1 | 3.367e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.81880567882185 (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.15 us (1.6%)
patch tree reduce : 1.69 us (0.4%)
gen split merge : 811.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.20 us (0.3%)
LB compute : 373.88 us (94.8%)
LB move op cnt : 0
LB apply : 4.39 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.07 us (74.6%)
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 | 7.2591e+05 | 262144 | 1 | 3.611e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.796101338084101 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 457.54977387900004 (s) [Godunov][rank=0]
Info: dump to _to_trash/ramses_kh/periodic_0016.vtk [VTK Dump][rank=0]
- took 32.42 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 : 6.33 us (1.8%)
patch tree reduce : 1.42 us (0.4%)
gen split merge : 812.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.00 us (0.3%)
LB compute : 333.47 us (94.5%)
LB move op cnt : 0
LB apply : 3.67 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.73 us (69.0%)
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.4401e+05 | 262144 | 1 | 4.071e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.909811106600111 (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.55 us (1.6%)
patch tree reduce : 1.39 us (0.3%)
gen split merge : 822.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.36 us (0.3%)
LB compute : 393.22 us (95.1%)
LB move op cnt : 0
LB apply : 3.99 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.29 us (67.6%)
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 | 7.4799e+05 | 262144 | 1 | 3.505e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.154671073219593 (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 : 6.02 us (1.4%)
patch tree reduce : 1.42 us (0.3%)
gen split merge : 1.17 us (0.3%)
split / merge op : 0/0
apply split merge : 1.06 us (0.2%)
LB compute : 410.63 us (95.3%)
LB move op cnt : 0
LB apply : 3.93 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.62 us (71.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 | 7.3063e+05 | 262144 | 1 | 3.588e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.778573994030433 (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 : 5.80 us (1.5%)
patch tree reduce : 1.43 us (0.4%)
gen split merge : 921.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.01 us (0.3%)
LB compute : 373.11 us (95.0%)
LB move op cnt : 0
LB apply : 4.20 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.54 us (71.3%)
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 | 7.4919e+05 | 262144 | 1 | 3.499e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.17820523440738 (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.01 us (1.6%)
patch tree reduce : 1.51 us (0.4%)
gen split merge : 832.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.02 us (0.3%)
LB compute : 356.58 us (94.6%)
LB move op cnt : 0
LB apply : 3.93 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.37 us (69.6%)
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 | 7.7852e+05 | 262144 | 1 | 3.367e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.81032530492263 (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.44 us (1.8%)
patch tree reduce : 1.86 us (0.5%)
gen split merge : 882.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.20 us (0.3%)
LB compute : 333.46 us (94.1%)
LB move op cnt : 0
LB apply : 3.99 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.44 us (65.5%)
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 | 7.8758e+05 | 262144 | 1 | 3.328e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.004882147619792 (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.27 us (1.8%)
patch tree reduce : 1.55 us (0.4%)
gen split merge : 822.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.09 us (0.3%)
LB compute : 325.43 us (94.1%)
LB move op cnt : 0
LB apply : 3.94 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.42 us (73.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 | 7.6482e+05 | 262144 | 1 | 3.428e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.512165798780767 (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.44 us (1.8%)
patch tree reduce : 1.71 us (0.5%)
gen split merge : 842.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.00 us (0.3%)
LB compute : 337.65 us (94.4%)
LB move op cnt : 0
LB apply : 3.97 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.27 us (72.3%)
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 | 7.9318e+05 | 262144 | 1 | 3.305e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.123437159008773 (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.04 us (1.7%)
patch tree reduce : 1.58 us (0.5%)
gen split merge : 811.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.00 us (0.3%)
LB compute : 317.91 us (91.9%)
LB move op cnt : 0
LB apply : 7.51 us (2.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.80 us (73.6%)
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.6644e+05 | 262144 | 1 | 3.420e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.544910906283114 (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.48 us (1.7%)
patch tree reduce : 1.38 us (0.4%)
gen split merge : 1.14 us (0.3%)
split / merge op : 0/0
apply split merge : 1.02 us (0.3%)
LB compute : 355.30 us (94.4%)
LB move op cnt : 0
LB apply : 4.53 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.11 us (74.0%)
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 | 7.9072e+05 | 262144 | 1 | 3.315e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.06779699203352 (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 : 6.16 us (1.5%)
patch tree reduce : 1.56 us (0.4%)
gen split merge : 822.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 911.00 ns (0.2%)
LB compute : 379.09 us (95.0%)
LB move op cnt : 0
LB apply : 3.85 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.67 us (70.7%)
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.3002e+05 | 262144 | 1 | 3.591e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.75651157429755 (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.12 us (1.8%)
patch tree reduce : 1.71 us (0.5%)
gen split merge : 801.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.12 us (0.3%)
LB compute : 317.98 us (94.0%)
LB move op cnt : 0
LB apply : 3.56 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.19 us (67.6%)
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 | 7.7725e+05 | 262144 | 1 | 3.373e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.774731279626018 (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 : 5.98 us (1.6%)
patch tree reduce : 1.85 us (0.5%)
gen split merge : 851.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.3%)
LB compute : 352.99 us (94.4%)
LB move op cnt : 0
LB apply : 4.29 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.21 us (73.4%)
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 | 7.8457e+05 | 262144 | 1 | 3.341e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.93148716438959 (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.25 us (1.7%)
patch tree reduce : 1.64 us (0.5%)
gen split merge : 841.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.17 us (0.3%)
LB compute : 343.08 us (94.5%)
LB move op cnt : 0
LB apply : 3.51 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.47 us (69.5%)
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 | 6.8640e+05 | 262144 | 1 | 3.819e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.81200426001769 (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.46 us (1.9%)
patch tree reduce : 1.44 us (0.4%)
gen split merge : 842.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.08 us (0.3%)
LB compute : 325.68 us (94.2%)
LB move op cnt : 0
LB apply : 3.87 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.93 us (68.1%)
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 | 7.8099e+05 | 262144 | 1 | 3.357e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.851948976238745 (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.02 us (1.6%)
patch tree reduce : 1.47 us (0.4%)
gen split merge : 972.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.08 us (0.3%)
LB compute : 345.64 us (94.5%)
LB move op cnt : 0
LB apply : 4.21 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.83 us (70.5%)
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 | 7.8645e+05 | 262144 | 1 | 3.333e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.968572478342434 (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.04 us (1.7%)
patch tree reduce : 1.36 us (0.4%)
gen split merge : 1.15 us (0.3%)
split / merge op : 0/0
apply split merge : 1.12 us (0.3%)
LB compute : 332.65 us (94.3%)
LB move op cnt : 0
LB apply : 4.03 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.03 us (67.0%)
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 | 7.4450e+05 | 262144 | 1 | 3.521e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.06235483761168 (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.52 us (1.7%)
patch tree reduce : 1.50 us (0.4%)
gen split merge : 852.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.23 us (0.3%)
LB compute : 364.60 us (94.5%)
LB move op cnt : 0
LB apply : 4.48 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.59 us (71.3%)
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 | 6.9534e+05 | 262144 | 1 | 3.770e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.000612273207608 (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.34 us (1.7%)
patch tree reduce : 1.45 us (0.4%)
gen split merge : 831.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.3%)
LB compute : 349.82 us (94.7%)
LB move op cnt : 0
LB apply : 4.02 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.27 us (68.9%)
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 | 7.8176e+05 | 262144 | 1 | 3.353e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.8637608865584 (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 : 5.75 us (0.5%)
patch tree reduce : 1.73 us (0.2%)
gen split merge : 822.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.1%)
LB compute : 1.03 ms (98.0%)
LB move op cnt : 0
LB apply : 3.98 us (0.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.50 us (76.7%)
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 | 7.9264e+05 | 262144 | 1 | 3.307e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.09731404784809 (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.12 us (1.6%)
patch tree reduce : 1.40 us (0.4%)
gen split merge : 931.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.2%)
LB compute : 371.29 us (95.0%)
LB move op cnt : 0
LB apply : 3.77 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.36 us (67.4%)
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 | 7.8008e+05 | 262144 | 1 | 3.360e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.825355290195795 (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.40 us (1.9%)
patch tree reduce : 1.54 us (0.4%)
gen split merge : 821.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 932.00 ns (0.3%)
LB compute : 325.85 us (94.3%)
LB move op cnt : 0
LB apply : 3.94 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.72 us (70.8%)
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.2011e+05 | 262144 | 1 | 3.640e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.53067744466178 (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.20 us (1.8%)
patch tree reduce : 1.49 us (0.4%)
gen split merge : 832.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 901.00 ns (0.3%)
LB compute : 316.52 us (94.0%)
LB move op cnt : 0
LB apply : 3.84 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.10 us (69.8%)
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 | 7.8348e+05 | 262144 | 1 | 3.346e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.89641481227997 (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.33 us (1.7%)
patch tree reduce : 1.74 us (0.5%)
gen split merge : 992.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.3%)
LB compute : 349.04 us (94.5%)
LB move op cnt : 0
LB apply : 3.96 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.13 us (70.4%)
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 | 7.8119e+05 | 262144 | 1 | 3.356e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.845747891236396 (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.15 us (1.8%)
patch tree reduce : 1.32 us (0.4%)
gen split merge : 822.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.09 us (0.3%)
LB compute : 326.76 us (94.3%)
LB move op cnt : 0
LB apply : 4.06 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.22 us (68.1%)
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 | 7.8650e+05 | 262144 | 1 | 3.333e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.959097742634118 (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.40 us (1.8%)
patch tree reduce : 1.69 us (0.5%)
gen split merge : 872.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.3%)
LB compute : 338.30 us (94.0%)
LB move op cnt : 0
LB apply : 3.85 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.37 us (68.6%)
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 | 7.9124e+05 | 262144 | 1 | 3.313e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.060278766299948 (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 : 6.04 us (1.6%)
patch tree reduce : 1.48 us (0.4%)
gen split merge : 832.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.22 us (0.3%)
LB compute : 368.70 us (94.9%)
LB move op cnt : 0
LB apply : 3.78 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.52 us (71.4%)
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.6285e+05 | 262144 | 1 | 3.436e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.446997132907992 (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.15 us (1.7%)
patch tree reduce : 1.64 us (0.4%)
gen split merge : 882.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 952.00 ns (0.3%)
LB compute : 347.96 us (94.2%)
LB move op cnt : 0
LB apply : 4.60 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.89 us (72.9%)
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.4161e+05 | 262144 | 1 | 3.535e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.98811339722601 (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.57 us (2.0%)
patch tree reduce : 1.52 us (0.5%)
gen split merge : 831.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.29 us (0.4%)
LB compute : 314.52 us (93.8%)
LB move op cnt : 0
LB apply : 3.84 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.89 us (71.1%)
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 | 7.6988e+05 | 262144 | 1 | 3.405e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.596420629388998 (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.20 us (1.7%)
patch tree reduce : 1.30 us (0.4%)
gen split merge : 832.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.10 us (0.3%)
LB compute : 342.00 us (94.6%)
LB move op cnt : 0
LB apply : 3.82 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.37 us (70.3%)
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.7845e+05 | 262144 | 1 | 3.368e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.780128083369362 (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.04 us (1.6%)
patch tree reduce : 1.41 us (0.4%)
gen split merge : 931.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.04 us (0.3%)
LB compute : 362.14 us (94.9%)
LB move op cnt : 0
LB apply : 3.66 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.00 us (71.5%)
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 | 7.7210e+05 | 262144 | 1 | 3.395e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.642204482758785 (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 : 5.95 us (1.6%)
patch tree reduce : 1.76 us (0.5%)
gen split merge : 831.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.3%)
LB compute : 354.22 us (94.5%)
LB move op cnt : 0
LB apply : 4.24 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.31 us (69.1%)
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 | 7.8079e+05 | 262144 | 1 | 3.357e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.828664322179467 (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.17 us (1.8%)
patch tree reduce : 1.44 us (0.4%)
gen split merge : 791.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.10 us (0.3%)
LB compute : 314.48 us (93.7%)
LB move op cnt : 0
LB apply : 4.85 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.60 us (71.0%)
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.5953e+05 | 262144 | 1 | 3.451e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.369444164156683 (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.13 us (1.5%)
patch tree reduce : 1.38 us (0.3%)
gen split merge : 901.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.2%)
LB compute : 377.41 us (95.0%)
LB move op cnt : 0
LB apply : 3.96 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.69 us (72.2%)
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.3468e+05 | 262144 | 1 | 3.568e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.832968176190171 (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.54 us (1.9%)
patch tree reduce : 8.13 us (2.3%)
gen split merge : 871.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.08 us (0.3%)
LB compute : 318.48 us (92.1%)
LB move op cnt : 0
LB apply : 4.33 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.50 us (70.6%)
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 | 7.1786e+05 | 262144 | 1 | 3.652e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.469555096609502 (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 : 5.82 us (1.8%)
patch tree reduce : 1.43 us (0.4%)
gen split merge : 832.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 993.00 ns (0.3%)
LB compute : 308.15 us (94.1%)
LB move op cnt : 0
LB apply : 3.70 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.17 us (71.0%)
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 | 7.1175e+05 | 262144 | 1 | 3.683e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.337000141996379 (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.12 us (1.8%)
patch tree reduce : 1.48 us (0.4%)
gen split merge : 932.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.3%)
LB compute : 325.23 us (94.3%)
LB move op cnt : 0
LB apply : 3.79 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.39 us (69.7%)
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 | 7.8299e+05 | 262144 | 1 | 3.348e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.87123523295715 (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 : 5.89 us (1.6%)
patch tree reduce : 1.49 us (0.4%)
gen split merge : 902.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.04 us (0.3%)
LB compute : 351.96 us (94.8%)
LB move op cnt : 0
LB apply : 4.02 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.36 us (71.6%)
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 | 7.1962e+05 | 262144 | 1 | 3.643e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.504949541384503 (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.38 us (1.7%)
patch tree reduce : 1.57 us (0.4%)
gen split merge : 831.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.08 us (0.3%)
LB compute : 354.69 us (94.6%)
LB move op cnt : 0
LB apply : 3.94 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.45 us (69.0%)
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 | 7.6187e+05 | 262144 | 1 | 3.441e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.414536714024447 (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.66 us (1.7%)
patch tree reduce : 1.78 us (0.5%)
gen split merge : 721.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.27 us (0.3%)
LB compute : 374.32 us (94.6%)
LB move op cnt : 0
LB apply : 4.01 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.60 us (73.1%)
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 | 6.3280e+05 | 262144 | 1 | 4.143e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.633064600893318 (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.04 us (1.8%)
patch tree reduce : 1.71 us (0.5%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 952.00 ns (0.3%)
LB compute : 324.52 us (94.0%)
LB move op cnt : 0
LB apply : 4.14 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.52 us (69.2%)
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 | 7.9709e+05 | 262144 | 1 | 3.289e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.171673016537458 (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 : 5.90 us (1.8%)
patch tree reduce : 1.42 us (0.4%)
gen split merge : 822.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.12 us (0.3%)
LB compute : 311.83 us (94.1%)
LB move op cnt : 0
LB apply : 4.03 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.42 us (69.3%)
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 | 7.9336e+05 | 262144 | 1 | 3.304e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.09047311183603 (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.02 us (1.7%)
patch tree reduce : 1.42 us (0.4%)
gen split merge : 962.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.02 us (0.3%)
LB compute : 327.12 us (94.3%)
LB move op cnt : 0
LB apply : 4.17 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.34 us (68.8%)
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 | 7.9123e+05 | 262144 | 1 | 3.313e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.0437903158399 (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.16 us (1.6%)
patch tree reduce : 1.42 us (0.4%)
gen split merge : 922.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.01 us (0.3%)
LB compute : 353.49 us (94.7%)
LB move op cnt : 0
LB apply : 4.07 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.67 us (72.1%)
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 | 7.2976e+05 | 262144 | 1 | 3.592e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.718849594498064 (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.21 us (1.6%)
patch tree reduce : 1.33 us (0.4%)
gen split merge : 911.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.17 us (0.3%)
LB compute : 357.92 us (94.9%)
LB move op cnt : 0
LB apply : 3.72 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.25 us (69.4%)
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.8545e+05 | 262144 | 1 | 3.338e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.91760948003152 (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 : 5.77 us (1.6%)
patch tree reduce : 1.47 us (0.4%)
gen split merge : 971.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.3%)
LB compute : 348.69 us (94.7%)
LB move op cnt : 0
LB apply : 4.32 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.52 us (69.8%)
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 | 7.8273e+05 | 262144 | 1 | 3.349e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.858327461317845 (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.54 us (1.6%)
patch tree reduce : 1.29 us (0.3%)
gen split merge : 842.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.09 us (0.3%)
LB compute : 394.30 us (94.2%)
LB move op cnt : 0
LB apply : 7.97 us (1.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.97 us (72.9%)
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 | 7.9276e+05 | 262144 | 1 | 3.307e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.073591839201768 (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 : 5.94 us (1.5%)
patch tree reduce : 1.53 us (0.4%)
gen split merge : 882.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.23 us (0.3%)
LB compute : 376.90 us (94.9%)
LB move op cnt : 0
LB apply : 4.48 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.48 us (67.9%)
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.9108e+05 | 262144 | 1 | 3.314e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.03663041991703 (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.05 us (1.7%)
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.01 us (0.3%)
LB compute : 327.10 us (94.1%)
LB move op cnt : 0
LB apply : 3.87 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.11 us (70.1%)
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 | 7.9099e+05 | 262144 | 1 | 3.314e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.03401108481526 (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.46 us (1.8%)
patch tree reduce : 1.35 us (0.4%)
gen split merge : 901.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.09 us (0.3%)
LB compute : 348.51 us (94.5%)
LB move op cnt : 0
LB apply : 3.98 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.17 us (68.9%)
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 | 7.8423e+05 | 262144 | 1 | 3.343e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.887600455502508 (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 : 5.78 us (1.4%)
patch tree reduce : 1.45 us (0.3%)
gen split merge : 822.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.10 us (0.3%)
LB compute : 408.14 us (95.4%)
LB move op cnt : 0
LB apply : 4.19 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.48 us (70.0%)
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.4721e+05 | 262144 | 1 | 3.508e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.089688042090984 (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 : 5.78 us (1.7%)
patch tree reduce : 1.47 us (0.4%)
gen split merge : 842.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.3%)
LB compute : 326.76 us (94.3%)
LB move op cnt : 0
LB apply : 4.05 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.33 us (65.9%)
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.9301e+05 | 262144 | 1 | 3.306e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.075265670266482 (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.10 us (1.5%)
patch tree reduce : 1.40 us (0.4%)
gen split merge : 1.05 us (0.3%)
split / merge op : 0/0
apply split merge : 1.12 us (0.3%)
LB compute : 376.97 us (94.7%)
LB move op cnt : 0
LB apply : 4.50 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.42 us (75.3%)
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 | 7.4473e+05 | 262144 | 1 | 3.520e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.035011273019943 (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 : 6.54 us (1.9%)
patch tree reduce : 1.42 us (0.4%)
gen split merge : 832.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.3%)
LB compute : 324.61 us (94.3%)
LB move op cnt : 0
LB apply : 3.92 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.44 us (69.1%)
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.7073e+05 | 262144 | 1 | 3.401e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.59429635199763 (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.00 us (1.5%)
patch tree reduce : 1.80 us (0.4%)
gen split merge : 832.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 951.00 ns (0.2%)
LB compute : 388.42 us (95.1%)
LB move op cnt : 0
LB apply : 4.19 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.60 us (72.2%)
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.8789e+05 | 262144 | 1 | 3.327e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.962955026239875 (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 : 6.39 us (1.6%)
patch tree reduce : 1.77 us (0.4%)
gen split merge : 1.21 us (0.3%)
split / merge op : 0/0
apply split merge : 852.00 ns (0.2%)
LB compute : 384.88 us (94.9%)
LB move op cnt : 0
LB apply : 4.33 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.86 us (70.7%)
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.8517e+05 | 262144 | 1 | 3.339e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.903854710747968 (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 : 6.72 us (1.9%)
patch tree reduce : 1.43 us (0.4%)
gen split merge : 842.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.10 us (0.3%)
LB compute : 329.71 us (94.0%)
LB move op cnt : 0
LB apply : 4.05 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.95 us (74.2%)
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 | 7.7635e+05 | 262144 | 1 | 3.377e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.713493027692188 (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.24 us (1.7%)
patch tree reduce : 1.75 us (0.5%)
gen split merge : 822.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.22 us (0.3%)
LB compute : 347.29 us (94.6%)
LB move op cnt : 0
LB apply : 3.83 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.18 us (68.1%)
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.9092e+05 | 262144 | 1 | 3.314e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.0263715061589 (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.29 us (1.6%)
patch tree reduce : 1.48 us (0.4%)
gen split merge : 942.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.24 us (0.3%)
LB compute : 363.29 us (94.7%)
LB move op cnt : 0
LB apply : 4.06 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.54 us (73.1%)
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 | 7.3781e+05 | 262144 | 1 | 3.553e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.882512503351686 (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 : 6.02 us (1.8%)
patch tree reduce : 1.46 us (0.4%)
gen split merge : 842.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.31 us (0.4%)
LB compute : 313.98 us (93.9%)
LB move op cnt : 0
LB apply : 3.72 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.25 us (71.5%)
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 | 7.0899e+05 | 262144 | 1 | 3.697e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.261691631835882 (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.18 us (1.7%)
patch tree reduce : 1.39 us (0.4%)
gen split merge : 922.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.10 us (0.3%)
LB compute : 314.50 us (88.7%)
LB move op cnt : 0
LB apply : 3.95 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.11 us (72.4%)
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 | 7.8783e+05 | 262144 | 1 | 3.327e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.958252221710627 (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.11 us (1.7%)
patch tree reduce : 1.41 us (0.4%)
gen split merge : 822.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 891.00 ns (0.2%)
LB compute : 346.39 us (94.7%)
LB move op cnt : 0
LB apply : 3.96 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.63 us (71.6%)
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 | 7.7728e+05 | 262144 | 1 | 3.373e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.730536061448248 (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.40 us (1.8%)
patch tree reduce : 1.83 us (0.5%)
gen split merge : 832.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 911.00 ns (0.3%)
LB compute : 327.43 us (94.0%)
LB move op cnt : 0
LB apply : 4.41 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.68 us (69.0%)
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.2127e+05 | 262144 | 1 | 3.635e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.524400180060976 (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.23 us (1.9%)
patch tree reduce : 1.56 us (0.5%)
gen split merge : 922.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.21 us (0.4%)
LB compute : 313.17 us (94.0%)
LB move op cnt : 0
LB apply : 3.86 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.38 us (66.9%)
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.3350e+05 | 262144 | 1 | 3.574e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.787256911867972 (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.73 us (1.8%)
patch tree reduce : 1.83 us (0.5%)
gen split merge : 872.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.09 us (0.3%)
LB compute : 345.19 us (94.3%)
LB move op cnt : 0
LB apply : 3.78 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.65 us (70.6%)
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 | 7.9020e+05 | 262144 | 1 | 3.317e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.007237251092135 (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.13 us (1.5%)
patch tree reduce : 23.31 us (5.6%)
gen split merge : 952.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.00 us (0.2%)
LB compute : 373.74 us (89.9%)
LB move op cnt : 0
LB apply : 3.90 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.63 us (69.7%)
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 | 7.9294e+05 | 262144 | 1 | 3.306e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.065547417934784 (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 : 6.02 us (1.4%)
patch tree reduce : 1.97 us (0.5%)
gen split merge : 912.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 881.00 ns (0.2%)
LB compute : 401.75 us (95.1%)
LB move op cnt : 0
LB apply : 3.87 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.84 us (70.9%)
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 | 7.5499e+05 | 262144 | 1 | 3.472e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.2483900314774 (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 : 6.31 us (1.4%)
patch tree reduce : 1.47 us (0.3%)
gen split merge : 901.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 872.00 ns (0.2%)
LB compute : 415.61 us (95.4%)
LB move op cnt : 0
LB apply : 4.16 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.95 us (71.9%)
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 | 7.8350e+05 | 262144 | 1 | 3.346e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.861583367217747 (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.36 us (1.6%)
patch tree reduce : 1.55 us (0.4%)
gen split merge : 942.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.14 us (0.3%)
LB compute : 372.87 us (94.6%)
LB move op cnt : 0
LB apply : 4.44 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.67 us (69.3%)
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 | 7.9342e+05 | 262144 | 1 | 3.304e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.074686873287636 (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.36 us (1.7%)
patch tree reduce : 1.44 us (0.4%)
gen split merge : 981.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 881.00 ns (0.2%)
LB compute : 363.07 us (94.9%)
LB move op cnt : 0
LB apply : 3.70 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.46 us (70.0%)
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 | 7.7818e+05 | 262144 | 1 | 3.369e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.746445273853976 (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.02 us (1.7%)
patch tree reduce : 1.41 us (0.4%)
gen split merge : 812.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.3%)
LB compute : 327.28 us (94.4%)
LB move op cnt : 0
LB apply : 3.87 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.28 us (65.9%)
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.8580e+05 | 262144 | 1 | 3.336e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.91002215033716 (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 : 5.83 us (1.7%)
patch tree reduce : 1.41 us (0.4%)
gen split merge : 832.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.00 us (0.3%)
LB compute : 325.84 us (94.4%)
LB move op cnt : 0
LB apply : 3.77 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.06 us (64.5%)
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 | 7.7791e+05 | 262144 | 1 | 3.370e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.73999811533253 (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 : 5.90 us (1.6%)
patch tree reduce : 1.40 us (0.4%)
gen split merge : 912.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 872.00 ns (0.2%)
LB compute : 339.78 us (94.5%)
LB move op cnt : 0
LB apply : 4.17 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.83 us (73.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 | 7.0632e+05 | 262144 | 1 | 3.711e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.199199801164836 (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.64 us (1.8%)
patch tree reduce : 1.71 us (0.5%)
gen split merge : 811.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.16 us (0.3%)
LB compute : 340.78 us (94.2%)
LB move op cnt : 0
LB apply : 3.91 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.88 us (72.1%)
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 | 7.6308e+05 | 262144 | 1 | 3.435e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.420245497285947 (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 : 15.88 us (4.5%)
patch tree reduce : 1.94 us (0.5%)
gen split merge : 872.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 901.00 ns (0.3%)
LB compute : 325.75 us (91.5%)
LB move op cnt : 0
LB apply : 3.85 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.71 us (73.0%)
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.9508e+05 | 262144 | 1 | 3.297e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.10860910346229 (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.46 us (1.7%)
patch tree reduce : 1.47 us (0.4%)
gen split merge : 932.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.3%)
LB compute : 359.69 us (94.8%)
LB move op cnt : 0
LB apply : 3.88 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.64 us (68.0%)
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.9013e+05 | 262144 | 1 | 3.318e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.00085376285413 (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 : 5.81 us (1.4%)
patch tree reduce : 1.39 us (0.3%)
gen split merge : 832.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 971.00 ns (0.2%)
LB compute : 381.40 us (95.1%)
LB move op cnt : 0
LB apply : 4.24 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.30 us (69.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 | 7.9817e+05 | 262144 | 1 | 3.284e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.17237639297704 (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 : 5.89 us (1.8%)
patch tree reduce : 1.51 us (0.5%)
gen split merge : 922.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 852.00 ns (0.3%)
LB compute : 312.69 us (94.3%)
LB move op cnt : 0
LB apply : 3.86 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.21 us (66.1%)
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 | 7.7533e+05 | 262144 | 1 | 3.381e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.67939381085105 (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.01 us (1.6%)
patch tree reduce : 1.51 us (0.4%)
gen split merge : 812.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 891.00 ns (0.2%)
LB compute : 344.30 us (94.4%)
LB move op cnt : 0
LB apply : 4.40 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.88 us (75.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 | 7.4954e+05 | 262144 | 1 | 3.497e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.12325669199335 (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.01 us (1.6%)
patch tree reduce : 1.38 us (0.4%)
gen split merge : 1.03 us (0.3%)
split / merge op : 0/0
apply split merge : 1.01 us (0.3%)
LB compute : 365.96 us (94.8%)
LB move op cnt : 0
LB apply : 3.85 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.70 us (71.5%)
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 | 7.5171e+05 | 262144 | 1 | 3.487e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.16839564225147 (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 : 6.00 us (1.4%)
patch tree reduce : 1.51 us (0.4%)
gen split merge : 922.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 861.00 ns (0.2%)
LB compute : 395.35 us (95.3%)
LB move op cnt : 0
LB apply : 4.00 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.81 us (73.3%)
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 | 7.8981e+05 | 262144 | 1 | 3.319e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.986431222679773 (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.06 us (1.5%)
patch tree reduce : 1.80 us (0.4%)
gen split merge : 922.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.14 us (0.3%)
LB compute : 383.55 us (94.9%)
LB move op cnt : 0
LB apply : 3.79 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.56 us (68.6%)
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.1451e+05 | 262144 | 1 | 3.669e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.365435087443801 (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.44 us (1.7%)
patch tree reduce : 1.30 us (0.4%)
gen split merge : 932.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.41 us (0.4%)
LB compute : 349.07 us (94.4%)
LB move op cnt : 0
LB apply : 4.47 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.70 us (72.9%)
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 | 7.5495e+05 | 262144 | 1 | 3.472e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.23367730401435 (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.04 us (1.5%)
patch tree reduce : 1.41 us (0.3%)
gen split merge : 1.13 us (0.3%)
split / merge op : 0/0
apply split merge : 1.00 us (0.2%)
LB compute : 391.22 us (95.2%)
LB move op cnt : 0
LB apply : 3.79 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.87 us (72.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 | 7.7863e+05 | 262144 | 1 | 3.367e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.74144016363751 (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.47 us (1.6%)
patch tree reduce : 1.41 us (0.3%)
gen split merge : 1.00 us (0.2%)
split / merge op : 0/0
apply split merge : 1.41 us (0.3%)
LB compute : 393.17 us (94.9%)
LB move op cnt : 0
LB apply : 4.21 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.32 us (74.7%)
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.8244e+05 | 262144 | 1 | 3.350e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5.37716987281584 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 487.34628978700005 (s) [Godunov][rank=0]
Info: dump to _to_trash/ramses_kh/periodic_0017.vtk [VTK Dump][rank=0]
- took 30.73 ms, bandwidth = 1.33 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 : 6.56 us (1.7%)
patch tree reduce : 1.44 us (0.4%)
gen split merge : 992.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.00 us (0.3%)
LB compute : 365.25 us (94.7%)
LB move op cnt : 0
LB apply : 3.63 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.89 us (69.1%)
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 | 6.8749e+05 | 262144 | 1 | 3.813e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.78015947066956 (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 : 5.96 us (1.6%)
patch tree reduce : 1.80 us (0.5%)
gen split merge : 842.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 881.00 ns (0.2%)
LB compute : 354.43 us (94.5%)
LB move op cnt : 0
LB apply : 4.36 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.49 us (70.7%)
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.9430e+05 | 262144 | 1 | 3.300e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.07469464281973 (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.78 us (1.6%)
patch tree reduce : 1.57 us (0.4%)
gen split merge : 881.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.05 us (0.3%)
LB compute : 391.64 us (94.8%)
LB move op cnt : 0
LB apply : 4.34 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.73 us (71.5%)
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.8509e+05 | 262144 | 1 | 3.339e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.875224512443758 (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.14 us (1.5%)
patch tree reduce : 1.41 us (0.3%)
gen split merge : 822.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.02 us (0.2%)
LB compute : 390.80 us (94.9%)
LB move op cnt : 0
LB apply : 4.44 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.69 us (72.8%)
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.4105e+05 | 262144 | 1 | 3.537e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.927214005730887 (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.04 us (1.6%)
patch tree reduce : 1.30 us (0.3%)
gen split merge : 581.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.00 us (0.3%)
LB compute : 359.93 us (94.7%)
LB move op cnt : 0
LB apply : 4.40 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.74 us (72.4%)
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.4028e+05 | 262144 | 1 | 3.541e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.90909981765471 (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.27 us (1.7%)
patch tree reduce : 1.64 us (0.4%)
gen split merge : 821.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 852.00 ns (0.2%)
LB compute : 353.45 us (94.8%)
LB move op cnt : 0
LB apply : 3.83 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.77 us (73.2%)
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.9246e+05 | 262144 | 1 | 3.308e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.028916119285906 (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 : 5.94 us (1.6%)
patch tree reduce : 1.80 us (0.5%)
gen split merge : 941.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 851.00 ns (0.2%)
LB compute : 346.96 us (94.6%)
LB move op cnt : 0
LB apply : 3.82 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.09 us (71.5%)
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 | 6.6972e+05 | 262144 | 1 | 3.914e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.390144334839006 (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.17 us (1.8%)
patch tree reduce : 1.49 us (0.4%)
gen split merge : 982.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.12 us (0.3%)
LB compute : 319.19 us (93.9%)
LB move op cnt : 0
LB apply : 4.56 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.81 us (70.9%)
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.5892e+05 | 262144 | 1 | 3.454e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.30534712617286 (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 : 6.40 us (1.7%)
patch tree reduce : 1.35 us (0.4%)
gen split merge : 1.28 us (0.3%)
split / merge op : 0/0
apply split merge : 1.09 us (0.3%)
LB compute : 359.59 us (94.5%)
LB move op cnt : 0
LB apply : 3.86 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.39 us (70.0%)
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.0771e+05 | 262144 | 1 | 3.704e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.203844247805518 (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.32 us (1.7%)
patch tree reduce : 1.51 us (0.4%)
gen split merge : 822.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.03 us (0.3%)
LB compute : 347.06 us (94.5%)
LB move op cnt : 0
LB apply : 4.11 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.75 us (70.8%)
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 | 6.8661e+05 | 262144 | 1 | 3.818e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.749222869684791 (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.05 us (1.6%)
patch tree reduce : 1.44 us (0.4%)
gen split merge : 1.02 us (0.3%)
split / merge op : 0/0
apply split merge : 882.00 ns (0.2%)
LB compute : 364.61 us (94.7%)
LB move op cnt : 0
LB apply : 4.52 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.01 us (69.9%)
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.1979e+05 | 262144 | 1 | 3.642e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.46066530667029 (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 : 5.91 us (1.8%)
patch tree reduce : 1.74 us (0.5%)
gen split merge : 1.10 us (0.3%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.3%)
LB compute : 312.65 us (94.0%)
LB move op cnt : 0
LB apply : 3.82 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.36 us (68.4%)
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 | 7.4010e+05 | 262144 | 1 | 3.542e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.895495023641507 (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.10 us (1.7%)
patch tree reduce : 1.55 us (0.4%)
gen split merge : 801.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.3%)
LB compute : 344.25 us (94.4%)
LB move op cnt : 0
LB apply : 4.36 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.54 us (70.7%)
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 | 7.0384e+05 | 262144 | 1 | 3.724e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.11552494482987 (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.26 us (1.7%)
patch tree reduce : 1.43 us (0.4%)
gen split merge : 832.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.24 us (0.3%)
LB compute : 354.71 us (94.6%)
LB move op cnt : 0
LB apply : 4.07 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.66 us (72.0%)
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.5720e+05 | 262144 | 1 | 3.462e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.26012846158759 (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.60 us (1.7%)
patch tree reduce : 1.35 us (0.3%)
gen split merge : 822.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.11 us (0.3%)
LB compute : 359.83 us (92.5%)
LB move op cnt : 0
LB apply : 5.38 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.37 us (70.1%)
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 | 7.5431e+05 | 262144 | 1 | 3.475e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.19667995281358 (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.24 us (1.8%)
patch tree reduce : 1.70 us (0.5%)
gen split merge : 922.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.02 us (0.3%)
LB compute : 325.94 us (94.1%)
LB move op cnt : 0
LB apply : 4.15 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.24 us (66.7%)
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.1578e+05 | 262144 | 1 | 3.662e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.368103237375022 (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 : 5.98 us (1.5%)
patch tree reduce : 1.46 us (0.4%)
gen split merge : 1.04 us (0.3%)
split / merge op : 0/0
apply split merge : 1.35 us (0.3%)
LB compute : 367.46 us (94.5%)
LB move op cnt : 0
LB apply : 4.03 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.91 us (72.0%)
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 | 7.7049e+05 | 262144 | 1 | 3.402e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.541408594951733 (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.12 us (1.5%)
patch tree reduce : 1.67 us (0.4%)
gen split merge : 1.17 us (0.3%)
split / merge op : 0/0
apply split merge : 1.02 us (0.3%)
LB compute : 380.91 us (94.8%)
LB move op cnt : 0
LB apply : 3.89 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.37 us (69.1%)
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 | 7.3937e+05 | 262144 | 1 | 3.545e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.871952579747422 (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.41 us (1.6%)
patch tree reduce : 1.44 us (0.4%)
gen split merge : 932.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.00 us (0.2%)
LB compute : 390.54 us (95.0%)
LB move op cnt : 0
LB apply : 4.21 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.26 us (67.5%)
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 | 7.0143e+05 | 262144 | 1 | 3.737e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.056171287712827 (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 : 6.00 us (0.8%)
patch tree reduce : 1.82 us (0.2%)
gen split merge : 811.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.1%)
LB compute : 726.95 us (97.1%)
LB move op cnt : 0
LB apply : 5.26 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.88 us (77.1%)
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.7885e+05 | 262144 | 1 | 3.366e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.716475145867392 (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 : 6.88 us (1.9%)
patch tree reduce : 1.63 us (0.4%)
gen split merge : 842.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.3%)
LB compute : 343.46 us (94.3%)
LB move op cnt : 0
LB apply : 4.31 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.02 us (75.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 | 7.2584e+05 | 262144 | 1 | 3.612e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.577546768372965 (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 : 5.95 us (1.6%)
patch tree reduce : 1.51 us (0.4%)
gen split merge : 932.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 872.00 ns (0.2%)
LB compute : 361.39 us (94.8%)
LB move op cnt : 0
LB apply : 4.29 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.74 us (69.3%)
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 | 7.3909e+05 | 262144 | 1 | 3.547e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.860320373160196 (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.27 us (1.7%)
patch tree reduce : 1.62 us (0.4%)
gen split merge : 942.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.10 us (0.3%)
LB compute : 350.69 us (94.3%)
LB move op cnt : 0
LB apply : 4.08 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.73 us (69.9%)
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 | 7.4789e+05 | 262144 | 1 | 3.505e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.047853112526838 (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.50 us (1.8%)
patch tree reduce : 1.56 us (0.4%)
gen split merge : 922.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 902.00 ns (0.2%)
LB compute : 345.82 us (94.4%)
LB move op cnt : 0
LB apply : 3.97 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.64 us (70.9%)
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 | 7.1671e+05 | 262144 | 1 | 3.658e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.377448434830452 (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.07 us (1.6%)
patch tree reduce : 1.42 us (0.4%)
gen split merge : 842.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.00 us (0.3%)
LB compute : 349.83 us (94.5%)
LB move op cnt : 0
LB apply : 4.39 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.76 us (68.9%)
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.8749e+05 | 262144 | 1 | 3.329e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.89461657097921 (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 : 6.02 us (1.7%)
patch tree reduce : 1.49 us (0.4%)
gen split merge : 912.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 852.00 ns (0.2%)
LB compute : 338.33 us (94.5%)
LB move op cnt : 0
LB apply : 3.96 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.50 us (67.9%)
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 | 7.2148e+05 | 262144 | 1 | 3.633e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.477152880825779 (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 : 5.82 us (1.5%)
patch tree reduce : 1.43 us (0.4%)
gen split merge : 842.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 851.00 ns (0.2%)
LB compute : 381.23 us (95.1%)
LB move op cnt : 0
LB apply : 4.28 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.44 us (70.5%)
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 | 7.8481e+05 | 262144 | 1 | 3.340e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.834185066585896 (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.36 us (1.6%)
patch tree reduce : 1.44 us (0.4%)
gen split merge : 1.07 us (0.3%)
split / merge op : 0/0
apply split merge : 1.25 us (0.3%)
LB compute : 372.46 us (94.7%)
LB move op cnt : 0
LB apply : 3.95 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.39 us (68.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.7617e+05 | 262144 | 1 | 3.377e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.64739232536005 (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.52 us (1.7%)
patch tree reduce : 1.59 us (0.4%)
gen split merge : 831.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 912.00 ns (0.2%)
LB compute : 372.11 us (94.7%)
LB move op cnt : 0
LB apply : 4.08 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.87 us (70.3%)
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.8016e+05 | 262144 | 1 | 3.360e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.731524025033462 (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.80 us (1.8%)
patch tree reduce : 1.55 us (0.4%)
gen split merge : 1.05 us (0.3%)
split / merge op : 0/0
apply split merge : 1.31 us (0.3%)
LB compute : 363.62 us (94.3%)
LB move op cnt : 0
LB apply : 4.96 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.57 us (72.9%)
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.7241e+05 | 262144 | 1 | 3.394e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.563876579492092 (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 : 7.31 us (1.8%)
patch tree reduce : 1.62 us (0.4%)
gen split merge : 912.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.14 us (0.3%)
LB compute : 389.91 us (94.7%)
LB move op cnt : 0
LB apply : 4.26 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.52 us (69.0%)
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 | 7.8149e+05 | 262144 | 1 | 3.354e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.757124948256706 (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 : 6.31 us (1.6%)
patch tree reduce : 1.51 us (0.4%)
gen split merge : 942.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.07 us (0.3%)
LB compute : 372.28 us (94.8%)
LB move op cnt : 0
LB apply : 3.93 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.59 us (69.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 | 7.8196e+05 | 262144 | 1 | 3.352e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.76572965227709 (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.31 us (1.5%)
patch tree reduce : 1.85 us (0.4%)
gen split merge : 871.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.2%)
LB compute : 396.53 us (95.1%)
LB move op cnt : 0
LB apply : 3.91 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.92 us (73.5%)
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 | 7.7029e+05 | 262144 | 1 | 3.403e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.51408052545017 (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.60 us (1.7%)
patch tree reduce : 1.66 us (0.4%)
gen split merge : 831.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 952.00 ns (0.2%)
LB compute : 379.60 us (94.9%)
LB move op cnt : 0
LB apply : 3.86 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.41 us (67.9%)
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 | 7.1935e+05 | 262144 | 1 | 3.644e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.420540706916718 (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 : 6.26 us (1.5%)
patch tree reduce : 1.61 us (0.4%)
gen split merge : 821.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 882.00 ns (0.2%)
LB compute : 391.31 us (95.1%)
LB move op cnt : 0
LB apply : 3.85 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.88 us (73.0%)
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 | 7.8383e+05 | 262144 | 1 | 3.344e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.801380872598394 (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 : 6.44 us (1.6%)
patch tree reduce : 1.40 us (0.3%)
gen split merge : 952.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.14 us (0.3%)
LB compute : 384.04 us (94.8%)
LB move op cnt : 0
LB apply : 4.17 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.56 us (69.5%)
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 | 7.3544e+05 | 262144 | 1 | 3.564e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.762812485962963 (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 : 5.94 us (1.6%)
patch tree reduce : 1.35 us (0.4%)
gen split merge : 811.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.08 us (0.3%)
LB compute : 346.12 us (94.5%)
LB move op cnt : 0
LB apply : 3.95 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.72 us (72.3%)
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 | 7.1204e+05 | 262144 | 1 | 3.682e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.259949812922263 (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.58 us (1.8%)
patch tree reduce : 1.56 us (0.4%)
gen split merge : 1.04 us (0.3%)
split / merge op : 0/0
apply split merge : 1.23 us (0.3%)
LB compute : 339.21 us (94.3%)
LB move op cnt : 0
LB apply : 3.88 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.45 us (71.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 | 7.0960e+05 | 262144 | 1 | 3.694e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.206349729868027 (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.98 us (2.0%)
patch tree reduce : 1.47 us (0.4%)
gen split merge : 841.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.05 us (0.3%)
LB compute : 324.15 us (94.0%)
LB move op cnt : 0
LB apply : 4.30 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.66 us (67.4%)
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 | 7.2897e+05 | 262144 | 1 | 3.596e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.620023207495132 (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.14 us (1.5%)
patch tree reduce : 1.42 us (0.4%)
gen split merge : 851.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 971.00 ns (0.2%)
LB compute : 381.71 us (94.9%)
LB move op cnt : 0
LB apply : 4.03 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.86 us (73.2%)
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 | 7.3356e+05 | 262144 | 1 | 3.574e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.717104258002179 (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.13 us (1.4%)
patch tree reduce : 1.43 us (0.3%)
gen split merge : 842.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.27 us (0.3%)
LB compute : 428.03 us (95.4%)
LB move op cnt : 0
LB apply : 4.47 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.20 us (75.2%)
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 | 7.2887e+05 | 262144 | 1 | 3.597e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.615370078520309 (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 : 5.81 us (1.4%)
patch tree reduce : 1.42 us (0.3%)
gen split merge : 902.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.10 us (0.3%)
LB compute : 394.87 us (95.2%)
LB move op cnt : 0
LB apply : 4.03 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.15 us (73.0%)
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 | 7.8390e+05 | 262144 | 1 | 3.344e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.79288270901118 (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 : 5.84 us (1.6%)
patch tree reduce : 1.60 us (0.4%)
gen split merge : 861.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.00 us (0.3%)
LB compute : 346.89 us (94.7%)
LB move op cnt : 0
LB apply : 3.84 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.47 us (66.9%)
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 | 6.7657e+05 | 262144 | 1 | 3.875e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.492290639456813 (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.66 us (2.0%)
patch tree reduce : 1.42 us (0.4%)
gen split merge : 812.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 861.00 ns (0.3%)
LB compute : 319.97 us (93.9%)
LB move op cnt : 0
LB apply : 4.58 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.60 us (68.8%)
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 | 6.8125e+05 | 262144 | 1 | 3.848e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.59119069880789 (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.51 us (1.8%)
patch tree reduce : 1.48 us (0.4%)
gen split merge : 1.13 us (0.3%)
split / merge op : 0/0
apply split merge : 1.00 us (0.3%)
LB compute : 333.49 us (94.0%)
LB move op cnt : 0
LB apply : 4.27 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.85 us (73.2%)
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 | 7.1524e+05 | 262144 | 1 | 3.665e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.31771693146819 (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.16 us (1.7%)
patch tree reduce : 1.88 us (0.5%)
gen split merge : 831.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.22 us (0.3%)
LB compute : 346.87 us (94.5%)
LB move op cnt : 0
LB apply : 3.96 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.24 us (68.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.6814e+05 | 262144 | 1 | 3.413e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.448791730303032 (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.89 us (1.5%)
patch tree reduce : 1.49 us (0.4%)
gen split merge : 1.12 us (0.3%)
split / merge op : 0/0
apply split merge : 1.09 us (0.3%)
LB compute : 361.73 us (94.7%)
LB move op cnt : 0
LB apply : 4.61 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.85 us (74.9%)
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 | 7.4502e+05 | 262144 | 1 | 3.519e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.951777863508289 (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.46 us (1.8%)
patch tree reduce : 1.81 us (0.5%)
gen split merge : 902.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.3%)
LB compute : 329.94 us (93.7%)
LB move op cnt : 0
LB apply : 5.20 us (1.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.49 us (70.9%)
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 | 7.1338e+05 | 262144 | 1 | 3.675e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.272725538173917 (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.70 us (1.8%)
patch tree reduce : 1.62 us (0.4%)
gen split merge : 992.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.3%)
LB compute : 344.88 us (94.1%)
LB move op cnt : 0
LB apply : 3.89 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.51 us (76.3%)
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 | 6.6962e+05 | 262144 | 1 | 3.915e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.334111257014683 (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.64 us (1.7%)
patch tree reduce : 1.59 us (0.4%)
gen split merge : 922.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 882.00 ns (0.2%)
LB compute : 375.68 us (94.8%)
LB move op cnt : 0
LB apply : 4.46 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.91 us (72.8%)
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 | 7.4004e+05 | 262144 | 1 | 3.542e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.83989207330902 (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.08 us (1.8%)
patch tree reduce : 1.44 us (0.4%)
gen split merge : 1.12 us (0.3%)
split / merge op : 0/0
apply split merge : 1.00 us (0.3%)
LB compute : 324.04 us (94.2%)
LB move op cnt : 0
LB apply : 3.77 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.47 us (70.6%)
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 | 7.0769e+05 | 262144 | 1 | 3.704e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.145730643870573 (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.85 us (2.0%)
patch tree reduce : 1.69 us (0.5%)
gen split merge : 962.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.25 us (0.4%)
LB compute : 315.18 us (93.7%)
LB move op cnt : 0
LB apply : 4.14 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.65 us (71.6%)
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 | 7.8839e+05 | 262144 | 1 | 3.325e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.87094038959784 (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.54 us (1.7%)
patch tree reduce : 1.47 us (0.4%)
gen split merge : 952.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 851.00 ns (0.2%)
LB compute : 375.36 us (94.9%)
LB move op cnt : 0
LB apply : 4.13 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.56 us (69.8%)
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.1513e+05 | 262144 | 1 | 3.666e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.301519674452381 (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.31 us (1.4%)
patch tree reduce : 1.59 us (0.4%)
gen split merge : 902.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 882.00 ns (0.2%)
LB compute : 422.60 us (95.5%)
LB move op cnt : 0
LB apply : 4.02 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.26 us (73.7%)
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.7923e+05 | 262144 | 1 | 3.364e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.671105449829916 (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 : 6.40 us (1.5%)
patch tree reduce : 1.58 us (0.4%)
gen split merge : 822.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.2%)
LB compute : 411.92 us (95.3%)
LB move op cnt : 0
LB apply : 3.92 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.15 us (74.4%)
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 | 7.9490e+05 | 262144 | 1 | 3.298e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 17.004522119232824 (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 : 5.88 us (1.4%)
patch tree reduce : 1.69 us (0.4%)
gen split merge : 822.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.00 us (0.2%)
LB compute : 394.63 us (95.1%)
LB move op cnt : 0
LB apply : 4.55 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.86 us (72.0%)
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 | 7.9002e+05 | 262144 | 1 | 3.318e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.898022128429123 (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 : 5.91 us (1.4%)
patch tree reduce : 1.46 us (0.4%)
gen split merge : 972.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 911.00 ns (0.2%)
LB compute : 393.21 us (95.3%)
LB move op cnt : 0
LB apply : 3.74 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.86 us (73.4%)
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 | 7.8679e+05 | 262144 | 1 | 3.332e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.827131841395925 (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.00 us (1.6%)
patch tree reduce : 1.49 us (0.4%)
gen split merge : 842.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.3%)
LB compute : 364.72 us (95.0%)
LB move op cnt : 0
LB apply : 3.63 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.40 us (69.6%)
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 | 7.5979e+05 | 262144 | 1 | 3.450e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.247738541003876 (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 : 5.94 us (1.6%)
patch tree reduce : 1.44 us (0.4%)
gen split merge : 902.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 971.00 ns (0.3%)
LB compute : 359.92 us (94.8%)
LB move op cnt : 0
LB apply : 3.82 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.96 us (74.7%)
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 | 7.5757e+05 | 262144 | 1 | 3.460e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.198523046649726 (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.66 us (0.7%)
patch tree reduce : 1.40 us (0.1%)
gen split merge : 812.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 1.22 us (0.1%)
LB compute : 970.97 us (97.9%)
LB move op cnt : 0
LB apply : 3.86 us (0.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.84 us (73.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 | 7.8942e+05 | 262144 | 1 | 3.321e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.877684519825795 (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.54 us (1.7%)
patch tree reduce : 2.06 us (0.5%)
gen split merge : 1.18 us (0.3%)
split / merge op : 0/0
apply split merge : 1.01 us (0.3%)
LB compute : 373.24 us (94.5%)
LB move op cnt : 0
LB apply : 3.91 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.35 us (67.1%)
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 | 7.7984e+05 | 262144 | 1 | 3.362e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.670821625379446 (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.15 us (1.7%)
patch tree reduce : 1.50 us (0.4%)
gen split merge : 822.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.3%)
LB compute : 350.17 us (94.5%)
LB move op cnt : 0
LB apply : 4.46 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.38 us (69.7%)
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 | 7.4074e+05 | 262144 | 1 | 3.539e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.833291109879765 (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 : 6.16 us (1.8%)
patch tree reduce : 1.70 us (0.5%)
gen split merge : 852.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.18 us (0.4%)
LB compute : 317.50 us (94.1%)
LB move op cnt : 0
LB apply : 3.75 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.89 us (73.1%)
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 | 7.0546e+05 | 262144 | 1 | 3.716e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.077535040764428 (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 : 6.07 us (1.7%)
patch tree reduce : 1.33 us (0.4%)
gen split merge : 832.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.09 us (0.3%)
LB compute : 330.73 us (94.4%)
LB move op cnt : 0
LB apply : 3.74 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.36 us (73.1%)
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 | 7.3885e+05 | 262144 | 1 | 3.548e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.789304522380144 (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 : 6.27 us (1.9%)
patch tree reduce : 1.73 us (0.5%)
gen split merge : 841.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.06 us (0.3%)
LB compute : 315.15 us (93.9%)
LB move op cnt : 0
LB apply : 4.33 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.11 us (68.3%)
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 | 7.8945e+05 | 262144 | 1 | 3.321e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.86866346766676 (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 : 5.98 us (1.4%)
patch tree reduce : 1.40 us (0.3%)
gen split merge : 1.12 us (0.3%)
split / merge op : 0/0
apply split merge : 1.03 us (0.2%)
LB compute : 402.63 us (95.2%)
LB move op cnt : 0
LB apply : 4.14 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.93 us (71.1%)
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 | 7.8576e+05 | 262144 | 1 | 3.336e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.788070925230922 (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 : 6.03 us (1.5%)
patch tree reduce : 1.33 us (0.3%)
gen split merge : 982.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.32 us (0.3%)
LB compute : 380.04 us (94.9%)
LB move op cnt : 0
LB apply : 4.36 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.94 us (71.6%)
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.9332e+05 | 262144 | 1 | 3.304e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.947726424761917 (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.03 us (1.6%)
patch tree reduce : 1.44 us (0.4%)
gen split merge : 831.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.03 us (0.3%)
LB compute : 356.62 us (94.8%)
LB move op cnt : 0
LB apply : 3.85 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.19 us (70.0%)
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 | 7.9298e+05 | 262144 | 1 | 3.306e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.938421616106936 (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 : 6.27 us (1.7%)
patch tree reduce : 1.40 us (0.4%)
gen split merge : 1.07 us (0.3%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.3%)
LB compute : 346.28 us (94.4%)
LB move op cnt : 0
LB apply : 3.77 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.13 us (72.7%)
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 | 7.8981e+05 | 262144 | 1 | 3.319e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.869018009577072 (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 : 6.03 us (1.5%)
patch tree reduce : 1.90 us (0.5%)
gen split merge : 892.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 952.00 ns (0.2%)
LB compute : 385.62 us (94.8%)
LB move op cnt : 0
LB apply : 4.98 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.85 us (71.9%)
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.9426e+05 | 262144 | 1 | 3.300e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.96221838787391 (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 : 6.55 us (1.7%)
patch tree reduce : 1.34 us (0.3%)
gen split merge : 941.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.07 us (0.3%)
LB compute : 373.19 us (94.8%)
LB move op cnt : 0
LB apply : 4.02 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.36 us (68.4%)
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 | 7.3630e+05 | 262144 | 1 | 3.560e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.722678038002906 (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 : 5.56 us (1.4%)
patch tree reduce : 1.52 us (0.4%)
gen split merge : 1.04 us (0.3%)
split / merge op : 0/0
apply split merge : 902.00 ns (0.2%)
LB compute : 370.58 us (95.0%)
LB move op cnt : 0
LB apply : 3.99 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.08 us (70.9%)
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 | 7.1694e+05 | 262144 | 1 | 3.656e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.307672009034889 (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.05 us (1.6%)
patch tree reduce : 1.44 us (0.4%)
gen split merge : 1.04 us (0.3%)
split / merge op : 0/0
apply split merge : 951.00 ns (0.3%)
LB compute : 349.07 us (94.6%)
LB move op cnt : 0
LB apply : 4.11 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.60 us (75.1%)
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 | 7.0625e+05 | 262144 | 1 | 3.712e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.077992095385829 (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.73 us (1.8%)
patch tree reduce : 1.61 us (0.4%)
gen split merge : 862.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 892.00 ns (0.2%)
LB compute : 346.04 us (94.5%)
LB move op cnt : 0
LB apply : 3.94 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.70 us (73.1%)
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 | 7.5590e+05 | 262144 | 1 | 3.468e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.136444047835784 (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 : 6.06 us (1.7%)
patch tree reduce : 1.48 us (0.4%)
gen split merge : 892.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.3%)
LB compute : 333.15 us (94.3%)
LB move op cnt : 0
LB apply : 4.18 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.62 us (72.5%)
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 | 6.9635e+05 | 262144 | 1 | 3.765e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.863753054740773 (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.10 us (1.7%)
patch tree reduce : 1.45 us (0.4%)
gen split merge : 821.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 882.00 ns (0.2%)
LB compute : 344.42 us (94.5%)
LB move op cnt : 0
LB apply : 4.16 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.29 us (69.6%)
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 | 7.9027e+05 | 262144 | 1 | 3.317e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.866821217869262 (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.40 us (1.8%)
patch tree reduce : 1.70 us (0.5%)
gen split merge : 841.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.18 us (0.3%)
LB compute : 338.05 us (94.2%)
LB move op cnt : 0
LB apply : 4.13 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.52 us (69.0%)
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 | 7.9026e+05 | 262144 | 1 | 3.317e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.864970040486696 (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 : 6.65 us (1.7%)
patch tree reduce : 1.70 us (0.4%)
gen split merge : 842.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.00 us (0.3%)
LB compute : 359.87 us (94.7%)
LB move op cnt : 0
LB apply : 4.02 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.75 us (69.5%)
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.8925e+05 | 262144 | 1 | 3.321e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.841897491883532 (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 : 5.57 us (1.4%)
patch tree reduce : 1.82 us (0.5%)
gen split merge : 861.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 891.00 ns (0.2%)
LB compute : 385.40 us (95.1%)
LB move op cnt : 0
LB apply : 4.13 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.85 us (70.6%)
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.8259e+05 | 262144 | 1 | 3.350e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.69813729358351 (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 : 6.72 us (1.7%)
patch tree reduce : 1.46 us (0.4%)
gen split merge : 832.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.21 us (0.3%)
LB compute : 364.58 us (94.6%)
LB move op cnt : 0
LB apply : 4.47 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.54 us (69.7%)
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.4343e+05 | 262144 | 1 | 3.526e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.860995894321782 (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 : 27.92 us (7.4%)
patch tree reduce : 1.45 us (0.4%)
gen split merge : 931.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.31 us (0.3%)
LB compute : 337.51 us (88.9%)
LB move op cnt : 0
LB apply : 3.82 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.64 us (73.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 | 6.7928e+05 | 262144 | 1 | 3.859e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.491152871672517 (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.82 us (1.8%)
patch tree reduce : 1.27 us (0.3%)
gen split merge : 831.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.01 us (0.3%)
LB compute : 352.44 us (94.3%)
LB move op cnt : 0
LB apply : 4.88 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.68 us (70.6%)
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 | 7.3785e+05 | 262144 | 1 | 3.553e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.739032544777388 (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.21 us (1.7%)
patch tree reduce : 1.75 us (0.5%)
gen split merge : 831.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.18 us (0.3%)
LB compute : 342.46 us (94.4%)
LB move op cnt : 0
LB apply : 3.98 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.10 us (73.2%)
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 | 7.3356e+05 | 262144 | 1 | 3.574e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.646096030608977 (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 : 6.30 us (1.8%)
patch tree reduce : 1.61 us (0.5%)
gen split merge : 961.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.01 us (0.3%)
LB compute : 333.99 us (94.2%)
LB move op cnt : 0
LB apply : 3.66 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.38 us (72.8%)
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 | 7.3623e+05 | 262144 | 1 | 3.561e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.701570113231886 (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 : 6.66 us (1.8%)
patch tree reduce : 1.34 us (0.4%)
gen split merge : 832.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 24.31 us (6.7%)
LB compute : 320.67 us (88.0%)
LB move op cnt : 0
LB apply : 4.04 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.09 us (74.8%)
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 | 7.0309e+05 | 262144 | 1 | 3.728e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12.508038912098762 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 517.8092079720001 (s) [Godunov][rank=0]
Info: dump to _to_trash/ramses_kh/periodic_0018.vtk [VTK Dump][rank=0]
- took 31.14 ms, bandwidth = 1.31 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 : 5.97 us (1.7%)
patch tree reduce : 1.43 us (0.4%)
gen split merge : 1.06 us (0.3%)
split / merge op : 0/0
apply split merge : 1.07 us (0.3%)
LB compute : 332.98 us (94.4%)
LB move op cnt : 0
LB apply : 4.11 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.31 us (69.1%)
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 | 7.0451e+05 | 262144 | 1 | 3.721e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.022528671667894 (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 : 6.39 us (1.8%)
patch tree reduce : 1.33 us (0.4%)
gen split merge : 811.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.29 us (0.4%)
LB compute : 342.58 us (94.5%)
LB move op cnt : 0
LB apply : 3.91 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.40 us (70.6%)
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 | 6.9425e+05 | 262144 | 1 | 3.776e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.80251219036425 (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.12 us (1.7%)
patch tree reduce : 1.41 us (0.4%)
gen split merge : 812.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.3%)
LB compute : 350.05 us (94.7%)
LB move op cnt : 0
LB apply : 4.02 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.22 us (71.3%)
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 | 7.8005e+05 | 262144 | 1 | 3.361e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.630249966235418 (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 : 5.60 us (1.4%)
patch tree reduce : 1.54 us (0.4%)
gen split merge : 901.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.03 us (0.3%)
LB compute : 386.22 us (95.1%)
LB move op cnt : 0
LB apply : 4.36 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.99 us (72.3%)
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 | 7.9083e+05 | 262144 | 1 | 3.315e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.85860730097786 (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 : 5.99 us (1.5%)
patch tree reduce : 1.67 us (0.4%)
gen split merge : 952.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 892.00 ns (0.2%)
LB compute : 377.57 us (95.0%)
LB move op cnt : 0
LB apply : 4.52 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.01 us (70.1%)
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 | 7.8581e+05 | 262144 | 1 | 3.336e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.750115969075676 (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.27 us (1.6%)
patch tree reduce : 1.45 us (0.4%)
gen split merge : 1.25 us (0.3%)
split / merge op : 0/0
apply split merge : 1.02 us (0.3%)
LB compute : 363.10 us (94.8%)
LB move op cnt : 0
LB apply : 3.74 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.33 us (74.6%)
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 | 7.6144e+05 | 262144 | 1 | 3.443e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.22907898264319 (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.12 us (1.8%)
patch tree reduce : 1.38 us (0.4%)
gen split merge : 902.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.31 us (0.4%)
LB compute : 310.48 us (93.8%)
LB move op cnt : 0
LB apply : 4.40 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.79 us (73.0%)
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 | 7.9213e+05 | 262144 | 1 | 3.309e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.881741067484658 (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 : 6.17 us (1.6%)
patch tree reduce : 1.56 us (0.4%)
gen split merge : 842.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.13 us (0.3%)
LB compute : 373.09 us (94.8%)
LB move op cnt : 0
LB apply : 3.91 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.84 us (70.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 | 7.9193e+05 | 262144 | 1 | 3.310e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.87613022220288 (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.58 us (1.6%)
patch tree reduce : 1.43 us (0.3%)
gen split merge : 922.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 952.00 ns (0.2%)
LB compute : 400.81 us (95.2%)
LB move op cnt : 0
LB apply : 4.09 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.43 us (67.9%)
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 | 7.9062e+05 | 262144 | 1 | 3.316e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.846673255684713 (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.31 us (1.4%)
patch tree reduce : 1.38 us (0.3%)
gen split merge : 831.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.07 us (0.2%)
LB compute : 418.33 us (95.1%)
LB move op cnt : 0
LB apply : 4.37 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.15 us (74.2%)
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.9540e+05 | 262144 | 1 | 3.296e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.947198967781503 (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 : 6.40 us (1.5%)
patch tree reduce : 1.78 us (0.4%)
gen split merge : 832.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 892.00 ns (0.2%)
LB compute : 400.48 us (95.0%)
LB move op cnt : 0
LB apply : 4.35 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.89 us (72.4%)
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.8338e+05 | 262144 | 1 | 3.346e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.689650657000136 (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.20 us (1.4%)
patch tree reduce : 1.40 us (0.3%)
gen split merge : 931.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.01 us (0.2%)
LB compute : 431.42 us (95.4%)
LB move op cnt : 0
LB apply : 4.11 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.27 us (74.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 | 7.9168e+05 | 262144 | 1 | 3.311e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.864965386116772 (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.47 us (1.6%)
patch tree reduce : 1.47 us (0.4%)
gen split merge : 1.09 us (0.3%)
split / merge op : 0/0
apply split merge : 922.00 ns (0.2%)
LB compute : 375.44 us (94.8%)
LB move op cnt : 0
LB apply : 3.93 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.82 us (71.0%)
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 | 7.3299e+05 | 262144 | 1 | 3.576e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.613433095533349 (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.80 us (1.8%)
patch tree reduce : 1.66 us (0.4%)
gen split merge : 871.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.10 us (0.3%)
LB compute : 354.24 us (94.4%)
LB move op cnt : 0
LB apply : 4.14 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.32 us (68.8%)
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.6916e+05 | 262144 | 1 | 3.408e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.382558384520095 (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.20 us (1.6%)
patch tree reduce : 1.35 us (0.3%)
gen split merge : 822.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.00 us (0.3%)
LB compute : 370.69 us (94.9%)
LB move op cnt : 0
LB apply : 3.82 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.34 us (66.5%)
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.1389e+05 | 262144 | 1 | 3.672e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.204118556723548 (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.24 us (1.5%)
patch tree reduce : 1.59 us (0.4%)
gen split merge : 1.17 us (0.3%)
split / merge op : 0/0
apply split merge : 891.00 ns (0.2%)
LB compute : 392.44 us (95.1%)
LB move op cnt : 0
LB apply : 3.87 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.71 us (71.4%)
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.4876e+05 | 262144 | 1 | 3.501e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.945471649849353 (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.12 us (1.6%)
patch tree reduce : 1.64 us (0.4%)
gen split merge : 831.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 902.00 ns (0.2%)
LB compute : 367.35 us (94.8%)
LB move op cnt : 0
LB apply : 4.06 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.78 us (67.4%)
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.8919e+05 | 262144 | 1 | 3.322e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.805147094036666 (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.28 us (1.6%)
patch tree reduce : 1.44 us (0.4%)
gen split merge : 1.02 us (0.3%)
split / merge op : 0/0
apply split merge : 881.00 ns (0.2%)
LB compute : 366.63 us (94.7%)
LB move op cnt : 0
LB apply : 3.99 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.82 us (71.7%)
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 | 7.6378e+05 | 262144 | 1 | 3.432e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.262863756757977 (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.28 us (1.7%)
patch tree reduce : 1.64 us (0.5%)
gen split merge : 511.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 872.00 ns (0.2%)
LB compute : 341.36 us (94.7%)
LB move op cnt : 0
LB apply : 3.81 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.62 us (73.1%)
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 | 7.2949e+05 | 262144 | 1 | 3.594e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.531643371168826 (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.24 us (1.6%)
patch tree reduce : 1.49 us (0.4%)
gen split merge : 1.09 us (0.3%)
split / merge op : 0/0
apply split merge : 871.00 ns (0.2%)
LB compute : 370.40 us (94.7%)
LB move op cnt : 0
LB apply : 4.41 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.41 us (70.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.1703e+05 | 262144 | 1 | 3.656e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.265013433518751 (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 : 6.59 us (1.8%)
patch tree reduce : 1.65 us (0.4%)
gen split merge : 1.19 us (0.3%)
split / merge op : 0/0
apply split merge : 952.00 ns (0.3%)
LB compute : 347.00 us (94.2%)
LB move op cnt : 0
LB apply : 4.04 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.38 us (75.2%)
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 | 7.4696e+05 | 262144 | 1 | 3.509e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.901148512334897 (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.41 us (1.8%)
patch tree reduce : 1.35 us (0.4%)
gen split merge : 1.02 us (0.3%)
split / merge op : 0/0
apply split merge : 1.37 us (0.4%)
LB compute : 337.20 us (94.2%)
LB move op cnt : 0
LB apply : 4.12 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.25 us (73.5%)
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 | 6.8718e+05 | 262144 | 1 | 3.815e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.627465131519793 (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.66 us (1.8%)
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.02 us (0.3%)
LB compute : 342.65 us (94.4%)
LB move op cnt : 0
LB apply : 3.68 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.12 us (67.5%)
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.9611e+05 | 262144 | 1 | 3.293e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.945055267962246 (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.21 us (1.7%)
patch tree reduce : 1.55 us (0.4%)
gen split merge : 912.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 971.00 ns (0.3%)
LB compute : 353.90 us (94.4%)
LB move op cnt : 0
LB apply : 4.36 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.76 us (69.6%)
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.8987e+05 | 262144 | 1 | 3.319e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.81106193753866 (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 : 5.88 us (1.4%)
patch tree reduce : 1.54 us (0.4%)
gen split merge : 921.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.12 us (0.3%)
LB compute : 406.30 us (95.3%)
LB move op cnt : 0
LB apply : 4.02 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.94 us (74.2%)
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 | 7.5361e+05 | 262144 | 1 | 3.478e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.038222056234144 (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.38 us (1.6%)
patch tree reduce : 1.35 us (0.3%)
gen split merge : 851.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.33 us (0.3%)
LB compute : 381.61 us (94.8%)
LB move op cnt : 0
LB apply : 4.22 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.07 us (70.5%)
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 | 7.3459e+05 | 262144 | 1 | 3.569e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.632221759537739 (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.42 us (1.7%)
patch tree reduce : 1.44 us (0.4%)
gen split merge : 922.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 902.00 ns (0.2%)
LB compute : 348.04 us (94.4%)
LB move op cnt : 0
LB apply : 4.56 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.70 us (70.2%)
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 | 7.3603e+05 | 262144 | 1 | 3.562e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.661832516998833 (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 : 5.94 us (1.6%)
patch tree reduce : 1.30 us (0.3%)
gen split merge : 822.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.3%)
LB compute : 353.36 us (94.5%)
LB move op cnt : 0
LB apply : 4.29 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.04 us (73.9%)
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 | 7.2349e+05 | 262144 | 1 | 3.623e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.393982620824758 (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 : 5.64 us (1.5%)
patch tree reduce : 1.72 us (0.5%)
gen split merge : 831.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.10 us (0.3%)
LB compute : 355.03 us (94.9%)
LB move op cnt : 0
LB apply : 3.60 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.00 us (72.6%)
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 | 6.5318e+05 | 262144 | 1 | 4.013e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.897155381677557 (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.50 us (1.9%)
patch tree reduce : 1.41 us (0.4%)
gen split merge : 912.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 861.00 ns (0.2%)
LB compute : 325.75 us (94.2%)
LB move op cnt : 0
LB apply : 3.87 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.35 us (70.5%)
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 | 7.1758e+05 | 262144 | 1 | 3.653e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.26632288088262 (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.18 us (1.6%)
patch tree reduce : 1.50 us (0.4%)
gen split merge : 931.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.17 us (0.3%)
LB compute : 370.54 us (94.8%)
LB move op cnt : 0
LB apply : 4.24 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.02 us (70.5%)
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 | 7.9040e+05 | 262144 | 1 | 3.317e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.814410205417737 (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.57 us (1.6%)
patch tree reduce : 1.50 us (0.4%)
gen split merge : 961.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.00 us (0.2%)
LB compute : 391.99 us (95.0%)
LB move op cnt : 0
LB apply : 3.82 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.94 us (72.5%)
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.3572e+05 | 262144 | 1 | 3.563e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.650185499299287 (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.42 us (1.6%)
patch tree reduce : 1.55 us (0.4%)
gen split merge : 822.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.2%)
LB compute : 374.85 us (94.8%)
LB move op cnt : 0
LB apply : 4.28 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.25 us (65.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 | 7.3014e+05 | 262144 | 1 | 3.590e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.530523510445834 (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.06 us (1.4%)
patch tree reduce : 1.75 us (0.4%)
gen split merge : 942.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 941.00 ns (0.2%)
LB compute : 404.23 us (95.3%)
LB move op cnt : 0
LB apply : 3.81 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.80 us (73.3%)
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 | 6.2223e+05 | 262144 | 1 | 4.213e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.234395530402965 (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 : 6.46 us (2.0%)
patch tree reduce : 1.64 us (0.5%)
gen split merge : 821.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.3%)
LB compute : 304.00 us (93.7%)
LB move op cnt : 0
LB apply : 3.90 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.56 us (69.4%)
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 | 7.3453e+05 | 262144 | 1 | 3.569e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.622132400072344 (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 : 6.06 us (1.6%)
patch tree reduce : 1.43 us (0.4%)
gen split merge : 831.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.19 us (0.3%)
LB compute : 348.95 us (94.6%)
LB move op cnt : 0
LB apply : 4.03 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.01 us (69.9%)
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 | 7.5161e+05 | 262144 | 1 | 3.488e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.984397032342855 (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.38 us (1.7%)
patch tree reduce : 1.95 us (0.5%)
gen split merge : 832.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 912.00 ns (0.2%)
LB compute : 365.46 us (94.5%)
LB move op cnt : 0
LB apply : 4.36 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.58 us (72.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 | 7.3646e+05 | 262144 | 1 | 3.560e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.661394289900969 (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 : 6.24 us (1.6%)
patch tree reduce : 1.39 us (0.4%)
gen split merge : 911.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 981.00 ns (0.2%)
LB compute : 373.06 us (95.0%)
LB move op cnt : 0
LB apply : 4.16 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.63 us (71.8%)
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 | 7.8760e+05 | 262144 | 1 | 3.328e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.748108363189488 (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.63 us (1.9%)
patch tree reduce : 1.45 us (0.4%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.24 us (0.4%)
LB compute : 318.51 us (93.6%)
LB move op cnt : 0
LB apply : 4.35 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.32 us (74.9%)
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 | 6.8589e+05 | 262144 | 1 | 3.822e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.58451999386309 (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 : 5.91 us (1.6%)
patch tree reduce : 1.49 us (0.4%)
gen split merge : 1.17 us (0.3%)
split / merge op : 0/0
apply split merge : 1.01 us (0.3%)
LB compute : 354.24 us (94.7%)
LB move op cnt : 0
LB apply : 4.20 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.54 us (69.3%)
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 | 7.8612e+05 | 262144 | 1 | 3.335e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.71512743097344 (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.22 us (1.8%)
patch tree reduce : 1.70 us (0.5%)
gen split merge : 852.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.10 us (0.3%)
LB compute : 329.10 us (94.3%)
LB move op cnt : 0
LB apply : 3.94 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.38 us (73.1%)
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 | 7.3521e+05 | 262144 | 1 | 3.566e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.63201738703745 (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.31 us (1.7%)
patch tree reduce : 1.31 us (0.4%)
gen split merge : 922.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.01 us (0.3%)
LB compute : 343.69 us (94.6%)
LB move op cnt : 0
LB apply : 4.25 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.32 us (69.4%)
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 | 7.6281e+05 | 262144 | 1 | 3.437e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.218204037048242 (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 : 5.53 us (1.5%)
patch tree reduce : 1.27 us (0.3%)
gen split merge : 492.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 872.00 ns (0.2%)
LB compute : 352.00 us (95.0%)
LB move op cnt : 0
LB apply : 4.17 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.87 us (71.8%)
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 | 7.8344e+05 | 262144 | 1 | 3.346e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.656373146625064 (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.77 us (1.7%)
patch tree reduce : 1.70 us (0.4%)
gen split merge : 931.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.2%)
LB compute : 379.44 us (94.8%)
LB move op cnt : 0
LB apply : 3.70 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.42 us (68.7%)
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 | 6.9973e+05 | 262144 | 1 | 3.746e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.876083085475411 (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.09 us (1.6%)
patch tree reduce : 1.34 us (0.4%)
gen split merge : 932.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.10 us (0.3%)
LB compute : 353.82 us (94.6%)
LB move op cnt : 0
LB apply : 4.03 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.49 us (66.9%)
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.6311e+05 | 262144 | 1 | 3.435e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.22306938511469 (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.37 us (1.7%)
patch tree reduce : 1.96 us (0.5%)
gen split merge : 942.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.3%)
LB compute : 356.79 us (94.4%)
LB move op cnt : 0
LB apply : 3.97 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.88 us (72.8%)
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.6131e+05 | 262144 | 1 | 3.443e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.184522383982777 (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 : 5.73 us (1.4%)
patch tree reduce : 1.60 us (0.4%)
gen split merge : 841.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.2%)
LB compute : 383.16 us (95.0%)
LB move op cnt : 0
LB apply : 4.43 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.64 us (71.3%)
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.8943e+05 | 262144 | 1 | 3.321e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.781716637209044 (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 : 6.60 us (1.7%)
patch tree reduce : 1.50 us (0.4%)
gen split merge : 921.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 881.00 ns (0.2%)
LB compute : 371.35 us (94.5%)
LB move op cnt : 0
LB apply : 4.49 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.58 us (69.7%)
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 | 7.7074e+05 | 262144 | 1 | 3.401e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.384186377453283 (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 : 5.84 us (1.4%)
patch tree reduce : 1.43 us (0.4%)
gen split merge : 932.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.2%)
LB compute : 387.08 us (95.1%)
LB move op cnt : 0
LB apply : 4.14 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.80 us (70.3%)
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 | 7.8724e+05 | 262144 | 1 | 3.330e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.734518143525374 (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.03 us (1.4%)
patch tree reduce : 1.93 us (0.4%)
gen split merge : 851.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.2%)
LB compute : 390.88 us (90.1%)
LB move op cnt : 0
LB apply : 4.03 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.64 us (69.8%)
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 | 7.9243e+05 | 262144 | 1 | 3.308e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.844458562668507 (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.58 us (1.7%)
patch tree reduce : 1.69 us (0.4%)
gen split merge : 831.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.00 us (0.3%)
LB compute : 359.82 us (94.5%)
LB move op cnt : 0
LB apply : 4.20 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.00 us (70.5%)
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 | 7.7804e+05 | 262144 | 1 | 3.369e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.538398389975683 (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 : 5.74 us (1.6%)
patch tree reduce : 1.67 us (0.5%)
gen split merge : 581.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 942.00 ns (0.3%)
LB compute : 333.74 us (94.4%)
LB move op cnt : 0
LB apply : 3.81 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.69 us (73.8%)
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 | 7.1734e+05 | 262144 | 1 | 3.654e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.247874226752103 (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.70 us (1.9%)
patch tree reduce : 1.52 us (0.4%)
gen split merge : 831.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 971.00 ns (0.3%)
LB compute : 333.71 us (94.1%)
LB move op cnt : 0
LB apply : 4.29 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.39 us (74.1%)
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 | 7.1655e+05 | 262144 | 1 | 3.658e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.23076368107147 (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.05 us (1.7%)
patch tree reduce : 1.36 us (0.4%)
gen split merge : 1.10 us (0.3%)
split / merge op : 0/0
apply split merge : 1.04 us (0.3%)
LB compute : 337.24 us (94.3%)
LB move op cnt : 0
LB apply : 4.44 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.49 us (68.9%)
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 | 6.6656e+05 | 262144 | 1 | 3.933e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.168083486899196 (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.22 us (1.6%)
patch tree reduce : 1.41 us (0.4%)
gen split merge : 902.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 881.00 ns (0.2%)
LB compute : 367.68 us (94.8%)
LB move op cnt : 0
LB apply : 4.10 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.67 us (72.9%)
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 | 7.1359e+05 | 262144 | 1 | 3.674e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.167604894441066 (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 : 5.77 us (1.5%)
patch tree reduce : 1.77 us (0.5%)
gen split merge : 822.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.2%)
LB compute : 367.90 us (94.9%)
LB move op cnt : 0
LB apply : 4.33 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.46 us (70.9%)
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 | 7.2643e+05 | 262144 | 1 | 3.609e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.440535764297715 (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 : 5.74 us (1.4%)
patch tree reduce : 1.40 us (0.3%)
gen split merge : 1.14 us (0.3%)
split / merge op : 0/0
apply split merge : 942.00 ns (0.2%)
LB compute : 381.79 us (95.0%)
LB move op cnt : 0
LB apply : 3.82 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.73 us (73.1%)
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 | 7.8458e+05 | 262144 | 1 | 3.341e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.676456938339008 (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.12 us (1.7%)
patch tree reduce : 1.52 us (0.4%)
gen split merge : 932.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 871.00 ns (0.2%)
LB compute : 339.12 us (94.5%)
LB move op cnt : 0
LB apply : 4.14 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.92 us (70.6%)
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 | 7.1655e+05 | 262144 | 1 | 3.658e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.230507150927677 (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.39 us (1.9%)
patch tree reduce : 1.34 us (0.4%)
gen split merge : 1.11 us (0.3%)
split / merge op : 0/0
apply split merge : 1.01 us (0.3%)
LB compute : 316.19 us (93.7%)
LB move op cnt : 0
LB apply : 4.43 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.58 us (70.1%)
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 | 7.9416e+05 | 262144 | 1 | 3.301e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.88001180146281 (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.21 us (1.4%)
patch tree reduce : 1.67 us (0.4%)
gen split merge : 812.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.30 us (0.3%)
LB compute : 409.77 us (95.3%)
LB move op cnt : 0
LB apply : 4.15 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.73 us (70.7%)
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 | 6.8003e+05 | 262144 | 1 | 3.855e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.454219860115481 (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.09 us (1.7%)
patch tree reduce : 1.49 us (0.4%)
gen split merge : 851.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 871.00 ns (0.2%)
LB compute : 341.98 us (94.4%)
LB move op cnt : 0
LB apply : 4.06 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.03 us (72.8%)
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 | 7.3377e+05 | 262144 | 1 | 3.573e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.596753706519307 (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 : 6.07 us (1.7%)
patch tree reduce : 1.44 us (0.4%)
gen split merge : 821.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 901.00 ns (0.3%)
LB compute : 327.38 us (94.3%)
LB move op cnt : 0
LB apply : 4.21 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.52 us (71.4%)
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 | 7.3832e+05 | 262144 | 1 | 3.551e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.693441508396608 (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 : 6.01 us (1.5%)
patch tree reduce : 1.40 us (0.4%)
gen split merge : 812.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.13 us (0.3%)
LB compute : 370.57 us (94.9%)
LB move op cnt : 0
LB apply : 4.08 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.13 us (75.0%)
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 | 7.2090e+05 | 262144 | 1 | 3.636e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.323463786890168 (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.23 us (1.6%)
patch tree reduce : 1.32 us (0.3%)
gen split merge : 1.06 us (0.3%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.2%)
LB compute : 380.23 us (94.9%)
LB move op cnt : 0
LB apply : 4.31 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.11 us (74.3%)
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 | 7.5409e+05 | 262144 | 1 | 3.476e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.027904514299482 (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 : 5.86 us (1.4%)
patch tree reduce : 1.52 us (0.4%)
gen split merge : 832.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.03 us (0.3%)
LB compute : 389.14 us (95.1%)
LB move op cnt : 0
LB apply : 4.17 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.85 us (73.6%)
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 | 7.7762e+05 | 262144 | 1 | 3.371e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.52571925912246 (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 : 6.12 us (1.7%)
patch tree reduce : 1.50 us (0.4%)
gen split merge : 922.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.3%)
LB compute : 349.20 us (94.7%)
LB move op cnt : 0
LB apply : 3.90 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.48 us (71.9%)
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 | 7.7755e+05 | 262144 | 1 | 3.371e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.522106855396284 (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.06 us (1.6%)
patch tree reduce : 1.35 us (0.4%)
gen split merge : 831.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.00 us (0.3%)
LB compute : 347.88 us (94.6%)
LB move op cnt : 0
LB apply : 4.02 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.78 us (69.4%)
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 | 7.8058e+05 | 262144 | 1 | 3.358e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.58424918112364 (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 : 5.72 us (1.6%)
patch tree reduce : 1.43 us (0.4%)
gen split merge : 832.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 951.00 ns (0.3%)
LB compute : 339.70 us (94.6%)
LB move op cnt : 0
LB apply : 4.00 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.64 us (70.3%)
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.6424e+05 | 262144 | 1 | 3.430e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.235064427687675 (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 : 6.62 us (1.8%)
patch tree reduce : 1.56 us (0.4%)
gen split merge : 841.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.07 us (0.3%)
LB compute : 348.23 us (94.3%)
LB move op cnt : 0
LB apply : 4.02 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.19 us (69.3%)
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.1351e+05 | 262144 | 1 | 3.674e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.155373726508465 (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.11 us (0.8%)
patch tree reduce : 1.45 us (0.2%)
gen split merge : 822.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.1%)
LB compute : 710.96 us (97.2%)
LB move op cnt : 0
LB apply : 4.52 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.29 us (73.9%)
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 | 7.8026e+05 | 262144 | 1 | 3.360e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.571101801372375 (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.45 us (1.9%)
patch tree reduce : 1.52 us (0.4%)
gen split merge : 1.06 us (0.3%)
split / merge op : 0/0
apply split merge : 1.04 us (0.3%)
LB compute : 325.48 us (94.1%)
LB move op cnt : 0
LB apply : 4.20 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.72 us (71.3%)
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 | 7.8956e+05 | 262144 | 1 | 3.320e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.766398670384763 (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 : 6.30 us (1.8%)
patch tree reduce : 1.64 us (0.5%)
gen split merge : 842.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 851.00 ns (0.2%)
LB compute : 327.86 us (94.2%)
LB move op cnt : 0
LB apply : 4.08 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.50 us (68.1%)
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 | 7.6370e+05 | 262144 | 1 | 3.433e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.215365624232458 (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.71 us (1.9%)
patch tree reduce : 1.76 us (0.5%)
gen split merge : 872.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.20 us (0.3%)
LB compute : 336.05 us (94.0%)
LB move op cnt : 0
LB apply : 4.19 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.30 us (63.0%)
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 | 7.7995e+05 | 262144 | 1 | 3.361e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.55819104205234 (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.55 us (1.9%)
patch tree reduce : 1.37 us (0.4%)
gen split merge : 862.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 942.00 ns (0.3%)
LB compute : 329.43 us (94.0%)
LB move op cnt : 0
LB apply : 4.37 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.53 us (75.2%)
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 | 7.7296e+05 | 262144 | 1 | 3.391e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.407675546800995 (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.04 us (1.5%)
patch tree reduce : 1.38 us (0.3%)
gen split merge : 841.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.11 us (0.3%)
LB compute : 393.65 us (94.9%)
LB move op cnt : 0
LB apply : 4.35 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.72 us (72.5%)
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 | 7.7971e+05 | 262144 | 1 | 3.362e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.548872027738735 (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 : 5.96 us (1.6%)
patch tree reduce : 1.51 us (0.4%)
gen split merge : 1.22 us (0.3%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.3%)
LB compute : 354.38 us (94.7%)
LB move op cnt : 0
LB apply : 3.88 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.33 us (74.8%)
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 | 7.4871e+05 | 262144 | 1 | 3.501e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.889005063045914 (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.28 us (1.4%)
patch tree reduce : 1.38 us (0.3%)
gen split merge : 1.13 us (0.3%)
split / merge op : 0/0
apply split merge : 1.00 us (0.2%)
LB compute : 412.54 us (95.2%)
LB move op cnt : 0
LB apply : 4.08 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.88 us (73.2%)
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 | 7.7616e+05 | 262144 | 1 | 3.377e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.469343531727784 (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 : 6.30 us (1.6%)
patch tree reduce : 1.74 us (0.4%)
gen split merge : 812.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 862.00 ns (0.2%)
LB compute : 370.89 us (94.9%)
LB move op cnt : 0
LB apply : 3.92 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.71 us (70.3%)
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 | 7.8419e+05 | 262144 | 1 | 3.343e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.637607109443618 (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.29 us (1.5%)
patch tree reduce : 1.76 us (0.4%)
gen split merge : 952.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.20 us (0.3%)
LB compute : 402.28 us (95.1%)
LB move op cnt : 0
LB apply : 4.26 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.58 us (69.5%)
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 | 7.3807e+05 | 262144 | 1 | 3.552e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.657269177818867 (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.84 us (1.7%)
patch tree reduce : 1.62 us (0.4%)
gen split merge : 942.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 872.00 ns (0.2%)
LB compute : 388.01 us (94.7%)
LB move op cnt : 0
LB apply : 4.52 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.70 us (71.7%)
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 | 7.7877e+05 | 262144 | 1 | 3.366e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.51854740560453 (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.47 us (1.6%)
patch tree reduce : 1.59 us (0.4%)
gen split merge : 1.15 us (0.3%)
split / merge op : 0/0
apply split merge : 1.07 us (0.3%)
LB compute : 386.90 us (94.9%)
LB move op cnt : 0
LB apply : 4.13 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.23 us (68.0%)
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 | 7.0932e+05 | 262144 | 1 | 3.696e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.04351454064981 (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 : 6.54 us (1.7%)
patch tree reduce : 1.65 us (0.4%)
gen split merge : 942.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.3%)
LB compute : 359.48 us (94.6%)
LB move op cnt : 0
LB apply : 3.99 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.77 us (72.4%)
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 | 7.8638e+05 | 262144 | 1 | 3.334e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.675639167969702 (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.31 us (1.7%)
patch tree reduce : 1.47 us (0.4%)
gen split merge : 1.12 us (0.3%)
split / merge op : 0/0
apply split merge : 1.33 us (0.4%)
LB compute : 351.20 us (94.2%)
LB move op cnt : 0
LB apply : 4.40 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.14 us (74.3%)
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 | 7.5016e+05 | 262144 | 1 | 3.495e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.9055815620588 (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 : 5.84 us (1.6%)
patch tree reduce : 1.61 us (0.4%)
gen split merge : 912.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.40 us (0.4%)
LB compute : 352.24 us (94.6%)
LB move op cnt : 0
LB apply : 4.09 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.63 us (69.1%)
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 | 7.9422e+05 | 262144 | 1 | 3.301e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.837695117115945 (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 : 6.97 us (2.1%)
patch tree reduce : 1.35 us (0.4%)
gen split merge : 1.19 us (0.4%)
split / merge op : 0/0
apply split merge : 1.00 us (0.3%)
LB compute : 316.70 us (93.9%)
LB move op cnt : 0
LB apply : 3.95 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.75 us (71.2%)
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 | 7.2270e+05 | 262144 | 1 | 3.627e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.31945562837519 (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 : 7.19 us (1.9%)
patch tree reduce : 1.47 us (0.4%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.11 us (0.3%)
LB compute : 348.48 us (94.3%)
LB move op cnt : 0
LB apply : 3.85 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.44 us (70.8%)
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 | 7.6277e+05 | 262144 | 1 | 3.437e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7.064085398461954 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 548.429013688 (s) [Godunov][rank=0]
Info: dump to _to_trash/ramses_kh/periodic_0019.vtk [VTK Dump][rank=0]
- took 30.47 ms, bandwidth = 1.34 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 : 5.96 us (1.6%)
patch tree reduce : 1.38 us (0.4%)
gen split merge : 962.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.09 us (0.3%)
LB compute : 363.25 us (95.1%)
LB move op cnt : 0
LB apply : 3.47 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.78 us (69.8%)
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 | 7.0556e+05 | 262144 | 1 | 3.715e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.953737498945193 (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 : 6.17 us (1.8%)
patch tree reduce : 1.79 us (0.5%)
gen split merge : 922.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 852.00 ns (0.2%)
LB compute : 322.00 us (94.0%)
LB move op cnt : 0
LB apply : 4.69 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.40 us (66.1%)
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 | 7.9355e+05 | 262144 | 1 | 3.303e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.816489574088425 (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.54 us (1.9%)
patch tree reduce : 1.34 us (0.4%)
gen split merge : 922.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.35 us (0.4%)
LB compute : 329.28 us (94.2%)
LB move op cnt : 0
LB apply : 3.91 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.55 us (69.8%)
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 | 7.8969e+05 | 262144 | 1 | 3.320e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.73226677837894 (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 : 5.87 us (1.7%)
patch tree reduce : 1.35 us (0.4%)
gen split merge : 1.06 us (0.3%)
split / merge op : 0/0
apply split merge : 1.35 us (0.4%)
LB compute : 317.80 us (94.2%)
LB move op cnt : 0
LB apply : 3.96 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.21 us (67.2%)
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 | 7.9005e+05 | 262144 | 1 | 3.318e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.737215549643476 (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.63 us (1.8%)
patch tree reduce : 1.92 us (0.5%)
gen split merge : 942.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 952.00 ns (0.3%)
LB compute : 353.87 us (94.3%)
LB move op cnt : 0
LB apply : 4.36 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.26 us (71.1%)
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 | 7.9090e+05 | 262144 | 1 | 3.314e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.752822044943137 (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.30 us (1.6%)
patch tree reduce : 1.59 us (0.4%)
gen split merge : 792.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.11 us (0.3%)
LB compute : 369.06 us (94.6%)
LB move op cnt : 0
LB apply : 4.51 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.81 us (73.5%)
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 | 7.1425e+05 | 262144 | 1 | 3.670e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.126832562278164 (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 : 5.98 us (1.4%)
patch tree reduce : 1.41 us (0.3%)
gen split merge : 1.12 us (0.3%)
split / merge op : 0/0
apply split merge : 1.16 us (0.3%)
LB compute : 408.13 us (95.2%)
LB move op cnt : 0
LB apply : 3.94 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.51 us (69.6%)
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 | 7.8955e+05 | 262144 | 1 | 3.320e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.71920082615308 (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.41 us (1.6%)
patch tree reduce : 1.71 us (0.4%)
gen split merge : 952.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.22 us (0.3%)
LB compute : 373.35 us (94.8%)
LB move op cnt : 0
LB apply : 4.11 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.79 us (72.2%)
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 | 6.4781e+05 | 262144 | 1 | 4.047e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.715722964419317 (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.35 us (1.5%)
patch tree reduce : 1.40 us (0.3%)
gen split merge : 981.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.35 us (0.3%)
LB compute : 391.18 us (95.1%)
LB move op cnt : 0
LB apply : 3.83 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.52 us (70.5%)
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.8666e+05 | 262144 | 1 | 3.332e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.65309615139355 (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 : 6.66 us (1.7%)
patch tree reduce : 1.70 us (0.4%)
gen split merge : 842.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.56 us (0.4%)
LB compute : 342.40 us (89.1%)
LB move op cnt : 0
LB apply : 3.75 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.92 us (72.2%)
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 | 6.9990e+05 | 262144 | 1 | 3.745e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.814161720829977 (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 : 5.92 us (1.8%)
patch tree reduce : 1.33 us (0.4%)
gen split merge : 902.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.32 us (0.4%)
LB compute : 313.09 us (94.2%)
LB move op cnt : 0
LB apply : 3.78 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.19 us (71.3%)
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 | 6.6780e+05 | 262144 | 1 | 3.926e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.132672111137149 (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 : 5.79 us (1.7%)
patch tree reduce : 1.50 us (0.4%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.3%)
LB compute : 329.89 us (94.4%)
LB move op cnt : 0
LB apply : 4.04 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.20 us (66.5%)
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.4678e+05 | 262144 | 1 | 3.510e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.801999079932488 (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 : 6.40 us (1.7%)
patch tree reduce : 1.77 us (0.5%)
gen split merge : 832.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 912.00 ns (0.2%)
LB compute : 358.45 us (94.4%)
LB move op cnt : 0
LB apply : 4.30 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.76 us (72.6%)
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.8995e+05 | 262144 | 1 | 3.318e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.713065071152332 (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.15 us (1.6%)
patch tree reduce : 1.50 us (0.4%)
gen split merge : 841.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 892.00 ns (0.2%)
LB compute : 358.75 us (94.7%)
LB move op cnt : 0
LB apply : 4.07 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.77 us (71.1%)
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 | 7.1989e+05 | 262144 | 1 | 3.641e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.22867252810646 (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.19 us (1.8%)
patch tree reduce : 1.76 us (0.5%)
gen split merge : 912.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 862.00 ns (0.3%)
LB compute : 323.16 us (94.2%)
LB move op cnt : 0
LB apply : 3.95 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.39 us (67.4%)
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 | 7.9332e+05 | 262144 | 1 | 3.304e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.779662080531526 (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 : 6.02 us (1.8%)
patch tree reduce : 1.37 us (0.4%)
gen split merge : 921.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.09 us (0.3%)
LB compute : 319.86 us (94.2%)
LB move op cnt : 0
LB apply : 4.03 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.32 us (67.8%)
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.7802e+05 | 262144 | 1 | 3.369e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.453582685316487 (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 : 6.22 us (1.8%)
patch tree reduce : 1.31 us (0.4%)
gen split merge : 842.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.26 us (0.4%)
LB compute : 320.93 us (94.1%)
LB move op cnt : 0
LB apply : 3.91 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.31 us (72.2%)
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.7352e+05 | 262144 | 1 | 3.389e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.35619879479187 (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.22 us (1.5%)
patch tree reduce : 1.47 us (0.4%)
gen split merge : 942.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 942.00 ns (0.2%)
LB compute : 391.91 us (94.9%)
LB move op cnt : 0
LB apply : 4.18 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.58 us (72.6%)
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.9088e+05 | 262144 | 1 | 3.315e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.7210769152665 (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 : 5.73 us (1.7%)
patch tree reduce : 1.43 us (0.4%)
gen split merge : 911.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.16 us (0.3%)
LB compute : 322.16 us (94.3%)
LB move op cnt : 0
LB apply : 4.21 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.54 us (72.9%)
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 | 7.4758e+05 | 262144 | 1 | 3.507e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.803271970206623 (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 : 5.90 us (1.7%)
patch tree reduce : 1.71 us (0.5%)
gen split merge : 912.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.35 us (0.4%)
LB compute : 318.00 us (94.2%)
LB move op cnt : 0
LB apply : 4.04 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.67 us (70.0%)
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 | 7.8494e+05 | 262144 | 1 | 3.340e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.590989460849958 (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 : 6.80 us (1.8%)
patch tree reduce : 1.48 us (0.4%)
gen split merge : 801.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.04 us (0.3%)
LB compute : 364.68 us (94.5%)
LB move op cnt : 0
LB apply : 4.45 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.16 us (74.8%)
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 | 7.8454e+05 | 262144 | 1 | 3.341e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.580345347764652 (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.61 us (1.7%)
patch tree reduce : 1.66 us (0.4%)
gen split merge : 932.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.31 us (0.3%)
LB compute : 360.56 us (94.4%)
LB move op cnt : 0
LB apply : 4.03 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.46 us (68.7%)
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 | 7.8449e+05 | 262144 | 1 | 3.342e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.57705490266274 (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 : 5.91 us (1.6%)
patch tree reduce : 1.78 us (0.5%)
gen split merge : 872.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 892.00 ns (0.2%)
LB compute : 351.90 us (94.5%)
LB move op cnt : 0
LB apply : 4.75 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.87 us (72.4%)
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 | 7.4940e+05 | 262144 | 1 | 3.498e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.833495237720685 (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 : 5.62 us (1.5%)
patch tree reduce : 1.43 us (0.4%)
gen split merge : 921.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 882.00 ns (0.2%)
LB compute : 359.55 us (94.9%)
LB move op cnt : 0
LB apply : 4.24 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.04 us (74.2%)
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 | 7.9399e+05 | 262144 | 1 | 3.302e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.77350048877314 (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.04 us (1.6%)
patch tree reduce : 1.67 us (0.4%)
gen split merge : 932.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.39 us (0.4%)
LB compute : 352.69 us (94.7%)
LB move op cnt : 0
LB apply : 3.93 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.63 us (71.6%)
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.9214e+05 | 262144 | 1 | 3.309e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.73214130195015 (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 : 5.96 us (1.7%)
patch tree reduce : 1.63 us (0.5%)
gen split merge : 1.06 us (0.3%)
split / merge op : 0/0
apply split merge : 1.09 us (0.3%)
LB compute : 322.61 us (94.0%)
LB move op cnt : 0
LB apply : 4.49 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.09 us (70.6%)
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 | 7.1293e+05 | 262144 | 1 | 3.677e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.05716556613238 (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.27 us (1.7%)
patch tree reduce : 1.75 us (0.5%)
gen split merge : 831.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.00 us (0.3%)
LB compute : 348.35 us (94.5%)
LB move op cnt : 0
LB apply : 4.21 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.94 us (72.7%)
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 | 7.3789e+05 | 262144 | 1 | 3.553e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.582293833910567 (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.04 us (2.1%)
patch tree reduce : 1.82 us (0.5%)
gen split merge : 1.43 us (0.4%)
split / merge op : 0/0
apply split merge : 1.34 us (0.4%)
LB compute : 317.90 us (93.3%)
LB move op cnt : 0
LB apply : 4.12 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.98 us (73.9%)
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 | 7.4719e+05 | 262144 | 1 | 3.508e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.776769204798212 (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.22 us (1.7%)
patch tree reduce : 1.34 us (0.4%)
gen split merge : 872.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.00 us (0.3%)
LB compute : 338.16 us (94.5%)
LB move op cnt : 0
LB apply : 3.69 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 24.18 us (94.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.8963e+05 | 262144 | 1 | 3.320e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.670777194630826 (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 : 6.35 us (1.7%)
patch tree reduce : 1.62 us (0.4%)
gen split merge : 892.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 922.00 ns (0.2%)
LB compute : 353.83 us (94.3%)
LB move op cnt : 0
LB apply : 4.22 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.65 us (71.6%)
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.6858e+05 | 262144 | 1 | 3.411e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.224586557431618 (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 : 6.90 us (2.1%)
patch tree reduce : 1.40 us (0.4%)
gen split merge : 821.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.01 us (0.3%)
LB compute : 314.64 us (93.8%)
LB move op cnt : 0
LB apply : 4.04 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.58 us (68.9%)
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 | 7.8183e+05 | 262144 | 1 | 3.353e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.50233524253331 (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.00 us (1.5%)
patch tree reduce : 1.40 us (0.3%)
gen split merge : 1.04 us (0.3%)
split / merge op : 0/0
apply split merge : 872.00 ns (0.2%)
LB compute : 381.90 us (94.9%)
LB move op cnt : 0
LB apply : 4.06 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 8.63 us (85.6%)
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.8039e+05 | 262144 | 1 | 3.359e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.46988380011824 (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.63 us (1.9%)
patch tree reduce : 1.46 us (0.4%)
gen split merge : 932.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 881.00 ns (0.2%)
LB compute : 336.09 us (94.1%)
LB move op cnt : 0
LB apply : 4.29 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.08 us (67.1%)
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.8733e+05 | 262144 | 1 | 3.330e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.61458354816977 (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.08 us (1.7%)
patch tree reduce : 1.68 us (0.5%)
gen split merge : 931.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.07 us (0.3%)
LB compute : 342.00 us (94.5%)
LB move op cnt : 0
LB apply : 3.71 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.24 us (69.8%)
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 | 7.3933e+05 | 262144 | 1 | 3.546e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.599930155339027 (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 : 6.20 us (1.8%)
patch tree reduce : 1.66 us (0.5%)
gen split merge : 841.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.01 us (0.3%)
LB compute : 329.72 us (94.4%)
LB move op cnt : 0
LB apply : 3.89 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.97 us (66.8%)
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.8458e+05 | 262144 | 1 | 3.341e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.55280197041463 (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 : 5.90 us (1.5%)
patch tree reduce : 1.37 us (0.3%)
gen split merge : 1.22 us (0.3%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.2%)
LB compute : 379.73 us (95.0%)
LB move op cnt : 0
LB apply : 4.14 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.49 us (70.3%)
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 | 7.1583e+05 | 262144 | 1 | 3.662e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.10078636467549 (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 : 7.05 us (2.0%)
patch tree reduce : 1.42 us (0.4%)
gen split merge : 1.00 us (0.3%)
split / merge op : 0/0
apply split merge : 1.02 us (0.3%)
LB compute : 336.50 us (94.2%)
LB move op cnt : 0
LB apply : 3.99 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.15 us (74.6%)
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 | 7.9024e+05 | 262144 | 1 | 3.317e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.66876640095993 (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.35 us (1.8%)
patch tree reduce : 1.46 us (0.4%)
gen split merge : 862.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 901.00 ns (0.3%)
LB compute : 323.72 us (94.2%)
LB move op cnt : 0
LB apply : 3.66 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.09 us (73.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 | 7.7853e+05 | 262144 | 1 | 3.367e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.420117549694584 (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.07 us (1.7%)
patch tree reduce : 1.47 us (0.4%)
gen split merge : 851.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.23 us (0.3%)
LB compute : 335.72 us (94.2%)
LB move op cnt : 0
LB apply : 4.63 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.74 us (70.7%)
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 | 7.8910e+05 | 262144 | 1 | 3.322e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.641358038769418 (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 : 5.93 us (1.6%)
patch tree reduce : 1.58 us (0.4%)
gen split merge : 842.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.3%)
LB compute : 355.16 us (94.6%)
LB move op cnt : 0
LB apply : 3.82 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.64 us (70.3%)
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 | 7.7586e+05 | 262144 | 1 | 3.379e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.360397202025922 (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.64 us (1.9%)
patch tree reduce : 1.41 us (0.4%)
gen split merge : 1.07 us (0.3%)
split / merge op : 0/0
apply split merge : 1.06 us (0.3%)
LB compute : 323.72 us (94.0%)
LB move op cnt : 0
LB apply : 4.15 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.30 us (69.9%)
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 | 7.8558e+05 | 262144 | 1 | 3.337e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.563915443141973 (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.39 us (1.7%)
patch tree reduce : 1.52 us (0.4%)
gen split merge : 812.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.08 us (0.3%)
LB compute : 349.54 us (94.5%)
LB move op cnt : 0
LB apply : 3.89 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.23 us (68.0%)
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 | 7.0163e+05 | 262144 | 1 | 3.736e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.792375292479894 (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 : 7.43 us (1.9%)
patch tree reduce : 3.13 us (0.8%)
gen split merge : 1.37 us (0.3%)
split / merge op : 0/0
apply split merge : 2.36 us (0.6%)
LB compute : 368.89 us (93.4%)
LB move op cnt : 0
LB apply : 3.77 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.24 us (68.3%)
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.8180e+05 | 262144 | 1 | 3.353e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.481111078993127 (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.35 us (0.9%)
patch tree reduce : 1.42 us (0.2%)
gen split merge : 842.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 1.01 us (0.1%)
LB compute : 655.55 us (96.9%)
LB move op cnt : 0
LB apply : 4.79 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.80 us (77.0%)
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 | 7.8403e+05 | 262144 | 1 | 3.344e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.526609553475616 (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.24 us (1.8%)
patch tree reduce : 1.36 us (0.4%)
gen split merge : 832.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.18 us (0.3%)
LB compute : 322.73 us (94.1%)
LB move op cnt : 0
LB apply : 4.26 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.08 us (71.6%)
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 | 7.7994e+05 | 262144 | 1 | 3.361e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.438960014089425 (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 : 6.33 us (1.7%)
patch tree reduce : 1.34 us (0.4%)
gen split merge : 1.12 us (0.3%)
split / merge op : 0/0
apply split merge : 1.33 us (0.4%)
LB compute : 350.50 us (94.4%)
LB move op cnt : 0
LB apply : 4.21 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.19 us (73.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 | 7.1200e+05 | 262144 | 1 | 3.682e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.005680590936985 (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 : 5.92 us (1.6%)
patch tree reduce : 1.52 us (0.4%)
gen split merge : 842.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 971.00 ns (0.3%)
LB compute : 343.36 us (94.6%)
LB move op cnt : 0
LB apply : 3.99 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.05 us (67.9%)
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 | 7.9374e+05 | 262144 | 1 | 3.303e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.726906699733536 (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 : 5.90 us (1.5%)
patch tree reduce : 1.29 us (0.3%)
gen split merge : 1.04 us (0.3%)
split / merge op : 0/0
apply split merge : 1.00 us (0.2%)
LB compute : 382.75 us (95.0%)
LB move op cnt : 0
LB apply : 3.81 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.50 us (71.2%)
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 | 7.3872e+05 | 262144 | 1 | 3.549e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.566245186905478 (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 : 5.97 us (1.8%)
patch tree reduce : 1.37 us (0.4%)
gen split merge : 842.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.01 us (0.3%)
LB compute : 316.24 us (94.1%)
LB move op cnt : 0
LB apply : 3.63 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.82 us (71.9%)
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 | 7.4531e+05 | 262144 | 1 | 3.517e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.703705731262984 (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.55 us (1.8%)
patch tree reduce : 1.64 us (0.5%)
gen split merge : 932.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.3%)
LB compute : 334.40 us (94.2%)
LB move op cnt : 0
LB apply : 4.20 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.63 us (71.0%)
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 | 7.4422e+05 | 262144 | 1 | 3.522e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.679621627848784 (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 : 6.37 us (1.6%)
patch tree reduce : 1.41 us (0.4%)
gen split merge : 952.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.02 us (0.3%)
LB compute : 367.91 us (94.9%)
LB move op cnt : 0
LB apply : 3.76 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.20 us (73.3%)
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.9005e+05 | 262144 | 1 | 3.318e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.643992656915557 (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.50 us (1.8%)
patch tree reduce : 1.32 us (0.4%)
gen split merge : 812.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.14 us (0.3%)
LB compute : 340.42 us (94.3%)
LB move op cnt : 0
LB apply : 4.10 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.21 us (73.5%)
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 | 7.8065e+05 | 262144 | 1 | 3.358e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.444920112094493 (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.26 us (1.9%)
patch tree reduce : 1.53 us (0.4%)
gen split merge : 852.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.33 us (0.4%)
LB compute : 354.43 us (94.2%)
LB move op cnt : 0
LB apply : 4.09 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.43 us (68.8%)
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 | 7.4312e+05 | 262144 | 1 | 3.528e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.653232333478348 (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 : 7.06 us (1.9%)
patch tree reduce : 1.54 us (0.4%)
gen split merge : 922.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 892.00 ns (0.2%)
LB compute : 345.47 us (94.4%)
LB move op cnt : 0
LB apply : 4.03 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.33 us (71.0%)
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 | 7.4037e+05 | 262144 | 1 | 3.541e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.594338899171044 (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.28 us (1.5%)
patch tree reduce : 1.53 us (0.4%)
gen split merge : 1.09 us (0.3%)
split / merge op : 0/0
apply split merge : 922.00 ns (0.2%)
LB compute : 400.54 us (95.0%)
LB move op cnt : 0
LB apply : 4.48 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.90 us (73.5%)
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 | 7.9576e+05 | 262144 | 1 | 3.294e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.760107812294972 (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.13 us (1.8%)
patch tree reduce : 1.31 us (0.4%)
gen split merge : 1.11 us (0.3%)
split / merge op : 0/0
apply split merge : 1.36 us (0.4%)
LB compute : 315.08 us (93.8%)
LB move op cnt : 0
LB apply : 4.36 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.52 us (64.1%)
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 | 7.8989e+05 | 262144 | 1 | 3.319e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.635452843960437 (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 : 6.71 us (1.7%)
patch tree reduce : 1.45 us (0.4%)
gen split merge : 1.19 us (0.3%)
split / merge op : 0/0
apply split merge : 1.25 us (0.3%)
LB compute : 373.25 us (94.6%)
LB move op cnt : 0
LB apply : 4.09 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.82 us (69.4%)
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 | 7.2840e+05 | 262144 | 1 | 3.599e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.339672986783816 (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 : 5.97 us (1.6%)
patch tree reduce : 1.74 us (0.5%)
gen split merge : 882.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.04 us (0.3%)
LB compute : 345.89 us (94.4%)
LB move op cnt : 0
LB apply : 4.02 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.98 us (70.9%)
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 | 7.0787e+05 | 262144 | 1 | 3.703e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.906482001713538 (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.32 us (1.7%)
patch tree reduce : 1.54 us (0.4%)
gen split merge : 921.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.03 us (0.3%)
LB compute : 341.94 us (94.1%)
LB move op cnt : 0
LB apply : 4.43 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.27 us (75.9%)
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 | 7.2270e+05 | 262144 | 1 | 3.627e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.21795231334797 (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.27 us (1.8%)
patch tree reduce : 1.67 us (0.5%)
gen split merge : 962.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.34 us (0.4%)
LB compute : 321.06 us (94.0%)
LB move op cnt : 0
LB apply : 4.12 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.13 us (69.8%)
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 | 7.5177e+05 | 262144 | 1 | 3.487e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.829325663804992 (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 : 6.29 us (1.8%)
patch tree reduce : 1.74 us (0.5%)
gen split merge : 862.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.24 us (0.3%)
LB compute : 338.28 us (94.4%)
LB move op cnt : 0
LB apply : 3.67 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.30 us (71.4%)
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 | 7.1982e+05 | 262144 | 1 | 3.642e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.155819256247295 (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 : 6.57 us (2.0%)
patch tree reduce : 1.35 us (0.4%)
gen split merge : 852.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.01 us (0.3%)
LB compute : 307.49 us (93.8%)
LB move op cnt : 0
LB apply : 3.93 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.45 us (70.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 | 7.9189e+05 | 262144 | 1 | 3.310e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.672452986779216 (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.44 us (1.9%)
patch tree reduce : 1.33 us (0.4%)
gen split merge : 1.20 us (0.4%)
split / merge op : 0/0
apply split merge : 1.03 us (0.3%)
LB compute : 317.03 us (93.9%)
LB move op cnt : 0
LB apply : 4.27 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.48 us (70.0%)
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 | 7.9514e+05 | 262144 | 1 | 3.297e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.74011103743455 (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.37 us (1.6%)
patch tree reduce : 1.83 us (0.4%)
gen split merge : 922.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.10 us (0.3%)
LB compute : 388.60 us (95.0%)
LB move op cnt : 0
LB apply : 3.54 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.26 us (74.0%)
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.8690e+05 | 262144 | 1 | 3.331e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.56589575774246 (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 : 29.32 us (7.4%)
patch tree reduce : 1.47 us (0.4%)
gen split merge : 931.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.14 us (0.3%)
LB compute : 352.25 us (89.1%)
LB move op cnt : 0
LB apply : 4.18 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.31 us (70.0%)
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.5779e+05 | 262144 | 1 | 3.459e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.952313303751644 (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.44 us (1.7%)
patch tree reduce : 1.34 us (0.4%)
gen split merge : 811.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 991.00 ns (0.3%)
LB compute : 350.17 us (94.7%)
LB move op cnt : 0
LB apply : 4.00 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.40 us (68.5%)
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.6342e+05 | 262144 | 1 | 3.434e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.070192111747833 (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.52 us (1.9%)
patch tree reduce : 1.92 us (0.5%)
gen split merge : 1.10 us (0.3%)
split / merge op : 0/0
apply split merge : 872.00 ns (0.2%)
LB compute : 370.39 us (94.2%)
LB move op cnt : 0
LB apply : 4.63 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.69 us (72.7%)
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.8698e+05 | 262144 | 1 | 3.331e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.56552830305768 (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 : 5.79 us (1.5%)
patch tree reduce : 1.53 us (0.4%)
gen split merge : 821.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.01 us (0.3%)
LB compute : 372.79 us (94.9%)
LB move op cnt : 0
LB apply : 4.00 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.43 us (73.4%)
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 | 7.9793e+05 | 262144 | 1 | 3.285e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.79563203773122 (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 : 6.02 us (1.6%)
patch tree reduce : 1.49 us (0.4%)
gen split merge : 831.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.11 us (0.3%)
LB compute : 363.61 us (94.7%)
LB move op cnt : 0
LB apply : 4.18 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.73 us (71.4%)
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 | 7.8231e+05 | 262144 | 1 | 3.351e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.466184107052708 (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 : 5.95 us (1.4%)
patch tree reduce : 1.42 us (0.3%)
gen split merge : 821.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 872.00 ns (0.2%)
LB compute : 402.88 us (95.2%)
LB move op cnt : 0
LB apply : 4.23 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.96 us (73.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 | 7.7909e+05 | 262144 | 1 | 3.365e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.398010103799056 (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 : 6.24 us (1.7%)
patch tree reduce : 1.69 us (0.5%)
gen split merge : 942.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.09 us (0.3%)
LB compute : 340.23 us (94.5%)
LB move op cnt : 0
LB apply : 3.91 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.93 us (71.7%)
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 | 7.0184e+05 | 262144 | 1 | 3.735e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.771787212953711 (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.29 us (1.8%)
patch tree reduce : 1.58 us (0.4%)
gen split merge : 821.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.10 us (0.3%)
LB compute : 333.08 us (94.3%)
LB move op cnt : 0
LB apply : 3.58 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.32 us (69.0%)
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 | 7.1515e+05 | 262144 | 1 | 3.666e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.051488454479966 (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 : 6.43 us (1.9%)
patch tree reduce : 1.38 us (0.4%)
gen split merge : 901.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.21 us (0.4%)
LB compute : 311.11 us (93.8%)
LB move op cnt : 0
LB apply : 3.76 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.27 us (69.6%)
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 | 6.6642e+05 | 262144 | 1 | 3.934e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.025653000132955 (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.35 us (1.9%)
patch tree reduce : 1.44 us (0.4%)
gen split merge : 1.17 us (0.3%)
split / merge op : 0/0
apply split merge : 1.01 us (0.3%)
LB compute : 315.22 us (93.9%)
LB move op cnt : 0
LB apply : 4.15 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.33 us (66.6%)
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 | 6.6856e+05 | 262144 | 1 | 3.921e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.070630472882733 (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.15 us (1.7%)
patch tree reduce : 1.33 us (0.4%)
gen split merge : 972.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.00 us (0.3%)
LB compute : 332.32 us (94.3%)
LB move op cnt : 0
LB apply : 3.84 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.22 us (63.2%)
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 | 6.7914e+05 | 262144 | 1 | 3.860e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.293079707869527 (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.30 us (1.7%)
patch tree reduce : 1.41 us (0.4%)
gen split merge : 1.13 us (0.3%)
split / merge op : 0/0
apply split merge : 1.02 us (0.3%)
LB compute : 350.24 us (94.4%)
LB move op cnt : 0
LB apply : 4.28 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.74 us (70.9%)
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 | 7.5280e+05 | 262144 | 1 | 3.482e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.843358937355415 (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 : 6.31 us (1.8%)
patch tree reduce : 1.40 us (0.4%)
gen split merge : 872.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.05 us (0.3%)
LB compute : 327.68 us (94.2%)
LB move op cnt : 0
LB apply : 4.02 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.37 us (68.8%)
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.4168e+05 | 262144 | 1 | 3.534e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.609249057571716 (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.59 us (2.0%)
patch tree reduce : 1.35 us (0.4%)
gen split merge : 842.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.10 us (0.3%)
LB compute : 316.50 us (94.0%)
LB move op cnt : 0
LB apply : 4.08 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.59 us (71.1%)
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 | 7.8729e+05 | 262144 | 1 | 3.330e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.56942455588406 (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 : 5.87 us (1.4%)
patch tree reduce : 1.35 us (0.3%)
gen split merge : 1.16 us (0.3%)
split / merge op : 0/0
apply split merge : 1.09 us (0.3%)
LB compute : 386.42 us (95.2%)
LB move op cnt : 0
LB apply : 3.86 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.98 us (71.2%)
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 | 7.5978e+05 | 262144 | 1 | 3.450e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.990595380115009 (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 : 6.35 us (1.6%)
patch tree reduce : 1.73 us (0.4%)
gen split merge : 842.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.2%)
LB compute : 377.65 us (94.8%)
LB move op cnt : 0
LB apply : 3.97 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.53 us (76.2%)
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 | 7.9073e+05 | 262144 | 1 | 3.315e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.642221669437326 (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 : 6.42 us (1.6%)
patch tree reduce : 1.32 us (0.3%)
gen split merge : 942.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.11 us (0.3%)
LB compute : 387.45 us (95.0%)
LB move op cnt : 0
LB apply : 4.32 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.07 us (73.2%)
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 | 7.2235e+05 | 262144 | 1 | 3.629e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.203373169772815 (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 : 6.29 us (1.5%)
patch tree reduce : 1.58 us (0.4%)
gen split merge : 942.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 932.00 ns (0.2%)
LB compute : 409.47 us (95.2%)
LB move op cnt : 0
LB apply : 4.26 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.04 us (69.0%)
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 | 7.8886e+05 | 262144 | 1 | 3.323e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.60342497927702 (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 : 6.01 us (1.6%)
patch tree reduce : 1.74 us (0.5%)
gen split merge : 962.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.29 us (0.3%)
LB compute : 351.24 us (94.4%)
LB move op cnt : 0
LB apply : 3.98 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.05 us (70.2%)
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 | 7.9304e+05 | 262144 | 1 | 3.306e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.69192401018463 (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 : 6.31 us (1.7%)
patch tree reduce : 1.35 us (0.4%)
gen split merge : 851.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.10 us (0.3%)
LB compute : 351.16 us (94.6%)
LB move op cnt : 0
LB apply : 4.13 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.83 us (68.0%)
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 | 7.9330e+05 | 262144 | 1 | 3.304e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.69790897253205 (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.16 us (1.9%)
patch tree reduce : 1.53 us (0.5%)
gen split merge : 932.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.00 us (0.3%)
LB compute : 312.22 us (93.9%)
LB move op cnt : 0
LB apply : 4.23 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.43 us (69.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 | 7.5106e+05 | 262144 | 1 | 3.490e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.80913211826583 (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.97 us (1.9%)
patch tree reduce : 1.43 us (0.4%)
gen split merge : 822.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.3%)
LB compute : 344.23 us (94.2%)
LB move op cnt : 0
LB apply : 4.36 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.44 us (71.3%)
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 | 7.9143e+05 | 262144 | 1 | 3.312e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.65876961928645 (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 : 5.78 us (1.6%)
patch tree reduce : 1.33 us (0.4%)
gen split merge : 841.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.08 us (0.3%)
LB compute : 338.60 us (94.4%)
LB move op cnt : 0
LB apply : 4.02 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.52 us (70.5%)
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 | 7.0004e+05 | 262144 | 1 | 3.745e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.8391121598612197 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 579.147990777 (s) [Godunov][rank=0]
Info: dump to _to_trash/ramses_kh/periodic_0020.vtk [VTK Dump][rank=0]
- took 30.86 ms, bandwidth = 1.33 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 : 6.22 us (1.5%)
patch tree reduce : 1.38 us (0.3%)
gen split merge : 931.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.14 us (0.3%)
LB compute : 405.70 us (95.3%)
LB move op cnt : 0
LB apply : 4.03 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.29 us (69.4%)
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 | 6.6146e+05 | 262144 | 1 | 3.963e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.923204017884139 (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 : 6.28 us (1.6%)
patch tree reduce : 1.48 us (0.4%)
gen split merge : 982.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.08 us (0.3%)
LB compute : 383.92 us (95.0%)
LB move op cnt : 0
LB apply : 3.86 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.80 us (69.4%)
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 | 7.8062e+05 | 262144 | 1 | 3.358e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.431506546777474 (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 : 5.98 us (1.5%)
patch tree reduce : 1.37 us (0.3%)
gen split merge : 1.21 us (0.3%)
split / merge op : 0/0
apply split merge : 1.00 us (0.2%)
LB compute : 384.07 us (95.0%)
LB move op cnt : 0
LB apply : 4.01 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.19 us (75.6%)
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 | 7.4774e+05 | 262144 | 1 | 3.506e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.739491833344488 (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 : 5.72 us (1.6%)
patch tree reduce : 1.90 us (0.5%)
gen split merge : 942.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.3%)
LB compute : 339.98 us (94.5%)
LB move op cnt : 0
LB apply : 3.94 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.38 us (73.9%)
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 | 7.2902e+05 | 262144 | 1 | 3.596e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.34582491563613 (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 : 7.06 us (2.1%)
patch tree reduce : 1.58 us (0.5%)
gen split merge : 1.11 us (0.3%)
split / merge op : 0/0
apply split merge : 1.01 us (0.3%)
LB compute : 320.71 us (93.8%)
LB move op cnt : 0
LB apply : 4.19 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.98 us (73.1%)
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 | 7.4488e+05 | 262144 | 1 | 3.519e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.677670176240328 (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.20 us (1.5%)
patch tree reduce : 1.38 us (0.3%)
gen split merge : 982.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.36 us (0.3%)
LB compute : 400.27 us (94.9%)
LB move op cnt : 0
LB apply : 4.24 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.16 us (74.8%)
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 | 7.3863e+05 | 262144 | 1 | 3.549e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.543743407611943 (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 : 6.99 us (1.9%)
patch tree reduce : 2.00 us (0.5%)
gen split merge : 1.02 us (0.3%)
split / merge op : 0/0
apply split merge : 912.00 ns (0.2%)
LB compute : 350.80 us (94.2%)
LB move op cnt : 0
LB apply : 4.24 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.07 us (71.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 | 7.8321e+05 | 262144 | 1 | 3.347e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.47921903565739 (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.24 us (1.7%)
patch tree reduce : 1.42 us (0.4%)
gen split merge : 921.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 931.00 ns (0.3%)
LB compute : 337.50 us (94.3%)
LB move op cnt : 0
LB apply : 4.30 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.60 us (69.3%)
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 | 7.7127e+05 | 262144 | 1 | 3.399e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.225725160536452 (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 : 5.64 us (1.7%)
patch tree reduce : 1.62 us (0.5%)
gen split merge : 481.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 822.00 ns (0.2%)
LB compute : 316.78 us (94.5%)
LB move op cnt : 0
LB apply : 3.93 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.76 us (73.2%)
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 | 7.5931e+05 | 262144 | 1 | 3.452e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.971654265995053 (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.09 us (1.6%)
patch tree reduce : 1.41 us (0.4%)
gen split merge : 832.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 862.00 ns (0.2%)
LB compute : 372.05 us (95.1%)
LB move op cnt : 0
LB apply : 3.88 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.27 us (77.2%)
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 | 7.9307e+05 | 262144 | 1 | 3.305e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.679272257323497 (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 : 5.58 us (1.6%)
patch tree reduce : 1.56 us (0.5%)
gen split merge : 471.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 811.00 ns (0.2%)
LB compute : 321.20 us (94.6%)
LB move op cnt : 0
LB apply : 3.89 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.63 us (73.1%)
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 | 7.4256e+05 | 262144 | 1 | 3.530e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.61472146523037 (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.17 us (1.6%)
patch tree reduce : 1.48 us (0.4%)
gen split merge : 1.02 us (0.3%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.2%)
LB compute : 364.73 us (94.6%)
LB move op cnt : 0
LB apply : 3.97 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.44 us (69.5%)
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 | 7.3709e+05 | 262144 | 1 | 3.556e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.497418773280833 (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 : 6.11 us (1.4%)
patch tree reduce : 1.41 us (0.3%)
gen split merge : 1.27 us (0.3%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.2%)
LB compute : 413.25 us (95.2%)
LB move op cnt : 0
LB apply : 4.23 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.06 us (74.8%)
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 | 7.1424e+05 | 262144 | 1 | 3.670e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.014785860783293 (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 : 6.37 us (1.7%)
patch tree reduce : 1.42 us (0.4%)
gen split merge : 832.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.24 us (0.3%)
LB compute : 345.75 us (94.6%)
LB move op cnt : 0
LB apply : 3.62 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.60 us (71.7%)
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 | 7.9037e+05 | 262144 | 1 | 3.317e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.612794526315533 (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 : 5.90 us (1.8%)
patch tree reduce : 1.73 us (0.5%)
gen split merge : 1.04 us (0.3%)
split / merge op : 0/0
apply split merge : 1.10 us (0.3%)
LB compute : 315.28 us (93.9%)
LB move op cnt : 0
LB apply : 4.59 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.43 us (71.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 | 7.3731e+05 | 262144 | 1 | 3.555e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.49529667621159 (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.49 us (1.7%)
patch tree reduce : 1.41 us (0.4%)
gen split merge : 1.25 us (0.3%)
split / merge op : 0/0
apply split merge : 1.00 us (0.3%)
LB compute : 353.82 us (94.5%)
LB move op cnt : 0
LB apply : 3.83 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.83 us (70.7%)
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 | 7.1975e+05 | 262144 | 1 | 3.642e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.124092041413572 (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 : 5.84 us (1.6%)
patch tree reduce : 1.33 us (0.4%)
gen split merge : 911.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 991.00 ns (0.3%)
LB compute : 353.05 us (94.3%)
LB move op cnt : 0
LB apply : 4.60 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.31 us (71.8%)
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 | 7.4990e+05 | 262144 | 1 | 3.496e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.755356214085289 (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.01 us (1.5%)
patch tree reduce : 1.63 us (0.4%)
gen split merge : 842.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 991.00 ns (0.3%)
LB compute : 368.66 us (94.8%)
LB move op cnt : 0
LB apply : 4.36 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.64 us (71.9%)
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 | 7.4677e+05 | 262144 | 1 | 3.510e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.687471797522678 (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.21 us (1.8%)
patch tree reduce : 1.56 us (0.4%)
gen split merge : 831.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.3%)
LB compute : 330.58 us (94.1%)
LB move op cnt : 0
LB apply : 4.14 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.58 us (71.0%)
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.9432e+05 | 262144 | 1 | 3.776e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.583502726590188 (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 : 5.94 us (1.5%)
patch tree reduce : 1.45 us (0.4%)
gen split merge : 861.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 951.00 ns (0.2%)
LB compute : 369.42 us (94.9%)
LB move op cnt : 0
LB apply : 3.89 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.76 us (74.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.3940e+05 | 262144 | 1 | 3.545e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.52821677523377 (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 : 6.01 us (1.6%)
patch tree reduce : 1.72 us (0.5%)
gen split merge : 962.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 842.00 ns (0.2%)
LB compute : 345.09 us (94.5%)
LB move op cnt : 0
LB apply : 3.99 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.93 us (74.5%)
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.0911e+05 | 262144 | 1 | 3.697e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.89000667194059 (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.57 us (1.7%)
patch tree reduce : 1.47 us (0.4%)
gen split merge : 922.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 862.00 ns (0.2%)
LB compute : 375.15 us (94.9%)
LB move op cnt : 0
LB apply : 4.02 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.94 us (74.7%)
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.7470e+05 | 262144 | 1 | 3.384e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.265052487738707 (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 : 6.06 us (1.7%)
patch tree reduce : 1.51 us (0.4%)
gen split merge : 832.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 892.00 ns (0.3%)
LB compute : 326.78 us (94.2%)
LB move op cnt : 0
LB apply : 4.22 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.90 us (69.5%)
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 | 7.7342e+05 | 262144 | 1 | 3.389e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.23604985240915 (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.20 us (1.6%)
patch tree reduce : 1.49 us (0.4%)
gen split merge : 941.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.06 us (0.3%)
LB compute : 357.49 us (94.4%)
LB move op cnt : 0
LB apply : 4.59 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.13 us (74.1%)
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 | 7.9405e+05 | 262144 | 1 | 3.301e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.6668768727423 (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 : 6.67 us (1.8%)
patch tree reduce : 1.82 us (0.5%)
gen split merge : 922.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.12 us (0.3%)
LB compute : 340.83 us (94.2%)
LB move op cnt : 0
LB apply : 4.18 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.60 us (73.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 | 6.8313e+05 | 262144 | 1 | 3.837e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.336780332523757 (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.20 us (1.7%)
patch tree reduce : 1.41 us (0.4%)
gen split merge : 931.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 882.00 ns (0.2%)
LB compute : 341.66 us (93.3%)
LB move op cnt : 0
LB apply : 8.82 us (2.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.77 us (71.5%)
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.5036e+05 | 262144 | 1 | 3.494e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.745578801975268 (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 : 5.69 us (1.5%)
patch tree reduce : 1.74 us (0.4%)
gen split merge : 901.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 911.00 ns (0.2%)
LB compute : 348.32 us (89.5%)
LB move op cnt : 0
LB apply : 4.00 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.66 us (69.8%)
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 | 7.0644e+05 | 262144 | 1 | 3.711e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.822081924664063 (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.63 us (1.9%)
patch tree reduce : 1.41 us (0.4%)
gen split merge : 901.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.37 us (0.4%)
LB compute : 336.20 us (94.4%)
LB move op cnt : 0
LB apply : 3.69 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.30 us (69.9%)
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 | 7.7218e+05 | 262144 | 1 | 3.395e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.199261697747442 (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.66 us (1.8%)
patch tree reduce : 1.43 us (0.4%)
gen split merge : 1.01 us (0.3%)
split / merge op : 0/0
apply split merge : 881.00 ns (0.2%)
LB compute : 357.34 us (94.6%)
LB move op cnt : 0
LB apply : 4.15 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.91 us (72.3%)
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.9226e+05 | 262144 | 1 | 3.309e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.61820536215754 (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 : 6.19 us (1.6%)
patch tree reduce : 1.34 us (0.4%)
gen split merge : 1.14 us (0.3%)
split / merge op : 0/0
apply split merge : 1.02 us (0.3%)
LB compute : 358.32 us (94.6%)
LB move op cnt : 0
LB apply : 3.77 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.71 us (71.9%)
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.9345e+05 | 262144 | 1 | 3.304e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.641132830075055 (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.19 us (1.9%)
patch tree reduce : 1.35 us (0.4%)
gen split merge : 1.28 us (0.4%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.3%)
LB compute : 309.69 us (94.0%)
LB move op cnt : 0
LB apply : 3.72 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.38 us (69.5%)
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 | 5.9217e+05 | 262144 | 1 | 4.427e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12.418069469015183 (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.77 us (2.0%)
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.06 us (0.3%)
LB compute : 310.23 us (93.5%)
LB move op cnt : 0
LB apply : 4.02 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.55 us (70.4%)
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 | 7.0923e+05 | 262144 | 1 | 3.696e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.871019558468381 (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 : 5.79 us (1.8%)
patch tree reduce : 1.48 us (0.5%)
gen split merge : 912.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.08 us (0.3%)
LB compute : 297.72 us (93.8%)
LB move op cnt : 0
LB apply : 4.29 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.52 us (71.2%)
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 | 7.7800e+05 | 262144 | 1 | 3.369e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.3108773235486 (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.23 us (1.9%)
patch tree reduce : 1.71 us (0.5%)
gen split merge : 912.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.3%)
LB compute : 307.88 us (93.9%)
LB move op cnt : 0
LB apply : 3.97 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.56 us (68.5%)
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 | 7.2084e+05 | 262144 | 1 | 3.637e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.110746265116958 (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.45 us (1.9%)
patch tree reduce : 1.48 us (0.4%)
gen split merge : 992.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 892.00 ns (0.3%)
LB compute : 314.63 us (94.2%)
LB move op cnt : 0
LB apply : 3.77 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.43 us (70.0%)
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 | 7.3380e+05 | 262144 | 1 | 3.572e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.380451193496103 (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 : 5.82 us (1.5%)
patch tree reduce : 1.32 us (0.4%)
gen split merge : 901.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.36 us (0.4%)
LB compute : 356.02 us (94.7%)
LB move op cnt : 0
LB apply : 4.28 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.94 us (72.5%)
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 | 7.8961e+05 | 262144 | 1 | 3.320e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.548345448166607 (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 : 6.35 us (1.9%)
patch tree reduce : 1.68 us (0.5%)
gen split merge : 801.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.05 us (0.3%)
LB compute : 319.37 us (94.0%)
LB move op cnt : 0
LB apply : 3.70 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.54 us (68.0%)
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.2928e+05 | 262144 | 1 | 3.595e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.282140450434508 (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.01 us (2.0%)
patch tree reduce : 1.56 us (0.5%)
gen split merge : 1.05 us (0.3%)
split / merge op : 0/0
apply split merge : 1.53 us (0.4%)
LB compute : 323.53 us (93.9%)
LB move op cnt : 0
LB apply : 3.81 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.88 us (73.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 | 7.9263e+05 | 262144 | 1 | 3.307e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.607602606947932 (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.55 us (2.0%)
patch tree reduce : 1.68 us (0.5%)
gen split merge : 992.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.16 us (0.3%)
LB compute : 312.76 us (93.6%)
LB move op cnt : 0
LB apply : 4.15 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.42 us (74.9%)
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 | 7.9682e+05 | 262144 | 1 | 3.290e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.69359291489957 (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 : 5.65 us (1.6%)
patch tree reduce : 1.43 us (0.4%)
gen split merge : 931.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 882.00 ns (0.2%)
LB compute : 333.89 us (94.5%)
LB move op cnt : 0
LB apply : 3.94 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.84 us (70.0%)
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 | 7.8305e+05 | 262144 | 1 | 3.348e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.403317347659126 (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 : 6.21 us (1.5%)
patch tree reduce : 1.62 us (0.4%)
gen split merge : 932.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.2%)
LB compute : 391.99 us (95.1%)
LB move op cnt : 0
LB apply : 4.26 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.12 us (73.5%)
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 | 7.3800e+05 | 262144 | 1 | 3.552e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.45797158781752 (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 : 6.08 us (1.6%)
patch tree reduce : 1.52 us (0.4%)
gen split merge : 811.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.25 us (0.3%)
LB compute : 350.50 us (94.6%)
LB move op cnt : 0
LB apply : 3.83 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.50 us (67.9%)
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 | 7.4590e+05 | 262144 | 1 | 3.514e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.621861509627465 (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 : 6.43 us (1.5%)
patch tree reduce : 1.47 us (0.3%)
gen split merge : 1.06 us (0.3%)
split / merge op : 0/0
apply split merge : 1.42 us (0.3%)
LB compute : 401.12 us (95.0%)
LB move op cnt : 0
LB apply : 4.34 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.65 us (77.0%)
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.7245e+05 | 262144 | 1 | 3.394e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.17625026503895 (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 : 5.96 us (1.4%)
patch tree reduce : 1.31 us (0.3%)
gen split merge : 1.08 us (0.3%)
split / merge op : 0/0
apply split merge : 1.28 us (0.3%)
LB compute : 395.02 us (94.9%)
LB move op cnt : 0
LB apply : 4.96 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.76 us (71.6%)
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 | 7.8061e+05 | 262144 | 1 | 3.358e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.345398801120567 (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 : 5.96 us (1.5%)
patch tree reduce : 1.34 us (0.3%)
gen split merge : 1.10 us (0.3%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.2%)
LB compute : 386.97 us (95.0%)
LB move op cnt : 0
LB apply : 4.45 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.68 us (74.4%)
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 | 7.8240e+05 | 262144 | 1 | 3.351e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.381355757073372 (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.44 us (1.7%)
patch tree reduce : 1.71 us (0.5%)
gen split merge : 912.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 892.00 ns (0.2%)
LB compute : 355.31 us (94.4%)
LB move op cnt : 0
LB apply : 4.30 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.56 us (71.4%)
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 | 7.3566e+05 | 262144 | 1 | 3.563e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.401262982260064 (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.17 us (1.5%)
patch tree reduce : 1.41 us (0.3%)
gen split merge : 811.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 882.00 ns (0.2%)
LB compute : 386.42 us (95.1%)
LB move op cnt : 0
LB apply : 4.00 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.35 us (75.9%)
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 | 7.8898e+05 | 262144 | 1 | 3.323e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.51612009080453 (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.38 us (1.6%)
patch tree reduce : 1.39 us (0.4%)
gen split merge : 962.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.22 us (0.3%)
LB compute : 368.17 us (94.6%)
LB move op cnt : 0
LB apply : 4.24 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.12 us (71.0%)
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 | 7.8442e+05 | 262144 | 1 | 3.342e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.419159705787255 (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.01 us (1.5%)
patch tree reduce : 1.36 us (0.3%)
gen split merge : 922.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.01 us (0.3%)
LB compute : 379.43 us (94.9%)
LB move op cnt : 0
LB apply : 4.48 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.85 us (72.8%)
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 | 7.2328e+05 | 262144 | 1 | 3.624e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.138175727112198 (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 : 6.12 us (1.5%)
patch tree reduce : 1.35 us (0.3%)
gen split merge : 821.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.00 us (0.2%)
LB compute : 396.92 us (95.3%)
LB move op cnt : 0
LB apply : 4.04 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.75 us (73.1%)
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 | 7.8039e+05 | 262144 | 1 | 3.359e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.33220132455633 (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.66 us (1.6%)
patch tree reduce : 1.67 us (0.4%)
gen split merge : 812.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 871.00 ns (0.2%)
LB compute : 384.16 us (94.8%)
LB move op cnt : 0
LB apply : 4.18 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.87 us (72.0%)
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 | 7.7875e+05 | 262144 | 1 | 3.366e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.296662510436885 (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.20 us (1.7%)
patch tree reduce : 1.26 us (0.3%)
gen split merge : 1.19 us (0.3%)
split / merge op : 0/0
apply split merge : 1.05 us (0.3%)
LB compute : 353.88 us (94.3%)
LB move op cnt : 0
LB apply : 4.56 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.94 us (73.8%)
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 | 7.9728e+05 | 262144 | 1 | 3.288e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.683223436907408 (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 : 6.64 us (1.3%)
patch tree reduce : 1.64 us (0.3%)
gen split merge : 871.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 902.00 ns (0.2%)
LB compute : 482.84 us (95.8%)
LB move op cnt : 0
LB apply : 3.83 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.35 us (70.1%)
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 | 7.9149e+05 | 262144 | 1 | 3.312e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.560738192188893 (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 : 5.89 us (1.5%)
patch tree reduce : 1.44 us (0.4%)
gen split merge : 831.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 852.00 ns (0.2%)
LB compute : 369.18 us (95.1%)
LB move op cnt : 0
LB apply : 3.90 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.07 us (70.7%)
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 | 7.7988e+05 | 262144 | 1 | 3.361e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.316875670692337 (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.51 us (1.7%)
patch tree reduce : 1.60 us (0.4%)
gen split merge : 961.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 981.00 ns (0.3%)
LB compute : 356.38 us (94.5%)
LB move op cnt : 0
LB apply : 4.03 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.46 us (68.7%)
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 | 7.8463e+05 | 262144 | 1 | 3.341e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.415035383241477 (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.35 us (1.7%)
patch tree reduce : 1.72 us (0.5%)
gen split merge : 1.11 us (0.3%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.3%)
LB compute : 356.25 us (94.1%)
LB move op cnt : 0
LB apply : 4.69 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.97 us (69.5%)
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 | 7.8545e+05 | 262144 | 1 | 3.338e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.431085966200392 (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 : 6.38 us (1.7%)
patch tree reduce : 1.47 us (0.4%)
gen split merge : 942.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.03 us (0.3%)
LB compute : 346.02 us (94.3%)
LB move op cnt : 0
LB apply : 4.08 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.63 us (73.1%)
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 | 7.9178e+05 | 262144 | 1 | 3.311e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.562671232437403 (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 : 6.23 us (1.6%)
patch tree reduce : 1.33 us (0.3%)
gen split merge : 901.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 971.00 ns (0.2%)
LB compute : 373.50 us (94.9%)
LB move op cnt : 0
LB apply : 3.92 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.00 us (74.2%)
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 | 7.8879e+05 | 262144 | 1 | 3.323e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.4989963490852 (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 : 5.81 us (1.6%)
patch tree reduce : 1.47 us (0.4%)
gen split merge : 912.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.3%)
LB compute : 343.79 us (94.6%)
LB move op cnt : 0
LB apply : 3.99 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.88 us (68.6%)
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 | 7.9857e+05 | 262144 | 1 | 3.283e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.702621247864364 (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.24 us (1.8%)
patch tree reduce : 1.46 us (0.4%)
gen split merge : 1.02 us (0.3%)
split / merge op : 0/0
apply split merge : 1.11 us (0.3%)
LB compute : 317.81 us (94.2%)
LB move op cnt : 0
LB apply : 3.69 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.37 us (69.1%)
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 | 7.8396e+05 | 262144 | 1 | 3.344e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.396099237748114 (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 : 6.07 us (1.6%)
patch tree reduce : 2.28 us (0.6%)
gen split merge : 1.10 us (0.3%)
split / merge op : 0/0
apply split merge : 1.25 us (0.3%)
LB compute : 356.25 us (94.3%)
LB move op cnt : 0
LB apply : 4.16 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.44 us (67.0%)
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 | 7.6029e+05 | 262144 | 1 | 3.448e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.900219030355665 (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 : 6.51 us (1.9%)
patch tree reduce : 1.74 us (0.5%)
gen split merge : 1.26 us (0.4%)
split / merge op : 0/0
apply split merge : 862.00 ns (0.3%)
LB compute : 321.91 us (93.8%)
LB move op cnt : 0
LB apply : 4.20 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.21 us (66.6%)
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.8702e+05 | 262144 | 1 | 3.331e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.458425209186387 (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 : 5.83 us (1.7%)
patch tree reduce : 1.33 us (0.4%)
gen split merge : 972.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.31 us (0.4%)
LB compute : 320.46 us (94.1%)
LB move op cnt : 0
LB apply : 4.07 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.65 us (74.7%)
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.7987e+05 | 262144 | 1 | 3.361e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.3081902531301 (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.76 us (1.8%)
patch tree reduce : 1.41 us (0.4%)
gen split merge : 1.10 us (0.3%)
split / merge op : 0/0
apply split merge : 1.31 us (0.4%)
LB compute : 352.94 us (94.3%)
LB move op cnt : 0
LB apply : 3.87 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.04 us (69.3%)
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 | 7.8288e+05 | 262144 | 1 | 3.348e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.3703846852689 (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.52 us (2.0%)
patch tree reduce : 1.33 us (0.4%)
gen split merge : 932.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.02 us (0.3%)
LB compute : 313.45 us (94.1%)
LB move op cnt : 0
LB apply : 4.03 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.74 us (71.8%)
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.9108e+05 | 262144 | 1 | 3.314e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.5409844854415 (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.16 us (1.7%)
patch tree reduce : 1.65 us (0.5%)
gen split merge : 812.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.3%)
LB compute : 344.41 us (94.4%)
LB move op cnt : 0
LB apply : 4.24 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.96 us (70.7%)
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 | 7.8645e+05 | 262144 | 1 | 3.333e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.44353980613084 (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 : 6.23 us (1.7%)
patch tree reduce : 1.61 us (0.4%)
gen split merge : 912.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.18 us (0.3%)
LB compute : 344.64 us (94.6%)
LB move op cnt : 0
LB apply : 3.77 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.01 us (72.1%)
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.8621e+05 | 262144 | 1 | 3.334e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.437837484935006 (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.11 us (1.7%)
patch tree reduce : 1.47 us (0.4%)
gen split merge : 842.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.18 us (0.3%)
LB compute : 331.40 us (94.3%)
LB move op cnt : 0
LB apply : 3.96 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.59 us (71.0%)
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 | 7.7780e+05 | 262144 | 1 | 3.370e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.26144624672733 (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.06 us (1.6%)
patch tree reduce : 1.40 us (0.4%)
gen split merge : 822.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.29 us (0.3%)
LB compute : 353.36 us (94.7%)
LB move op cnt : 0
LB apply : 4.10 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.96 us (69.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 | 7.5734e+05 | 262144 | 1 | 3.461e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.833182599632265 (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 : 6.60 us (1.9%)
patch tree reduce : 1.78 us (0.5%)
gen split merge : 922.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.01 us (0.3%)
LB compute : 331.49 us (94.2%)
LB move op cnt : 0
LB apply : 3.68 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.26 us (69.5%)
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 | 7.7934e+05 | 262144 | 1 | 3.364e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.292624885746232 (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.11 us (1.6%)
patch tree reduce : 1.62 us (0.4%)
gen split merge : 941.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.02 us (0.3%)
LB compute : 369.98 us (94.8%)
LB move op cnt : 0
LB apply : 3.97 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.64 us (72.9%)
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.8823e+05 | 262144 | 1 | 3.326e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.477864934231 (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.47 us (1.6%)
patch tree reduce : 1.43 us (0.4%)
gen split merge : 842.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.25 us (0.3%)
LB compute : 381.28 us (94.9%)
LB move op cnt : 0
LB apply : 3.80 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.26 us (74.9%)
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 | 7.8313e+05 | 262144 | 1 | 3.347e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.37081698029506 (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 : 6.20 us (1.7%)
patch tree reduce : 1.44 us (0.4%)
gen split merge : 941.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 981.00 ns (0.3%)
LB compute : 353.97 us (94.6%)
LB move op cnt : 0
LB apply : 4.08 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.05 us (73.8%)
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 | 7.8904e+05 | 262144 | 1 | 3.322e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.494162941807243 (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.68 us (1.9%)
patch tree reduce : 1.70 us (0.5%)
gen split merge : 821.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.17 us (0.3%)
LB compute : 324.43 us (93.8%)
LB move op cnt : 0
LB apply : 4.35 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.37 us (69.9%)
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 | 7.8592e+05 | 262144 | 1 | 3.336e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.428427791239272 (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.34 us (1.8%)
patch tree reduce : 1.33 us (0.4%)
gen split merge : 871.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.03 us (0.3%)
LB compute : 324.14 us (94.1%)
LB move op cnt : 0
LB apply : 3.69 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.37 us (74.5%)
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.8517e+05 | 262144 | 1 | 3.339e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.412588422949458 (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 : 6.47 us (1.8%)
patch tree reduce : 1.74 us (0.5%)
gen split merge : 841.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.00 us (0.3%)
LB compute : 334.79 us (93.8%)
LB move op cnt : 0
LB apply : 4.00 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.48 us (68.6%)
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 | 7.8623e+05 | 262144 | 1 | 3.334e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.43455047622274 (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.18 us (1.7%)
patch tree reduce : 1.47 us (0.4%)
gen split merge : 942.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.02 us (0.3%)
LB compute : 340.30 us (94.6%)
LB move op cnt : 0
LB apply : 3.78 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.36 us (70.8%)
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 | 7.8634e+05 | 262144 | 1 | 3.334e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.43641137700018 (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.19 us (1.6%)
patch tree reduce : 1.42 us (0.4%)
gen split merge : 841.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.3%)
LB compute : 361.11 us (94.8%)
LB move op cnt : 0
LB apply : 4.08 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.49 us (71.7%)
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 | 7.8625e+05 | 262144 | 1 | 3.334e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.43369439286776 (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.15 us (1.8%)
patch tree reduce : 1.65 us (0.5%)
gen split merge : 912.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.02 us (0.3%)
LB compute : 324.12 us (94.0%)
LB move op cnt : 0
LB apply : 4.52 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.20 us (72.2%)
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 | 7.8706e+05 | 262144 | 1 | 3.331e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.44995176037757 (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 : 6.97 us (2.0%)
patch tree reduce : 1.55 us (0.4%)
gen split merge : 832.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 881.00 ns (0.3%)
LB compute : 330.45 us (94.0%)
LB move op cnt : 0
LB apply : 4.06 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.38 us (69.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 | 7.8184e+05 | 262144 | 1 | 3.353e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.340104696302333 (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.14 us (1.6%)
patch tree reduce : 1.51 us (0.4%)
gen split merge : 832.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.3%)
LB compute : 353.50 us (94.7%)
LB move op cnt : 0
LB apply : 3.86 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.63 us (73.4%)
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 | 7.5301e+05 | 262144 | 1 | 3.481e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.737159133804697 (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 : 6.52 us (1.8%)
patch tree reduce : 1.42 us (0.4%)
gen split merge : 832.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.29 us (0.4%)
LB compute : 344.36 us (94.4%)
LB move op cnt : 0
LB apply : 3.73 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.11 us (67.4%)
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 | 7.7713e+05 | 262144 | 1 | 3.373e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.240702900782445 (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 : 6.15 us (1.5%)
patch tree reduce : 1.49 us (0.4%)
gen split merge : 872.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.01 us (0.3%)
LB compute : 377.80 us (94.8%)
LB move op cnt : 0
LB apply : 4.11 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.89 us (73.5%)
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.8274e+05 | 262144 | 1 | 3.349e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.357429930253026 (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.94 us (1.8%)
patch tree reduce : 1.46 us (0.4%)
gen split merge : 931.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.04 us (0.3%)
LB compute : 354.00 us (94.3%)
LB move op cnt : 0
LB apply : 4.54 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.04 us (76.1%)
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.3050e+05 | 262144 | 1 | 3.589e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.265321589755157 (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.80 us (1.9%)
patch tree reduce : 1.38 us (0.4%)
gen split merge : 892.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.03 us (0.3%)
LB compute : 339.69 us (94.1%)
LB move op cnt : 0
LB apply : 3.66 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.22 us (69.2%)
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 | 7.8201e+05 | 262144 | 1 | 3.352e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.34135197807158 (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 : 5.92 us (1.5%)
patch tree reduce : 1.52 us (0.4%)
gen split merge : 921.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 871.00 ns (0.2%)
LB compute : 384.53 us (95.1%)
LB move op cnt : 0
LB apply : 4.07 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.81 us (73.5%)
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 | 7.6688e+05 | 262144 | 1 | 3.418e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.024819199159992 (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 : 27.21 us (6.9%)
patch tree reduce : 1.44 us (0.4%)
gen split merge : 862.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.2%)
LB compute : 352.48 us (89.7%)
LB move op cnt : 0
LB apply : 3.90 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.47 us (68.8%)
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 | 7.8230e+05 | 262144 | 1 | 3.351e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11.463548246320679 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 609.670411454 (s) [Godunov][rank=0]
Info: dump to _to_trash/ramses_kh/periodic_0021.vtk [VTK Dump][rank=0]
- took 31.95 ms, bandwidth = 1.28 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 : 6.38 us (1.5%)
patch tree reduce : 1.59 us (0.4%)
gen split merge : 961.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.00 us (0.2%)
LB compute : 400.14 us (95.1%)
LB move op cnt : 0
LB apply : 4.27 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.60 us (70.7%)
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 | 6.4767e+05 | 262144 | 1 | 4.047e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.533433526138666 (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.13 us (1.4%)
patch tree reduce : 1.50 us (0.3%)
gen split merge : 831.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.2%)
LB compute : 413.54 us (95.4%)
LB move op cnt : 0
LB apply : 3.99 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.86 us (73.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 | 7.8279e+05 | 262144 | 1 | 3.349e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.35657856640672 (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 : 6.31 us (1.5%)
patch tree reduce : 1.60 us (0.4%)
gen split merge : 841.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.11 us (0.3%)
LB compute : 400.06 us (95.1%)
LB move op cnt : 0
LB apply : 4.05 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.82 us (70.3%)
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 | 7.9129e+05 | 262144 | 1 | 3.313e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.53386054691686 (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 : 5.87 us (1.7%)
patch tree reduce : 1.59 us (0.5%)
gen split merge : 932.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.35 us (0.4%)
LB compute : 322.58 us (94.0%)
LB move op cnt : 0
LB apply : 4.22 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.87 us (70.3%)
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 | 6.9109e+05 | 262144 | 1 | 3.793e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.439926160219681 (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 : 6.90 us (2.0%)
patch tree reduce : 1.50 us (0.4%)
gen split merge : 821.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.3%)
LB compute : 326.16 us (94.0%)
LB move op cnt : 0
LB apply : 4.26 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.67 us (71.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 | 7.8542e+05 | 262144 | 1 | 3.338e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.41089329436698 (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.10 us (1.8%)
patch tree reduce : 1.59 us (0.5%)
gen split merge : 1.09 us (0.3%)
split / merge op : 0/0
apply split merge : 1.10 us (0.3%)
LB compute : 325.07 us (94.2%)
LB move op cnt : 0
LB apply : 3.84 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.52 us (69.5%)
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 | 7.1741e+05 | 262144 | 1 | 3.654e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.989636033465686 (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 : 5.85 us (1.6%)
patch tree reduce : 1.44 us (0.4%)
gen split merge : 821.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.26 us (0.3%)
LB compute : 349.05 us (94.5%)
LB move op cnt : 0
LB apply : 4.45 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.81 us (71.1%)
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.8309e+05 | 262144 | 1 | 3.348e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.361925068252717 (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 : 6.35 us (1.8%)
patch tree reduce : 1.42 us (0.4%)
gen split merge : 821.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.02 us (0.3%)
LB compute : 338.04 us (94.3%)
LB move op cnt : 0
LB apply : 4.29 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.60 us (69.6%)
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.2324e+05 | 262144 | 1 | 3.625e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.11137769541625 (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 : 6.41 us (1.6%)
patch tree reduce : 1.79 us (0.5%)
gen split merge : 942.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.17 us (0.3%)
LB compute : 372.04 us (94.7%)
LB move op cnt : 0
LB apply : 3.92 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.59 us (69.5%)
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 | 7.9178e+05 | 262144 | 1 | 3.311e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.543372032198707 (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 : 6.98 us (2.0%)
patch tree reduce : 1.36 us (0.4%)
gen split merge : 1.23 us (0.3%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.3%)
LB compute : 336.58 us (94.2%)
LB move op cnt : 0
LB apply : 4.10 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.59 us (70.7%)
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 | 7.3138e+05 | 262144 | 1 | 3.584e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.281444676510779 (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.66 us (1.9%)
patch tree reduce : 1.61 us (0.5%)
gen split merge : 981.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.3%)
LB compute : 326.15 us (94.1%)
LB move op cnt : 0
LB apply : 3.91 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.54 us (69.1%)
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.7174e+05 | 262144 | 1 | 3.397e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.12475885634844 (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.19 us (1.8%)
patch tree reduce : 1.44 us (0.4%)
gen split merge : 902.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.3%)
LB compute : 330.23 us (94.4%)
LB move op cnt : 0
LB apply : 3.54 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.28 us (67.0%)
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 | 7.8569e+05 | 262144 | 1 | 3.336e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.416523392789628 (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.78 us (1.8%)
patch tree reduce : 1.55 us (0.4%)
gen split merge : 851.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 882.00 ns (0.2%)
LB compute : 358.73 us (94.5%)
LB move op cnt : 0
LB apply : 3.70 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.25 us (70.3%)
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.5769e+05 | 262144 | 1 | 3.460e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.831585832266192 (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 : 5.95 us (1.7%)
patch tree reduce : 1.36 us (0.4%)
gen split merge : 1.10 us (0.3%)
split / merge op : 0/0
apply split merge : 872.00 ns (0.2%)
LB compute : 340.10 us (94.6%)
LB move op cnt : 0
LB apply : 4.15 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.79 us (71.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 | 7.8287e+05 | 262144 | 1 | 3.348e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.358126245327014 (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.05 us (1.6%)
patch tree reduce : 1.33 us (0.4%)
gen split merge : 1.24 us (0.3%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.3%)
LB compute : 352.39 us (94.7%)
LB move op cnt : 0
LB apply : 3.76 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.06 us (70.4%)
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 | 7.2058e+05 | 262144 | 1 | 3.638e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.05680611947904 (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.39 us (1.7%)
patch tree reduce : 1.74 us (0.5%)
gen split merge : 822.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.05 us (0.3%)
LB compute : 364.05 us (94.6%)
LB move op cnt : 0
LB apply : 4.08 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.73 us (72.0%)
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.8215e+05 | 262144 | 1 | 3.352e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.343818660736044 (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 : 6.09 us (1.7%)
patch tree reduce : 1.34 us (0.4%)
gen split merge : 972.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.02 us (0.3%)
LB compute : 329.96 us (94.3%)
LB move op cnt : 0
LB apply : 4.10 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.18 us (73.2%)
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 | 7.8091e+05 | 262144 | 1 | 3.357e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.31848213128573 (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.50 us (1.9%)
patch tree reduce : 1.57 us (0.4%)
gen split merge : 911.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 881.00 ns (0.3%)
LB compute : 329.62 us (94.1%)
LB move op cnt : 0
LB apply : 4.43 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.07 us (72.5%)
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 | 7.8082e+05 | 262144 | 1 | 3.357e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.317126311100328 (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.41 us (1.7%)
patch tree reduce : 1.82 us (0.5%)
gen split merge : 1.14 us (0.3%)
split / merge op : 0/0
apply split merge : 852.00 ns (0.2%)
LB compute : 353.07 us (94.6%)
LB move op cnt : 0
LB apply : 3.91 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.38 us (65.6%)
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 | 7.9344e+05 | 262144 | 1 | 3.304e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.581484373596172 (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.48 us (1.7%)
patch tree reduce : 1.55 us (0.4%)
gen split merge : 821.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.10 us (0.3%)
LB compute : 363.97 us (94.7%)
LB move op cnt : 0
LB apply : 4.05 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.60 us (70.8%)
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 | 7.2421e+05 | 262144 | 1 | 3.620e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.135243815023186 (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 : 6.33 us (1.6%)
patch tree reduce : 1.42 us (0.4%)
gen split merge : 902.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.18 us (0.3%)
LB compute : 374.16 us (94.9%)
LB move op cnt : 0
LB apply : 3.88 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.48 us (69.9%)
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 | 7.7673e+05 | 262144 | 1 | 3.375e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.23373365092943 (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.90 us (1.8%)
patch tree reduce : 1.45 us (0.4%)
gen split merge : 882.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.29 us (0.3%)
LB compute : 367.73 us (94.6%)
LB move op cnt : 0
LB apply : 4.10 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.98 us (71.4%)
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 | 7.8215e+05 | 262144 | 1 | 3.352e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.347780528135864 (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 : 6.15 us (1.5%)
patch tree reduce : 1.35 us (0.3%)
gen split merge : 901.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.2%)
LB compute : 400.77 us (95.3%)
LB move op cnt : 0
LB apply : 3.90 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.65 us (72.9%)
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 | 7.8093e+05 | 262144 | 1 | 3.357e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.323089475714113 (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.10 us (1.6%)
patch tree reduce : 1.58 us (0.4%)
gen split merge : 922.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 892.00 ns (0.2%)
LB compute : 360.32 us (94.6%)
LB move op cnt : 0
LB apply : 4.18 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.50 us (76.4%)
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 | 7.8805e+05 | 262144 | 1 | 3.326e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.470146659793425 (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 : 5.65 us (1.2%)
patch tree reduce : 1.49 us (0.3%)
gen split merge : 831.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.2%)
LB compute : 444.59 us (95.9%)
LB move op cnt : 0
LB apply : 3.79 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.66 us (73.6%)
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 | 7.2583e+05 | 262144 | 1 | 3.612e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.167822128898528 (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.32 us (1.8%)
patch tree reduce : 1.35 us (0.4%)
gen split merge : 912.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.08 us (0.3%)
LB compute : 326.65 us (94.2%)
LB move op cnt : 0
LB apply : 4.26 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.65 us (68.4%)
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 | 7.9199e+05 | 262144 | 1 | 3.310e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.54826603709936 (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 : 5.85 us (1.7%)
patch tree reduce : 1.47 us (0.4%)
gen split merge : 911.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 872.00 ns (0.3%)
LB compute : 321.35 us (94.5%)
LB move op cnt : 0
LB apply : 3.88 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.16 us (71.3%)
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 | 7.1825e+05 | 262144 | 1 | 3.650e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.00550949151191 (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.64 us (1.9%)
patch tree reduce : 1.71 us (0.5%)
gen split merge : 812.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 851.00 ns (0.2%)
LB compute : 322.72 us (94.1%)
LB move op cnt : 0
LB apply : 3.84 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.31 us (69.1%)
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.0560e+05 | 262144 | 1 | 3.715e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.739510567834666 (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 : 5.95 us (1.5%)
patch tree reduce : 1.42 us (0.4%)
gen split merge : 912.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.3%)
LB compute : 368.20 us (95.0%)
LB move op cnt : 0
LB apply : 4.16 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.37 us (69.7%)
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 | 7.7155e+05 | 262144 | 1 | 3.398e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.115056913068372 (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 : 6.88 us (2.0%)
patch tree reduce : 1.40 us (0.4%)
gen split merge : 812.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.33 us (0.4%)
LB compute : 316.43 us (93.9%)
LB move op cnt : 0
LB apply : 3.88 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.91 us (72.0%)
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 | 7.7393e+05 | 262144 | 1 | 3.387e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.163027694914323 (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.20 us (1.8%)
patch tree reduce : 1.40 us (0.4%)
gen split merge : 1.07 us (0.3%)
split / merge op : 0/0
apply split merge : 1.39 us (0.4%)
LB compute : 326.57 us (94.1%)
LB move op cnt : 0
LB apply : 4.01 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.28 us (69.3%)
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 | 7.9701e+05 | 262144 | 1 | 3.289e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.64305654220958 (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.34 us (1.9%)
patch tree reduce : 1.78 us (0.5%)
gen split merge : 982.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.3%)
LB compute : 316.91 us (94.0%)
LB move op cnt : 0
LB apply : 4.02 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.04 us (73.0%)
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 | 6.8794e+05 | 262144 | 1 | 3.811e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.363746536549291 (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.37 us (1.7%)
patch tree reduce : 1.34 us (0.3%)
gen split merge : 832.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.10 us (0.3%)
LB compute : 362.86 us (94.6%)
LB move op cnt : 0
LB apply : 4.19 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.82 us (73.0%)
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 | 7.4254e+05 | 262144 | 1 | 3.530e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.502146044516252 (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 : 6.54 us (1.8%)
patch tree reduce : 1.68 us (0.5%)
gen split merge : 1.33 us (0.4%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.3%)
LB compute : 342.09 us (94.2%)
LB move op cnt : 0
LB apply : 4.00 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.75 us (71.9%)
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 | 7.0717e+05 | 262144 | 1 | 3.707e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.7619572540586 (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.18 us (1.7%)
patch tree reduce : 1.42 us (0.4%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.3%)
LB compute : 334.98 us (94.2%)
LB move op cnt : 0
LB apply : 4.45 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.28 us (75.3%)
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 | 7.6498e+05 | 262144 | 1 | 3.427e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.967052762253646 (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.36 us (1.9%)
patch tree reduce : 1.82 us (0.5%)
gen split merge : 821.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 892.00 ns (0.3%)
LB compute : 319.15 us (93.9%)
LB move op cnt : 0
LB apply : 3.71 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.58 us (71.4%)
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 | 7.7383e+05 | 262144 | 1 | 3.388e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.15010490726029 (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.73 us (1.9%)
patch tree reduce : 1.33 us (0.4%)
gen split merge : 1.15 us (0.3%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.3%)
LB compute : 333.89 us (94.3%)
LB move op cnt : 0
LB apply : 3.66 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.12 us (75.6%)
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 | 7.4607e+05 | 262144 | 1 | 3.514e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.569177020118078 (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 : 28.39 us (7.8%)
patch tree reduce : 1.65 us (0.5%)
gen split merge : 972.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 981.00 ns (0.3%)
LB compute : 321.05 us (88.3%)
LB move op cnt : 0
LB apply : 3.91 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.67 us (69.6%)
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 | 7.9452e+05 | 262144 | 1 | 3.299e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.578477356850026 (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.70 us (0.7%)
patch tree reduce : 1.67 us (0.2%)
gen split merge : 1.24 us (0.1%)
split / merge op : 0/0
apply split merge : 901.00 ns (0.1%)
LB compute : 877.86 us (97.6%)
LB move op cnt : 0
LB apply : 4.50 us (0.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.29 us (75.2%)
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 | 7.5368e+05 | 262144 | 1 | 3.478e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.72477482884385 (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.29 us (1.7%)
patch tree reduce : 1.53 us (0.4%)
gen split merge : 1.08 us (0.3%)
split / merge op : 0/0
apply split merge : 961.00 ns (0.3%)
LB compute : 348.30 us (94.4%)
LB move op cnt : 0
LB apply : 4.57 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.42 us (72.4%)
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 | 7.3953e+05 | 262144 | 1 | 3.545e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.428013515371179 (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 : 5.97 us (1.7%)
patch tree reduce : 1.48 us (0.4%)
gen split merge : 922.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.01 us (0.3%)
LB compute : 328.33 us (94.4%)
LB move op cnt : 0
LB apply : 3.85 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.22 us (73.3%)
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 | 7.2974e+05 | 262144 | 1 | 3.592e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.222199984496088 (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 : 5.97 us (1.7%)
patch tree reduce : 1.52 us (0.4%)
gen split merge : 822.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.18 us (0.3%)
LB compute : 338.19 us (94.4%)
LB move op cnt : 0
LB apply : 4.23 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.80 us (71.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 | 7.0228e+05 | 262144 | 1 | 3.733e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.648108702659531 (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.24 us (1.7%)
patch tree reduce : 1.48 us (0.4%)
gen split merge : 892.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 882.00 ns (0.2%)
LB compute : 350.84 us (94.7%)
LB move op cnt : 0
LB apply : 4.10 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.39 us (69.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.8754e+05 | 262144 | 1 | 3.329e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.424933709367266 (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 : 6.22 us (1.7%)
patch tree reduce : 1.38 us (0.4%)
gen split merge : 801.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.01 us (0.3%)
LB compute : 339.58 us (94.6%)
LB move op cnt : 0
LB apply : 3.57 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.83 us (69.1%)
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 | 7.9222e+05 | 262144 | 1 | 3.309e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.521108342803203 (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.00 us (1.4%)
patch tree reduce : 1.45 us (0.3%)
gen split merge : 1.16 us (0.3%)
split / merge op : 0/0
apply split merge : 1.12 us (0.3%)
LB compute : 397.07 us (95.0%)
LB move op cnt : 0
LB apply : 3.80 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.89 us (73.5%)
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.0691e+05 | 262144 | 1 | 3.708e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.740763729551553 (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 : 7.35 us (2.0%)
patch tree reduce : 1.50 us (0.4%)
gen split merge : 971.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.07 us (0.3%)
LB compute : 347.45 us (94.0%)
LB move op cnt : 0
LB apply : 4.56 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.52 us (75.5%)
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 | 6.6678e+05 | 262144 | 1 | 3.931e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.902687987445331 (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 : 6.21 us (1.8%)
patch tree reduce : 1.33 us (0.4%)
gen split merge : 871.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.23 us (0.4%)
LB compute : 318.57 us (94.1%)
LB move op cnt : 0
LB apply : 3.77 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.45 us (68.1%)
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 | 7.6119e+05 | 262144 | 1 | 3.444e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.86990494218719 (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.21 us (1.7%)
patch tree reduce : 1.76 us (0.5%)
gen split merge : 1.09 us (0.3%)
split / merge op : 0/0
apply split merge : 1.24 us (0.3%)
LB compute : 341.25 us (94.4%)
LB move op cnt : 0
LB apply : 3.58 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.36 us (70.0%)
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 | 7.3103e+05 | 262144 | 1 | 3.586e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.239823670303657 (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.49 us (1.8%)
patch tree reduce : 1.34 us (0.3%)
gen split merge : 922.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.07 us (0.3%)
LB compute : 394.98 us (94.9%)
LB move op cnt : 0
LB apply : 4.06 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.43 us (71.7%)
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.3426e+05 | 262144 | 1 | 3.570e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.306053727507575 (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.04 us (1.7%)
patch tree reduce : 1.79 us (0.5%)
gen split merge : 932.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.18 us (0.3%)
LB compute : 343.90 us (94.3%)
LB move op cnt : 0
LB apply : 3.93 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.20 us (70.3%)
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 | 7.6709e+05 | 262144 | 1 | 3.417e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.989204843904623 (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 : 6.05 us (1.6%)
patch tree reduce : 1.42 us (0.4%)
gen split merge : 812.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.10 us (0.3%)
LB compute : 369.71 us (95.0%)
LB move op cnt : 0
LB apply : 4.13 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.55 us (64.0%)
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 | 7.4083e+05 | 262144 | 1 | 3.539e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.440560399983609 (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 : 6.25 us (1.5%)
patch tree reduce : 1.56 us (0.4%)
gen split merge : 922.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.06 us (0.3%)
LB compute : 396.39 us (95.1%)
LB move op cnt : 0
LB apply : 3.90 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.59 us (72.5%)
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 | 7.6225e+05 | 262144 | 1 | 3.439e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.886028127839126 (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.60 us (2.0%)
patch tree reduce : 1.35 us (0.4%)
gen split merge : 922.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.20 us (0.4%)
LB compute : 317.10 us (94.0%)
LB move op cnt : 0
LB apply : 3.94 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.38 us (69.1%)
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 | 6.9273e+05 | 262144 | 1 | 3.784e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.436169324366492 (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 : 5.70 us (1.5%)
patch tree reduce : 1.64 us (0.4%)
gen split merge : 852.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.08 us (0.3%)
LB compute : 355.75 us (94.5%)
LB move op cnt : 0
LB apply : 4.39 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.02 us (74.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.0738e+05 | 262144 | 1 | 3.706e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.740476595584466 (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 : 6.20 us (1.7%)
patch tree reduce : 1.67 us (0.5%)
gen split merge : 911.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.06 us (0.3%)
LB compute : 345.85 us (94.4%)
LB move op cnt : 0
LB apply : 4.15 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.83 us (73.2%)
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.4272e+05 | 262144 | 1 | 3.529e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.47597899147499 (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.09 us (1.6%)
patch tree reduce : 1.44 us (0.4%)
gen split merge : 1.07 us (0.3%)
split / merge op : 0/0
apply split merge : 1.01 us (0.3%)
LB compute : 363.62 us (94.8%)
LB move op cnt : 0
LB apply : 4.21 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.96 us (73.8%)
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.4033e+05 | 262144 | 1 | 3.541e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.42525869356368 (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 : 5.80 us (1.6%)
patch tree reduce : 1.55 us (0.4%)
gen split merge : 922.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 912.00 ns (0.2%)
LB compute : 346.20 us (94.7%)
LB move op cnt : 0
LB apply : 3.99 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.52 us (71.4%)
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 | 7.9890e+05 | 262144 | 1 | 3.281e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.644574509282176 (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 : 5.96 us (1.5%)
patch tree reduce : 1.41 us (0.4%)
gen split merge : 1.27 us (0.3%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.3%)
LB compute : 367.78 us (94.7%)
LB move op cnt : 0
LB apply : 3.87 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.82 us (72.2%)
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 | 7.8886e+05 | 262144 | 1 | 3.323e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.43442896148679 (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.43 us (1.8%)
patch tree reduce : 1.32 us (0.4%)
gen split merge : 922.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.3%)
LB compute : 333.89 us (94.3%)
LB move op cnt : 0
LB apply : 4.61 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.95 us (73.3%)
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.5568e+05 | 262144 | 1 | 3.469e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.742274524630886 (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.34 us (1.6%)
patch tree reduce : 1.40 us (0.4%)
gen split merge : 852.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.10 us (0.3%)
LB compute : 375.09 us (95.0%)
LB move op cnt : 0
LB apply : 3.95 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.62 us (70.0%)
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 | 7.9907e+05 | 262144 | 1 | 3.281e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.64531491672483 (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.50 us (1.9%)
patch tree reduce : 1.31 us (0.4%)
gen split merge : 832.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.42 us (0.4%)
LB compute : 314.59 us (93.9%)
LB move op cnt : 0
LB apply : 3.65 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.46 us (68.1%)
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 | 7.0626e+05 | 262144 | 1 | 3.712e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.711455740971413 (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.09 us (1.8%)
patch tree reduce : 1.42 us (0.4%)
gen split merge : 912.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.3%)
LB compute : 314.56 us (94.4%)
LB move op cnt : 0
LB apply : 3.45 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.23 us (73.0%)
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 | 7.4606e+05 | 262144 | 1 | 3.514e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.53968154299181 (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 : 6.50 us (1.9%)
patch tree reduce : 1.33 us (0.4%)
gen split merge : 1.14 us (0.3%)
split / merge op : 0/0
apply split merge : 1.01 us (0.3%)
LB compute : 322.84 us (94.0%)
LB move op cnt : 0
LB apply : 4.04 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.49 us (70.9%)
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 | 7.4264e+05 | 262144 | 1 | 3.530e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.467721502912518 (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 : 5.50 us (1.6%)
patch tree reduce : 1.34 us (0.4%)
gen split merge : 922.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.00 us (0.3%)
LB compute : 328.42 us (94.5%)
LB move op cnt : 0
LB apply : 4.06 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.60 us (70.1%)
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 | 7.7445e+05 | 262144 | 1 | 3.385e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.129695531998244 (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.23 us (1.7%)
patch tree reduce : 1.60 us (0.4%)
gen split merge : 912.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 872.00 ns (0.2%)
LB compute : 352.18 us (94.7%)
LB move op cnt : 0
LB apply : 3.97 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.40 us (68.4%)
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 | 7.3570e+05 | 262144 | 1 | 3.563e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.322084752937222 (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.67 us (1.9%)
patch tree reduce : 1.33 us (0.4%)
gen split merge : 992.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.06 us (0.3%)
LB compute : 332.89 us (94.2%)
LB move op cnt : 0
LB apply : 4.10 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1.96 us (65.8%)
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 | 7.8430e+05 | 262144 | 1 | 3.342e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.33367222827792 (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.18 us (1.6%)
patch tree reduce : 1.34 us (0.4%)
gen split merge : 842.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 892.00 ns (0.2%)
LB compute : 356.46 us (94.8%)
LB move op cnt : 0
LB apply : 3.76 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.87 us (71.3%)
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 | 7.5154e+05 | 262144 | 1 | 3.488e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.651126204274627 (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.66 us (1.8%)
patch tree reduce : 1.36 us (0.4%)
gen split merge : 942.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.37 us (0.4%)
LB compute : 349.91 us (94.2%)
LB move op cnt : 0
LB apply : 4.26 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.12 us (77.4%)
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 | 7.4288e+05 | 262144 | 1 | 3.529e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.470278390794862 (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 : 5.93 us (1.7%)
patch tree reduce : 1.63 us (0.5%)
gen split merge : 892.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.3%)
LB compute : 336.10 us (94.4%)
LB move op cnt : 0
LB apply : 3.96 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.90 us (73.7%)
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 | 7.9708e+05 | 262144 | 1 | 3.289e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.598561414139734 (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.49 us (2.0%)
patch tree reduce : 1.37 us (0.4%)
gen split merge : 982.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.16 us (0.4%)
LB compute : 310.34 us (93.9%)
LB move op cnt : 0
LB apply : 4.07 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.55 us (69.6%)
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 | 7.6513e+05 | 262144 | 1 | 3.426e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.933042256253458 (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.09 us (2.0%)
patch tree reduce : 1.71 us (0.5%)
gen split merge : 1.00 us (0.3%)
split / merge op : 0/0
apply split merge : 1.10 us (0.3%)
LB compute : 338.52 us (94.0%)
LB move op cnt : 0
LB apply : 4.41 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.77 us (70.0%)
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 | 7.2807e+05 | 262144 | 1 | 3.601e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.161085403546297 (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 : 5.97 us (1.7%)
patch tree reduce : 1.33 us (0.4%)
gen split merge : 892.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.3%)
LB compute : 330.09 us (94.3%)
LB move op cnt : 0
LB apply : 4.54 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.31 us (66.7%)
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.8493e+05 | 262144 | 1 | 3.340e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.344918445424703 (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.46 us (1.7%)
patch tree reduce : 1.60 us (0.4%)
gen split merge : 972.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.3%)
LB compute : 366.37 us (94.6%)
LB move op cnt : 0
LB apply : 3.94 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.80 us (70.1%)
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 | 7.2016e+05 | 262144 | 1 | 3.640e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.996099944290348 (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.21 us (1.8%)
patch tree reduce : 1.72 us (0.5%)
gen split merge : 832.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 901.00 ns (0.3%)
LB compute : 318.28 us (94.2%)
LB move op cnt : 0
LB apply : 3.92 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.37 us (69.7%)
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 | 7.1114e+05 | 262144 | 1 | 3.686e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.808334760512478 (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 : 7.10 us (2.0%)
patch tree reduce : 1.79 us (0.5%)
gen split merge : 942.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.3%)
LB compute : 329.36 us (94.1%)
LB move op cnt : 0
LB apply : 3.84 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.29 us (69.2%)
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.9875e+05 | 262144 | 1 | 3.282e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.632654812998 (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.49 us (1.8%)
patch tree reduce : 1.44 us (0.4%)
gen split merge : 1.16 us (0.3%)
split / merge op : 0/0
apply split merge : 1.16 us (0.3%)
LB compute : 346.72 us (94.5%)
LB move op cnt : 0
LB apply : 3.75 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.91 us (69.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 | 7.9170e+05 | 262144 | 1 | 3.311e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.48560113729518 (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.51 us (1.8%)
patch tree reduce : 1.51 us (0.4%)
gen split merge : 911.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.00 us (0.3%)
LB compute : 337.16 us (94.4%)
LB move op cnt : 0
LB apply : 3.94 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.88 us (72.8%)
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.5237e+05 | 262144 | 1 | 3.484e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.66642158261144 (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.50 us (1.6%)
patch tree reduce : 1.40 us (0.4%)
gen split merge : 1.07 us (0.3%)
split / merge op : 0/0
apply split merge : 1.07 us (0.3%)
LB compute : 377.17 us (94.7%)
LB move op cnt : 0
LB apply : 4.08 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.66 us (71.6%)
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.9916e+05 | 262144 | 1 | 3.280e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.64044105521402 (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.57 us (1.8%)
patch tree reduce : 1.43 us (0.4%)
gen split merge : 992.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.30 us (0.4%)
LB compute : 346.10 us (94.5%)
LB move op cnt : 0
LB apply : 3.81 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.29 us (69.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.9378e+05 | 262144 | 1 | 3.302e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.528140269145506 (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.19 us (1.5%)
patch tree reduce : 1.32 us (0.3%)
gen split merge : 922.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.2%)
LB compute : 385.87 us (95.1%)
LB move op cnt : 0
LB apply : 3.94 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.74 us (70.2%)
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 | 7.8200e+05 | 262144 | 1 | 3.352e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.282042494565367 (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.39 us (1.7%)
patch tree reduce : 1.39 us (0.4%)
gen split merge : 1.26 us (0.3%)
split / merge op : 0/0
apply split merge : 1.08 us (0.3%)
LB compute : 345.03 us (94.3%)
LB move op cnt : 0
LB apply : 3.99 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.57 us (70.6%)
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.0066e+05 | 262144 | 1 | 3.274e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.66989286912821 (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.30 us (1.9%)
patch tree reduce : 1.47 us (0.4%)
gen split merge : 922.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.07 us (0.3%)
LB compute : 318.37 us (94.1%)
LB move op cnt : 0
LB apply : 3.68 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.43 us (69.0%)
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 | 7.4715e+05 | 262144 | 1 | 3.509e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.554922174215472 (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.57 us (2.0%)
patch tree reduce : 1.52 us (0.5%)
gen split merge : 802.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.3%)
LB compute : 311.84 us (93.9%)
LB move op cnt : 0
LB apply : 4.32 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.32 us (68.8%)
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 | 7.8411e+05 | 262144 | 1 | 3.343e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.32372103249434 (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.80 us (1.7%)
patch tree reduce : 1.79 us (0.4%)
gen split merge : 972.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 912.00 ns (0.2%)
LB compute : 382.92 us (94.9%)
LB move op cnt : 0
LB apply : 3.82 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.59 us (71.1%)
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 | 7.7912e+05 | 262144 | 1 | 3.365e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.219177849016756 (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 : 5.97 us (1.7%)
patch tree reduce : 1.89 us (0.5%)
gen split merge : 832.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.18 us (0.3%)
LB compute : 341.84 us (94.5%)
LB move op cnt : 0
LB apply : 3.86 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.81 us (69.8%)
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 | 6.8660e+05 | 262144 | 1 | 3.818e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.29273518235493 (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.25 us (1.7%)
patch tree reduce : 1.71 us (0.5%)
gen split merge : 881.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.34 us (0.4%)
LB compute : 356.41 us (94.4%)
LB move op cnt : 0
LB apply : 4.48 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.41 us (68.1%)
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 | 7.9108e+05 | 262144 | 1 | 3.314e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.46695302805607 (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 : 5.66 us (1.7%)
patch tree reduce : 1.37 us (0.4%)
gen split merge : 911.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.06 us (0.3%)
LB compute : 315.88 us (94.2%)
LB move op cnt : 0
LB apply : 4.03 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.94 us (71.1%)
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 | 7.8694e+05 | 262144 | 1 | 3.331e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.3801903528819 (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.18 us (1.7%)
patch tree reduce : 1.42 us (0.4%)
gen split merge : 922.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.11 us (0.3%)
LB compute : 349.17 us (94.5%)
LB move op cnt : 0
LB apply : 4.29 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.92 us (73.1%)
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.9104e+05 | 262144 | 1 | 3.314e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.6498659684459271 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 640.8176458290001 (s) [Godunov][rank=0]
Info: dump to _to_trash/ramses_kh/periodic_0022.vtk [VTK Dump][rank=0]
- took 31.53 ms, bandwidth = 1.30 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 : 6.44 us (1.7%)
patch tree reduce : 1.44 us (0.4%)
gen split merge : 932.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.20 us (0.3%)
LB compute : 350.39 us (94.7%)
LB move op cnt : 0
LB apply : 3.83 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.02 us (65.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 | 7.5883e+05 | 262144 | 1 | 3.455e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.79449541983951 (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 : 6.36 us (1.8%)
patch tree reduce : 1.32 us (0.4%)
gen split merge : 1.10 us (0.3%)
split / merge op : 0/0
apply split merge : 1.07 us (0.3%)
LB compute : 334.42 us (94.4%)
LB move op cnt : 0
LB apply : 3.52 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.52 us (70.7%)
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 | 7.8693e+05 | 262144 | 1 | 3.331e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.379056807902774 (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.44 us (1.5%)
patch tree reduce : 1.56 us (0.4%)
gen split merge : 1.22 us (0.3%)
split / merge op : 0/0
apply split merge : 1.25 us (0.3%)
LB compute : 400.80 us (94.8%)
LB move op cnt : 0
LB apply : 4.00 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.62 us (71.9%)
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 | 7.8826e+05 | 262144 | 1 | 3.326e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.406281575383332 (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.09 us (1.6%)
patch tree reduce : 1.45 us (0.4%)
gen split merge : 972.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.03 us (0.3%)
LB compute : 357.71 us (94.8%)
LB move op cnt : 0
LB apply : 3.70 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.92 us (70.6%)
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 | 7.7424e+05 | 262144 | 1 | 3.386e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.114010024564408 (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.00 us (1.7%)
patch tree reduce : 1.43 us (0.4%)
gen split merge : 1.33 us (0.4%)
split / merge op : 0/0
apply split merge : 1.13 us (0.3%)
LB compute : 342.52 us (94.2%)
LB move op cnt : 0
LB apply : 3.87 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.28 us (71.9%)
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 | 7.8637e+05 | 262144 | 1 | 3.334e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.365963330771393 (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.46 us (1.8%)
patch tree reduce : 1.44 us (0.4%)
gen split merge : 912.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.04 us (0.3%)
LB compute : 332.48 us (94.4%)
LB move op cnt : 0
LB apply : 3.92 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.45 us (70.3%)
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 | 7.8820e+05 | 262144 | 1 | 3.326e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.403815599326812 (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.59 us (1.7%)
patch tree reduce : 1.70 us (0.4%)
gen split merge : 882.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 993.00 ns (0.3%)
LB compute : 363.03 us (94.6%)
LB move op cnt : 0
LB apply : 4.00 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.54 us (72.1%)
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 | 7.8103e+05 | 262144 | 1 | 3.356e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.254285310646722 (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.01 us (1.8%)
patch tree reduce : 1.32 us (0.4%)
gen split merge : 902.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.28 us (0.4%)
LB compute : 317.25 us (92.8%)
LB move op cnt : 0
LB apply : 8.19 us (2.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.15 us (67.0%)
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 | 7.8705e+05 | 262144 | 1 | 3.331e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.3794281218462 (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 : 6.00 us (1.8%)
patch tree reduce : 1.65 us (0.5%)
gen split merge : 922.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.3%)
LB compute : 316.06 us (94.1%)
LB move op cnt : 0
LB apply : 4.04 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.22 us (67.5%)
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 | 7.8765e+05 | 262144 | 1 | 3.328e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.391723606885087 (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.14 us (1.8%)
patch tree reduce : 1.30 us (0.4%)
gen split merge : 1.12 us (0.3%)
split / merge op : 0/0
apply split merge : 1.08 us (0.3%)
LB compute : 318.98 us (94.1%)
LB move op cnt : 0
LB apply : 3.95 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.96 us (70.7%)
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 | 7.8586e+05 | 262144 | 1 | 3.336e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.354411179845634 (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.08 us (1.8%)
patch tree reduce : 1.42 us (0.4%)
gen split merge : 922.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 862.00 ns (0.3%)
LB compute : 318.55 us (94.2%)
LB move op cnt : 0
LB apply : 4.13 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.48 us (73.0%)
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 | 7.6641e+05 | 262144 | 1 | 3.420e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.94963007570044 (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.06 us (1.6%)
patch tree reduce : 1.44 us (0.4%)
gen split merge : 922.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.06 us (0.3%)
LB compute : 359.01 us (94.8%)
LB move op cnt : 0
LB apply : 4.15 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.87 us (71.9%)
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 | 7.8609e+05 | 262144 | 1 | 3.335e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.35924424936039 (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 : 7.07 us (1.9%)
patch tree reduce : 2.08 us (0.6%)
gen split merge : 1.08 us (0.3%)
split / merge op : 0/0
apply split merge : 1.19 us (0.3%)
LB compute : 334.24 us (89.0%)
LB move op cnt : 0
LB apply : 3.85 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.82 us (71.7%)
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 | 7.8925e+05 | 262144 | 1 | 3.321e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.42526732320945 (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.10 us (1.6%)
patch tree reduce : 1.43 us (0.4%)
gen split merge : 931.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.00 us (0.3%)
LB compute : 350.38 us (94.7%)
LB move op cnt : 0
LB apply : 3.92 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.49 us (71.5%)
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 | 7.8911e+05 | 262144 | 1 | 3.322e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.422655930244876 (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.16 us (1.8%)
patch tree reduce : 1.45 us (0.4%)
gen split merge : 882.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 892.00 ns (0.3%)
LB compute : 326.07 us (94.2%)
LB move op cnt : 0
LB apply : 4.29 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.05 us (70.8%)
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 | 7.5822e+05 | 262144 | 1 | 3.457e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.78004496633394 (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 : 5.85 us (1.5%)
patch tree reduce : 1.41 us (0.4%)
gen split merge : 902.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.00 us (0.3%)
LB compute : 378.75 us (95.0%)
LB move op cnt : 0
LB apply : 3.70 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.01 us (72.1%)
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 | 7.9105e+05 | 262144 | 1 | 3.314e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.46372524553783 (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.05 us (1.4%)
patch tree reduce : 1.43 us (0.3%)
gen split merge : 962.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.39 us (0.3%)
LB compute : 420.77 us (95.0%)
LB move op cnt : 0
LB apply : 4.88 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.18 us (76.2%)
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 | 7.8175e+05 | 262144 | 1 | 3.353e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.270599449191412 (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.44 us (1.7%)
patch tree reduce : 1.46 us (0.4%)
gen split merge : 921.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.10 us (0.3%)
LB compute : 360.71 us (94.6%)
LB move op cnt : 0
LB apply : 4.14 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.23 us (66.2%)
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 | 7.7992e+05 | 262144 | 1 | 3.361e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.233019326927586 (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 : 5.60 us (1.7%)
patch tree reduce : 1.32 us (0.4%)
gen split merge : 922.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.08 us (0.3%)
LB compute : 309.15 us (94.3%)
LB move op cnt : 0
LB apply : 3.57 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.79 us (69.3%)
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 | 6.8149e+05 | 262144 | 1 | 3.847e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.184727189033696 (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.01 us (1.7%)
patch tree reduce : 1.47 us (0.4%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.03 us (0.3%)
LB compute : 341.62 us (94.6%)
LB move op cnt : 0
LB apply : 3.88 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.47 us (73.6%)
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 | 7.8826e+05 | 262144 | 1 | 3.326e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.407756945485637 (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 : 5.90 us (1.6%)
patch tree reduce : 1.42 us (0.4%)
gen split merge : 922.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.09 us (0.3%)
LB compute : 353.35 us (94.8%)
LB move op cnt : 0
LB apply : 3.66 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.23 us (69.2%)
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 | 7.8326e+05 | 262144 | 1 | 3.347e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.30433036631312 (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 : 6.12 us (1.8%)
patch tree reduce : 1.42 us (0.4%)
gen split merge : 992.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 922.00 ns (0.3%)
LB compute : 316.91 us (94.0%)
LB move op cnt : 0
LB apply : 4.27 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.93 us (70.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 | 7.7527e+05 | 262144 | 1 | 3.381e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.13874854389948 (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 : 5.71 us (1.6%)
patch tree reduce : 1.43 us (0.4%)
gen split merge : 922.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 912.00 ns (0.2%)
LB compute : 346.57 us (94.7%)
LB move op cnt : 0
LB apply : 3.77 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.18 us (75.1%)
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 | 6.7444e+05 | 262144 | 1 | 3.887e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.040445079967625 (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.10 us (1.6%)
patch tree reduce : 1.43 us (0.4%)
gen split merge : 922.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.19 us (0.3%)
LB compute : 372.68 us (95.0%)
LB move op cnt : 0
LB apply : 4.09 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.99 us (74.5%)
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 | 7.7142e+05 | 262144 | 1 | 3.398e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.060161547437996 (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 : 6.77 us (1.6%)
patch tree reduce : 1.57 us (0.4%)
gen split merge : 991.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.01 us (0.2%)
LB compute : 415.29 us (95.2%)
LB move op cnt : 0
LB apply : 4.19 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.96 us (73.5%)
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 | 7.8398e+05 | 262144 | 1 | 3.344e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.322626022942913 (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.62 us (1.8%)
patch tree reduce : 1.36 us (0.4%)
gen split merge : 1.13 us (0.3%)
split / merge op : 0/0
apply split merge : 1.39 us (0.4%)
LB compute : 337.84 us (94.1%)
LB move op cnt : 0
LB apply : 4.17 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.02 us (71.5%)
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 | 7.2070e+05 | 262144 | 1 | 3.637e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.006060858110356 (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.10 us (1.5%)
patch tree reduce : 1.56 us (0.4%)
gen split merge : 1.29 us (0.3%)
split / merge op : 0/0
apply split merge : 881.00 ns (0.2%)
LB compute : 384.94 us (95.1%)
LB move op cnt : 0
LB apply : 3.90 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.13 us (74.3%)
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 | 7.8197e+05 | 262144 | 1 | 3.352e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.282790828088284 (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.51 us (1.7%)
patch tree reduce : 1.55 us (0.4%)
gen split merge : 852.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.01 us (0.3%)
LB compute : 351.89 us (94.5%)
LB move op cnt : 0
LB apply : 3.78 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.37 us (71.0%)
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 | 6.2697e+05 | 262144 | 1 | 4.181e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.056143375585725 (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.76 us (1.8%)
patch tree reduce : 1.54 us (0.4%)
gen split merge : 842.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.47 us (0.4%)
LB compute : 361.18 us (94.2%)
LB move op cnt : 0
LB apply : 5.03 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.74 us (68.1%)
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 | 7.8375e+05 | 262144 | 1 | 3.345e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.322186028020457 (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 : 5.92 us (1.7%)
patch tree reduce : 1.41 us (0.4%)
gen split merge : 832.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 901.00 ns (0.3%)
LB compute : 320.69 us (94.2%)
LB move op cnt : 0
LB apply : 4.07 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.51 us (72.8%)
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.8593e+05 | 262144 | 1 | 3.335e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.368784849605454 (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.78 us (1.9%)
patch tree reduce : 1.59 us (0.5%)
gen split merge : 912.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.22 us (0.3%)
LB compute : 330.21 us (94.1%)
LB move op cnt : 0
LB apply : 4.10 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.52 us (69.2%)
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 | 7.8476e+05 | 262144 | 1 | 3.340e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.344367964803034 (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 : 6.32 us (1.5%)
patch tree reduce : 1.35 us (0.3%)
gen split merge : 931.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.2%)
LB compute : 392.01 us (95.1%)
LB move op cnt : 0
LB apply : 4.15 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.29 us (75.4%)
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 | 7.8849e+05 | 262144 | 1 | 3.325e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.42052522900298 (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 : 5.94 us (1.6%)
patch tree reduce : 1.34 us (0.4%)
gen split merge : 922.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.05 us (0.3%)
LB compute : 352.43 us (94.7%)
LB move op cnt : 0
LB apply : 4.10 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.04 us (72.3%)
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 | 7.8454e+05 | 262144 | 1 | 3.341e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.336731555992902 (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.07 us (1.7%)
patch tree reduce : 1.58 us (0.4%)
gen split merge : 942.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 902.00 ns (0.2%)
LB compute : 344.11 us (94.5%)
LB move op cnt : 0
LB apply : 4.18 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.28 us (69.7%)
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.8126e+05 | 262144 | 1 | 3.355e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.267048388077892 (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 : 5.92 us (1.6%)
patch tree reduce : 1.39 us (0.4%)
gen split merge : 1.20 us (0.3%)
split / merge op : 0/0
apply split merge : 1.06 us (0.3%)
LB compute : 346.03 us (94.6%)
LB move op cnt : 0
LB apply : 3.89 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.41 us (69.0%)
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 | 7.8923e+05 | 262144 | 1 | 3.322e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.431634491507445 (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.28 us (1.7%)
patch tree reduce : 1.32 us (0.4%)
gen split merge : 812.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.07 us (0.3%)
LB compute : 352.80 us (94.6%)
LB move op cnt : 0
LB apply : 4.11 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.12 us (67.9%)
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 | 7.9408e+05 | 262144 | 1 | 3.301e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.531053665799824 (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 : 6.22 us (1.6%)
patch tree reduce : 1.52 us (0.4%)
gen split merge : 1.20 us (0.3%)
split / merge op : 0/0
apply split merge : 922.00 ns (0.2%)
LB compute : 379.87 us (94.9%)
LB move op cnt : 0
LB apply : 4.37 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.98 us (73.9%)
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 | 7.7914e+05 | 262144 | 1 | 3.365e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.21865665719788 (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.12 us (1.5%)
patch tree reduce : 1.45 us (0.4%)
gen split merge : 1.03 us (0.3%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.2%)
LB compute : 383.96 us (94.9%)
LB move op cnt : 0
LB apply : 3.92 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.76 us (70.5%)
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 | 7.0475e+05 | 262144 | 1 | 3.720e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.668909429376615 (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 : 5.90 us (1.5%)
patch tree reduce : 1.64 us (0.4%)
gen split merge : 922.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.00 us (0.3%)
LB compute : 365.31 us (94.8%)
LB move op cnt : 0
LB apply : 3.77 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.86 us (74.2%)
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.8269e+05 | 262144 | 1 | 3.349e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.289857174911205 (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.58 us (1.8%)
patch tree reduce : 1.49 us (0.4%)
gen split merge : 991.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 892.00 ns (0.2%)
LB compute : 350.48 us (94.6%)
LB move op cnt : 0
LB apply : 3.73 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.27 us (65.0%)
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 | 7.8344e+05 | 262144 | 1 | 3.346e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.304201536614737 (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 : 6.83 us (2.0%)
patch tree reduce : 1.32 us (0.4%)
gen split merge : 921.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.01 us (0.3%)
LB compute : 321.82 us (94.1%)
LB move op cnt : 0
LB apply : 3.91 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.63 us (66.2%)
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 | 7.9250e+05 | 262144 | 1 | 3.308e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.491523609245537 (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.60 us (1.7%)
patch tree reduce : 1.42 us (0.4%)
gen split merge : 912.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.40 us (0.4%)
LB compute : 360.40 us (94.5%)
LB move op cnt : 0
LB apply : 3.76 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.58 us (71.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 | 7.8469e+05 | 262144 | 1 | 3.341e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.32767519889461 (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 : 5.85 us (1.4%)
patch tree reduce : 1.64 us (0.4%)
gen split merge : 842.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.10 us (0.3%)
LB compute : 395.04 us (95.2%)
LB move op cnt : 0
LB apply : 3.99 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.65 us (72.3%)
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 | 6.9647e+05 | 262144 | 1 | 3.764e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.490944284488384 (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 : 6.27 us (1.9%)
patch tree reduce : 1.43 us (0.4%)
gen split merge : 932.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.17 us (0.4%)
LB compute : 308.42 us (94.0%)
LB move op cnt : 0
LB apply : 3.98 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.32 us (67.8%)
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 | 7.9396e+05 | 262144 | 1 | 3.302e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.518275245071393 (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.30 us (1.6%)
patch tree reduce : 1.72 us (0.4%)
gen split merge : 841.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 912.00 ns (0.2%)
LB compute : 376.47 us (95.0%)
LB move op cnt : 0
LB apply : 4.03 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.99 us (75.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 | 7.8711e+05 | 262144 | 1 | 3.330e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.37459092409132 (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 : 7.21 us (1.9%)
patch tree reduce : 1.71 us (0.4%)
gen split merge : 831.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 912.00 ns (0.2%)
LB compute : 360.90 us (94.2%)
LB move op cnt : 0
LB apply : 4.36 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.60 us (74.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 | 7.6826e+05 | 262144 | 1 | 3.412e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.981500494601066 (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.15 us (1.6%)
patch tree reduce : 1.44 us (0.4%)
gen split merge : 902.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.11 us (0.3%)
LB compute : 362.51 us (94.7%)
LB move op cnt : 0
LB apply : 3.84 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.63 us (73.0%)
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 | 7.8072e+05 | 262144 | 1 | 3.358e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.239674895024343 (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 : 5.97 us (1.6%)
patch tree reduce : 1.55 us (0.4%)
gen split merge : 922.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.39 us (0.4%)
LB compute : 354.02 us (94.7%)
LB move op cnt : 0
LB apply : 3.84 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.07 us (73.9%)
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 | 7.8411e+05 | 262144 | 1 | 3.343e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.30922205519939 (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.01 us (1.8%)
patch tree reduce : 1.41 us (0.4%)
gen split merge : 1.27 us (0.4%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.3%)
LB compute : 323.51 us (94.2%)
LB move op cnt : 0
LB apply : 3.87 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.14 us (71.3%)
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.7130e+05 | 262144 | 1 | 3.399e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.041802158657635 (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.07 us (1.5%)
patch tree reduce : 1.49 us (0.4%)
gen split merge : 822.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.05 us (0.3%)
LB compute : 375.10 us (94.9%)
LB move op cnt : 0
LB apply : 3.89 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.40 us (69.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.8610e+05 | 262144 | 1 | 3.335e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.348949573993245 (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 : 5.85 us (1.7%)
patch tree reduce : 1.36 us (0.4%)
gen split merge : 922.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 882.00 ns (0.3%)
LB compute : 333.11 us (94.4%)
LB move op cnt : 0
LB apply : 3.80 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.73 us (75.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.8507e+05 | 262144 | 1 | 3.339e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.32658330949074 (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.31 us (1.7%)
patch tree reduce : 1.82 us (0.5%)
gen split merge : 912.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 901.00 ns (0.2%)
LB compute : 350.37 us (94.5%)
LB move op cnt : 0
LB apply : 4.44 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.33 us (75.5%)
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 | 7.3048e+05 | 262144 | 1 | 3.589e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.190668284366682 (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 : 6.06 us (1.6%)
patch tree reduce : 1.60 us (0.4%)
gen split merge : 942.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 911.00 ns (0.2%)
LB compute : 367.38 us (95.0%)
LB move op cnt : 0
LB apply : 3.80 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.22 us (75.7%)
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 | 7.7294e+05 | 262144 | 1 | 3.392e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.072790721052723 (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.30 us (1.9%)
patch tree reduce : 1.32 us (0.4%)
gen split merge : 1.16 us (0.3%)
split / merge op : 0/0
apply split merge : 1.08 us (0.3%)
LB compute : 315.57 us (93.9%)
LB move op cnt : 0
LB apply : 4.02 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.32 us (68.6%)
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 | 7.8930e+05 | 262144 | 1 | 3.321e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.412334242643208 (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.10 us (1.6%)
patch tree reduce : 1.60 us (0.4%)
gen split merge : 932.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.09 us (0.3%)
LB compute : 362.42 us (94.5%)
LB move op cnt : 0
LB apply : 4.39 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.01 us (74.1%)
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 | 7.5768e+05 | 262144 | 1 | 3.460e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.75415613713793 (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 : 6.25 us (1.8%)
patch tree reduce : 1.58 us (0.5%)
gen split merge : 1.01 us (0.3%)
split / merge op : 0/0
apply split merge : 1.03 us (0.3%)
LB compute : 321.15 us (94.0%)
LB move op cnt : 0
LB apply : 4.04 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.51 us (70.7%)
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 | 7.6510e+05 | 262144 | 1 | 3.426e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.90800706312976 (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 : 6.38 us (1.9%)
patch tree reduce : 1.67 us (0.5%)
gen split merge : 962.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.07 us (0.3%)
LB compute : 324.02 us (94.0%)
LB move op cnt : 0
LB apply : 3.83 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.87 us (72.2%)
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.6190e+05 | 262144 | 1 | 3.441e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.840891834042901 (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.30 us (1.9%)
patch tree reduce : 1.44 us (0.4%)
gen split merge : 1.09 us (0.3%)
split / merge op : 0/0
apply split merge : 942.00 ns (0.3%)
LB compute : 313.37 us (93.9%)
LB move op cnt : 0
LB apply : 3.85 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.07 us (70.5%)
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 | 7.6091e+05 | 262144 | 1 | 3.445e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.819658604937286 (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 : 5.94 us (1.6%)
patch tree reduce : 1.35 us (0.4%)
gen split merge : 1.19 us (0.3%)
split / merge op : 0/0
apply split merge : 1.12 us (0.3%)
LB compute : 343.52 us (94.5%)
LB move op cnt : 0
LB apply : 3.83 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.37 us (70.3%)
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 | 7.7817e+05 | 262144 | 1 | 3.369e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.17805249653444 (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 : 5.92 us (1.6%)
patch tree reduce : 1.40 us (0.4%)
gen split merge : 911.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.13 us (0.3%)
LB compute : 353.21 us (94.8%)
LB move op cnt : 0
LB apply : 3.62 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.07 us (71.0%)
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 | 7.9034e+05 | 262144 | 1 | 3.317e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.430712556968075 (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 : 6.21 us (1.6%)
patch tree reduce : 1.59 us (0.4%)
gen split merge : 841.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.11 us (0.3%)
LB compute : 359.83 us (94.4%)
LB move op cnt : 0
LB apply : 4.51 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.46 us (72.6%)
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 | 7.6588e+05 | 262144 | 1 | 3.423e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.921810651795047 (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 : 6.63 us (1.7%)
patch tree reduce : 1.89 us (0.5%)
gen split merge : 942.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.10 us (0.3%)
LB compute : 374.79 us (94.8%)
LB move op cnt : 0
LB apply : 4.08 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.52 us (71.9%)
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 | 6.9541e+05 | 262144 | 1 | 3.770e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.456579252537761 (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 : 6.44 us (1.7%)
patch tree reduce : 1.51 us (0.4%)
gen split merge : 972.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.48 us (0.4%)
LB compute : 359.88 us (94.6%)
LB move op cnt : 0
LB apply : 3.70 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.28 us (70.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 | 7.7777e+05 | 262144 | 1 | 3.370e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.168463298103365 (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 : 5.65 us (1.4%)
patch tree reduce : 1.38 us (0.3%)
gen split merge : 942.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.06 us (0.3%)
LB compute : 384.60 us (95.2%)
LB move op cnt : 0
LB apply : 3.88 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.83 us (71.0%)
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 | 7.6318e+05 | 262144 | 1 | 3.435e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.86482115821617 (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 : 5.64 us (1.4%)
patch tree reduce : 1.66 us (0.4%)
gen split merge : 821.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.2%)
LB compute : 387.57 us (95.2%)
LB move op cnt : 0
LB apply : 3.93 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.95 us (71.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 | 7.7032e+05 | 262144 | 1 | 3.403e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.013243072160815 (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.73 us (2.1%)
patch tree reduce : 1.33 us (0.4%)
gen split merge : 911.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.36 us (0.4%)
LB compute : 307.36 us (93.8%)
LB move op cnt : 0
LB apply : 3.76 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.48 us (68.4%)
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 | 7.7794e+05 | 262144 | 1 | 3.370e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.171381534074776 (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 (1.9%)
patch tree reduce : 1.66 us (0.5%)
gen split merge : 992.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.00 us (0.3%)
LB compute : 315.44 us (93.9%)
LB move op cnt : 0
LB apply : 3.81 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.60 us (74.8%)
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 | 7.4815e+05 | 262144 | 1 | 3.504e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.552130042019709 (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.50 us (1.9%)
patch tree reduce : 1.76 us (0.5%)
gen split merge : 802.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 921.00 ns (0.3%)
LB compute : 315.59 us (94.1%)
LB move op cnt : 0
LB apply : 3.84 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.49 us (70.3%)
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 | 7.1755e+05 | 262144 | 1 | 3.653e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.916041474767072 (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.09 us (1.7%)
patch tree reduce : 1.51 us (0.4%)
gen split merge : 931.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 902.00 ns (0.2%)
LB compute : 349.21 us (94.6%)
LB move op cnt : 0
LB apply : 4.00 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.64 us (70.3%)
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 | 7.5162e+05 | 262144 | 1 | 3.488e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.62422986586019 (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.46 us (1.9%)
patch tree reduce : 1.45 us (0.4%)
gen split merge : 972.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 882.00 ns (0.3%)
LB compute : 317.67 us (93.9%)
LB move op cnt : 0
LB apply : 4.27 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.70 us (70.4%)
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 | 7.9389e+05 | 262144 | 1 | 3.302e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.50298737864337 (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.57 us (1.7%)
patch tree reduce : 2.06 us (0.5%)
gen split merge : 922.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 921.00 ns (0.2%)
LB compute : 357.28 us (94.5%)
LB move op cnt : 0
LB apply : 3.76 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.05 us (70.5%)
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 | 7.8233e+05 | 262144 | 1 | 3.351e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.262732917165728 (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 : 5.75 us (1.4%)
patch tree reduce : 1.51 us (0.4%)
gen split merge : 812.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 942.00 ns (0.2%)
LB compute : 393.03 us (95.2%)
LB move op cnt : 0
LB apply : 4.07 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.97 us (71.5%)
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 | 7.9136e+05 | 262144 | 1 | 3.313e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.450820659213004 (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.12 us (1.7%)
patch tree reduce : 1.66 us (0.4%)
gen split merge : 902.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 942.00 ns (0.3%)
LB compute : 349.82 us (94.5%)
LB move op cnt : 0
LB apply : 3.86 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.13 us (72.4%)
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 | 7.8233e+05 | 262144 | 1 | 3.351e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.263136190475713 (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.18 us (1.6%)
patch tree reduce : 1.37 us (0.4%)
gen split merge : 931.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.3%)
LB compute : 364.63 us (94.9%)
LB move op cnt : 0
LB apply : 3.96 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.63 us (73.0%)
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 | 7.5449e+05 | 262144 | 1 | 3.474e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.684726340397148 (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 : 6.09 us (1.6%)
patch tree reduce : 1.50 us (0.4%)
gen split merge : 901.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.29 us (0.3%)
LB compute : 353.50 us (94.7%)
LB move op cnt : 0
LB apply : 3.84 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.72 us (72.3%)
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 | 7.4340e+05 | 262144 | 1 | 3.526e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.45397248505831 (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.16 us (1.9%)
patch tree reduce : 1.40 us (0.4%)
gen split merge : 1.09 us (0.3%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.3%)
LB compute : 304.21 us (94.0%)
LB move op cnt : 0
LB apply : 3.54 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.05 us (68.9%)
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 | 7.8766e+05 | 262144 | 1 | 3.328e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.3740236887976 (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 : 6.26 us (1.6%)
patch tree reduce : 1.34 us (0.4%)
gen split merge : 1.14 us (0.3%)
split / merge op : 0/0
apply split merge : 1.00 us (0.3%)
LB compute : 361.56 us (94.7%)
LB move op cnt : 0
LB apply : 4.34 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.86 us (73.8%)
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 | 7.5252e+05 | 262144 | 1 | 3.484e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.643417361387186 (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.01 us (1.7%)
patch tree reduce : 1.46 us (0.4%)
gen split merge : 922.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.29 us (0.4%)
LB compute : 325.62 us (94.3%)
LB move op cnt : 0
LB apply : 3.94 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.53 us (71.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 | 7.9479e+05 | 262144 | 1 | 3.298e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.522044588108653 (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.00 us (1.8%)
patch tree reduce : 1.34 us (0.4%)
gen split merge : 1.09 us (0.3%)
split / merge op : 0/0
apply split merge : 1.01 us (0.3%)
LB compute : 308.93 us (94.0%)
LB move op cnt : 0
LB apply : 3.63 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.65 us (67.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 | 7.6128e+05 | 262144 | 1 | 3.443e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.825365376681246 (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 : 6.13 us (1.9%)
patch tree reduce : 1.67 us (0.5%)
gen split merge : 911.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 902.00 ns (0.3%)
LB compute : 303.86 us (94.0%)
LB move op cnt : 0
LB apply : 3.65 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.23 us (65.0%)
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 | 6.6292e+05 | 262144 | 1 | 3.954e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.780808782295015 (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.30 us (2.0%)
patch tree reduce : 1.38 us (0.4%)
gen split merge : 802.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.10 us (0.3%)
LB compute : 302.78 us (93.9%)
LB move op cnt : 0
LB apply : 3.66 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.26 us (67.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 | 7.3178e+05 | 262144 | 1 | 3.582e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.21234820050082 (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.80 us (1.8%)
patch tree reduce : 1.58 us (0.4%)
gen split merge : 852.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 922.00 ns (0.3%)
LB compute : 346.16 us (94.1%)
LB move op cnt : 0
LB apply : 4.27 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.43 us (73.7%)
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 | 7.7899e+05 | 262144 | 1 | 3.365e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.193751021826408 (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.12 us (1.8%)
patch tree reduce : 1.41 us (0.4%)
gen split merge : 1.02 us (0.3%)
split / merge op : 0/0
apply split merge : 882.00 ns (0.3%)
LB compute : 320.69 us (94.1%)
LB move op cnt : 0
LB apply : 3.90 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.78 us (67.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 | 7.8351e+05 | 262144 | 1 | 3.346e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.287866662176622 (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.62 us (1.9%)
patch tree reduce : 1.46 us (0.4%)
gen split merge : 841.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.19 us (0.3%)
LB compute : 325.45 us (94.1%)
LB move op cnt : 0
LB apply : 4.08 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.96 us (70.7%)
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 | 7.5076e+05 | 262144 | 1 | 3.492e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.607178522528894 (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 : 5.76 us (1.4%)
patch tree reduce : 1.48 us (0.4%)
gen split merge : 931.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.00 us (0.2%)
LB compute : 394.01 us (95.2%)
LB move op cnt : 0
LB apply : 4.48 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.17 us (76.0%)
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 | 7.9043e+05 | 262144 | 1 | 3.316e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.43223690692659 (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 : 5.69 us (1.4%)
patch tree reduce : 1.56 us (0.4%)
gen split merge : 862.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 861.00 ns (0.2%)
LB compute : 381.87 us (95.2%)
LB move op cnt : 0
LB apply : 3.92 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.84 us (70.6%)
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 | 7.8352e+05 | 262144 | 1 | 3.346e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.288686885247632 (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 : 5.85 us (1.4%)
patch tree reduce : 1.40 us (0.3%)
gen split merge : 1.08 us (0.3%)
split / merge op : 0/0
apply split merge : 921.00 ns (0.2%)
LB compute : 392.85 us (95.3%)
LB move op cnt : 0
LB apply : 4.21 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.97 us (71.5%)
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 | 7.4874e+05 | 262144 | 1 | 3.501e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.566007947877374 (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 : 7.18 us (1.9%)
patch tree reduce : 1.66 us (0.4%)
gen split merge : 922.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.11 us (0.3%)
LB compute : 349.80 us (94.3%)
LB move op cnt : 0
LB apply : 4.02 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.77 us (71.9%)
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 | 7.4877e+05 | 262144 | 1 | 3.501e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5.140272264077519 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 671.504554187 (s) [Godunov][rank=0]
Info: dump to _to_trash/ramses_kh/periodic_0023.vtk [VTK Dump][rank=0]
- took 33.24 ms, bandwidth = 1.23 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 : 6.39 us (1.8%)
patch tree reduce : 1.40 us (0.4%)
gen split merge : 821.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.3%)
LB compute : 337.61 us (94.5%)
LB move op cnt : 0
LB apply : 3.84 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.31 us (68.7%)
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 | 6.3720e+05 | 262144 | 1 | 4.114e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.247733555400883 (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.90 us (1.7%)
patch tree reduce : 1.62 us (0.4%)
gen split merge : 842.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 912.00 ns (0.2%)
LB compute : 377.91 us (94.4%)
LB move op cnt : 0
LB apply : 4.48 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.84 us (73.1%)
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 | 7.4067e+05 | 262144 | 1 | 3.539e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.399213132040698 (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 : 6.33 us (1.7%)
patch tree reduce : 1.72 us (0.5%)
gen split merge : 901.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.07 us (0.3%)
LB compute : 343.34 us (94.2%)
LB move op cnt : 0
LB apply : 4.11 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.07 us (73.9%)
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 | 7.2184e+05 | 262144 | 1 | 3.632e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.008140903970789 (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.44 us (1.8%)
patch tree reduce : 1.39 us (0.4%)
gen split merge : 841.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.13 us (0.3%)
LB compute : 339.45 us (94.5%)
LB move op cnt : 0
LB apply : 3.58 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.20 us (68.5%)
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 | 6.9133e+05 | 262144 | 1 | 3.792e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.374146435855549 (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.06 us (1.6%)
patch tree reduce : 1.45 us (0.4%)
gen split merge : 811.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.00 us (0.3%)
LB compute : 362.08 us (94.6%)
LB move op cnt : 0
LB apply : 4.10 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.78 us (72.5%)
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 | 7.3580e+05 | 262144 | 1 | 3.563e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.299282727798294 (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 : 6.60 us (1.9%)
patch tree reduce : 1.67 us (0.5%)
gen split merge : 831.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.11 us (0.3%)
LB compute : 329.60 us (94.2%)
LB move op cnt : 0
LB apply : 3.71 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.60 us (66.8%)
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.1011e+05 | 262144 | 1 | 3.692e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.76557906121576 (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.37 us (1.9%)
patch tree reduce : 1.73 us (0.5%)
gen split merge : 841.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.10 us (0.3%)
LB compute : 308.69 us (93.7%)
LB move op cnt : 0
LB apply : 4.21 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.74 us (73.2%)
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 | 7.5328e+05 | 262144 | 1 | 3.480e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.663909482188917 (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.46 us (1.8%)
patch tree reduce : 1.41 us (0.4%)
gen split merge : 811.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.00 us (0.3%)
LB compute : 331.47 us (94.5%)
LB move op cnt : 0
LB apply : 3.61 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.24 us (68.7%)
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 | 7.1552e+05 | 262144 | 1 | 3.664e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.879159790627089 (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.21 us (1.9%)
patch tree reduce : 1.46 us (0.4%)
gen split merge : 872.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 911.00 ns (0.3%)
LB compute : 307.77 us (94.0%)
LB move op cnt : 0
LB apply : 3.57 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.18 us (66.9%)
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 | 7.2918e+05 | 262144 | 1 | 3.595e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.163994328699824 (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.42 us (1.9%)
patch tree reduce : 1.78 us (0.5%)
gen split merge : 922.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.3%)
LB compute : 318.99 us (94.0%)
LB move op cnt : 0
LB apply : 3.90 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.46 us (69.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 | 7.0949e+05 | 262144 | 1 | 3.695e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.75513372479861 (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 : 5.72 us (1.6%)
patch tree reduce : 1.70 us (0.5%)
gen split merge : 902.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.09 us (0.3%)
LB compute : 346.26 us (94.6%)
LB move op cnt : 0
LB apply : 4.46 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.56 us (68.7%)
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 | 7.3831e+05 | 262144 | 1 | 3.551e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.355168619460999 (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.27 us (1.9%)
patch tree reduce : 1.60 us (0.5%)
gen split merge : 802.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.00 us (0.3%)
LB compute : 312.50 us (93.9%)
LB move op cnt : 0
LB apply : 3.88 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.44 us (69.1%)
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 | 7.4523e+05 | 262144 | 1 | 3.518e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.499756341623995 (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 : 6.69 us (2.0%)
patch tree reduce : 1.54 us (0.5%)
gen split merge : 841.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.11 us (0.3%)
LB compute : 309.37 us (93.6%)
LB move op cnt : 0
LB apply : 4.17 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.69 us (69.1%)
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 | 7.5023e+05 | 262144 | 1 | 3.494e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.60453204336534 (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.64 us (2.0%)
patch tree reduce : 1.47 us (0.4%)
gen split merge : 1.18 us (0.4%)
split / merge op : 0/0
apply split merge : 1.31 us (0.4%)
LB compute : 314.04 us (93.8%)
LB move op cnt : 0
LB apply : 3.61 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.46 us (70.4%)
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.2118e+05 | 262144 | 1 | 3.635e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.001018884959032 (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 : 11.20 us (3.4%)
patch tree reduce : 1.41 us (0.4%)
gen split merge : 932.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.12 us (0.3%)
LB compute : 304.85 us (92.4%)
LB move op cnt : 0
LB apply : 3.66 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.41 us (69.8%)
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 | 7.1818e+05 | 262144 | 1 | 3.650e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.939418405390281 (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.21 us (1.8%)
patch tree reduce : 1.42 us (0.4%)
gen split merge : 832.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.3%)
LB compute : 325.76 us (94.4%)
LB move op cnt : 0
LB apply : 3.73 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.11 us (67.9%)
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 | 7.2410e+05 | 262144 | 1 | 3.620e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.06337940357829 (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 : 5.96 us (1.7%)
patch tree reduce : 1.46 us (0.4%)
gen split merge : 1.18 us (0.3%)
split / merge op : 0/0
apply split merge : 1.05 us (0.3%)
LB compute : 335.88 us (94.2%)
LB move op cnt : 0
LB apply : 4.18 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.89 us (73.3%)
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 | 7.9511e+05 | 262144 | 1 | 3.297e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.541481900907133 (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 : 5.90 us (1.4%)
patch tree reduce : 1.32 us (0.3%)
gen split merge : 821.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.15 us (0.3%)
LB compute : 396.95 us (95.0%)
LB move op cnt : 0
LB apply : 4.34 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.84 us (71.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.8468e+05 | 262144 | 1 | 3.341e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.32543496631185 (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 : 6.19 us (1.6%)
patch tree reduce : 1.35 us (0.3%)
gen split merge : 922.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.10 us (0.3%)
LB compute : 375.28 us (94.9%)
LB move op cnt : 0
LB apply : 4.40 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.26 us (66.7%)
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 | 7.9011e+05 | 262144 | 1 | 3.318e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.439328537693218 (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.33 us (1.6%)
patch tree reduce : 1.35 us (0.3%)
gen split merge : 1.25 us (0.3%)
split / merge op : 0/0
apply split merge : 1.15 us (0.3%)
LB compute : 385.67 us (94.9%)
LB move op cnt : 0
LB apply : 4.23 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.51 us (69.3%)
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 | 7.7962e+05 | 262144 | 1 | 3.362e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.222156982023133 (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.60 us (1.5%)
patch tree reduce : 1.46 us (0.3%)
gen split merge : 1.16 us (0.3%)
split / merge op : 0/0
apply split merge : 1.11 us (0.3%)
LB compute : 407.20 us (95.0%)
LB move op cnt : 0
LB apply : 3.99 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.80 us (71.0%)
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 | 7.9123e+05 | 262144 | 1 | 3.313e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.464858631389195 (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 : 6.07 us (1.8%)
patch tree reduce : 1.48 us (0.4%)
gen split merge : 992.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 871.00 ns (0.3%)
LB compute : 309.84 us (93.8%)
LB move op cnt : 0
LB apply : 4.52 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.50 us (71.2%)
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 | 7.3427e+05 | 262144 | 1 | 3.570e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.280044704019787 (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.26 us (1.6%)
patch tree reduce : 1.45 us (0.4%)
gen split merge : 952.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.24 us (0.3%)
LB compute : 373.38 us (94.8%)
LB move op cnt : 0
LB apply : 4.12 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.68 us (72.2%)
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 | 7.5816e+05 | 262144 | 1 | 3.458e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.777639154520344 (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 (1.9%)
patch tree reduce : 1.49 us (0.4%)
gen split merge : 1.09 us (0.3%)
split / merge op : 0/0
apply split merge : 872.00 ns (0.3%)
LB compute : 314.58 us (93.8%)
LB move op cnt : 0
LB apply : 4.07 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.24 us (67.9%)
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 | 7.6164e+05 | 262144 | 1 | 3.442e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.850495445900002 (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.34 us (1.9%)
patch tree reduce : 1.70 us (0.5%)
gen split merge : 782.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 932.00 ns (0.3%)
LB compute : 318.53 us (94.0%)
LB move op cnt : 0
LB apply : 3.78 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.34 us (70.1%)
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 | 7.1114e+05 | 262144 | 1 | 3.686e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.79994728431929 (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 : 6.08 us (1.8%)
patch tree reduce : 1.79 us (0.5%)
gen split merge : 831.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.15 us (0.3%)
LB compute : 318.28 us (93.9%)
LB move op cnt : 0
LB apply : 4.12 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.56 us (71.7%)
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 | 7.7016e+05 | 262144 | 1 | 3.404e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.028877127424387 (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 : 6.11 us (1.7%)
patch tree reduce : 1.32 us (0.4%)
gen split merge : 962.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.00 us (0.3%)
LB compute : 340.71 us (94.6%)
LB move op cnt : 0
LB apply : 3.70 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.54 us (72.1%)
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 | 7.4439e+05 | 262144 | 1 | 3.522e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.493240166060438 (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.27 us (1.7%)
patch tree reduce : 1.37 us (0.4%)
gen split merge : 812.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.00 us (0.3%)
LB compute : 341.22 us (94.3%)
LB move op cnt : 0
LB apply : 4.15 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.08 us (72.2%)
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 | 7.4782e+05 | 262144 | 1 | 3.505e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.565078211586695 (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.22 us (1.6%)
patch tree reduce : 1.53 us (0.4%)
gen split merge : 931.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.08 us (0.3%)
LB compute : 357.04 us (94.5%)
LB move op cnt : 0
LB apply : 4.22 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.59 us (71.1%)
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 | 7.7715e+05 | 262144 | 1 | 3.373e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.176346794550597 (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 : 6.10 us (1.8%)
patch tree reduce : 1.60 us (0.5%)
gen split merge : 932.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.12 us (0.3%)
LB compute : 317.00 us (94.1%)
LB move op cnt : 0
LB apply : 4.17 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.38 us (68.2%)
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 | 7.2934e+05 | 262144 | 1 | 3.594e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.18196264205177 (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.27 us (1.8%)
patch tree reduce : 1.55 us (0.4%)
gen split merge : 1.22 us (0.3%)
split / merge op : 0/0
apply split merge : 1.10 us (0.3%)
LB compute : 332.53 us (94.1%)
LB move op cnt : 0
LB apply : 4.31 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.80 us (71.2%)
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 | 7.6292e+05 | 262144 | 1 | 3.436e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.881725793560394 (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.37 us (1.8%)
patch tree reduce : 1.66 us (0.5%)
gen split merge : 832.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.03 us (0.3%)
LB compute : 338.71 us (94.3%)
LB move op cnt : 0
LB apply : 3.86 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.10 us (68.2%)
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 | 7.1239e+05 | 262144 | 1 | 3.680e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.830717107923572 (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.46 us (1.7%)
patch tree reduce : 1.83 us (0.5%)
gen split merge : 831.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.3%)
LB compute : 362.06 us (94.5%)
LB move op cnt : 0
LB apply : 4.04 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.57 us (74.3%)
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 | 7.6379e+05 | 262144 | 1 | 3.432e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.90174482830696 (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.84 us (1.9%)
patch tree reduce : 1.44 us (0.4%)
gen split merge : 842.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.00 us (0.3%)
LB compute : 343.41 us (94.3%)
LB move op cnt : 0
LB apply : 3.76 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.85 us (72.3%)
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 | 7.8650e+05 | 262144 | 1 | 3.333e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.37547593403644 (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.82 us (1.7%)
patch tree reduce : 1.49 us (0.4%)
gen split merge : 872.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.16 us (0.3%)
LB compute : 379.61 us (94.5%)
LB move op cnt : 0
LB apply : 4.21 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.20 us (74.2%)
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 | 7.8579e+05 | 262144 | 1 | 3.336e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.361770508225394 (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 : 5.96 us (1.4%)
patch tree reduce : 1.50 us (0.4%)
gen split merge : 861.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.15 us (0.3%)
LB compute : 394.35 us (95.2%)
LB move op cnt : 0
LB apply : 4.04 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.11 us (74.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.4036e+05 | 262144 | 1 | 3.541e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.416839950024928 (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.71 us (1.8%)
patch tree reduce : 1.60 us (0.4%)
gen split merge : 1.30 us (0.3%)
split / merge op : 0/0
apply split merge : 1.05 us (0.3%)
LB compute : 361.04 us (94.6%)
LB move op cnt : 0
LB apply : 4.00 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.33 us (68.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 | 7.6918e+05 | 262144 | 1 | 3.408e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.018114858626536 (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.43 us (1.9%)
patch tree reduce : 1.59 us (0.5%)
gen split merge : 841.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.15 us (0.3%)
LB compute : 320.33 us (93.7%)
LB move op cnt : 0
LB apply : 4.68 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.40 us (77.1%)
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 | 7.4011e+05 | 262144 | 1 | 3.542e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.414041633133873 (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.51 us (1.9%)
patch tree reduce : 1.41 us (0.4%)
gen split merge : 1.14 us (0.3%)
split / merge op : 0/0
apply split merge : 892.00 ns (0.3%)
LB compute : 313.93 us (93.7%)
LB move op cnt : 0
LB apply : 4.06 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.39 us (69.5%)
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.8731e+05 | 262144 | 1 | 3.330e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.398275630320168 (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.10 us (1.6%)
patch tree reduce : 1.92 us (0.5%)
gen split merge : 922.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.30 us (0.4%)
LB compute : 349.65 us (94.4%)
LB move op cnt : 0
LB apply : 3.77 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.06 us (75.5%)
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 | 7.1424e+05 | 262144 | 1 | 3.670e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.877536006373198 (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 : 6.40 us (1.8%)
patch tree reduce : 1.73 us (0.5%)
gen split merge : 932.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 971.00 ns (0.3%)
LB compute : 344.25 us (94.3%)
LB move op cnt : 0
LB apply : 4.19 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.35 us (75.1%)
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 | 7.4700e+05 | 262144 | 1 | 3.509e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.560714353611726 (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.58 us (1.9%)
patch tree reduce : 1.50 us (0.4%)
gen split merge : 1.12 us (0.3%)
split / merge op : 0/0
apply split merge : 862.00 ns (0.2%)
LB compute : 328.37 us (94.1%)
LB move op cnt : 0
LB apply : 3.53 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.07 us (72.7%)
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 | 7.3653e+05 | 262144 | 1 | 3.559e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.341866606544125 (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 : 6.56 us (1.7%)
patch tree reduce : 1.47 us (0.4%)
gen split merge : 1.10 us (0.3%)
split / merge op : 0/0
apply split merge : 862.00 ns (0.2%)
LB compute : 354.02 us (94.3%)
LB move op cnt : 0
LB apply : 4.34 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.25 us (70.6%)
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.8136e+05 | 262144 | 1 | 3.355e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.274745886106803 (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.47 us (1.7%)
patch tree reduce : 1.68 us (0.4%)
gen split merge : 932.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.10 us (0.3%)
LB compute : 359.19 us (94.6%)
LB move op cnt : 0
LB apply : 4.04 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.65 us (71.5%)
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 | 7.6817e+05 | 262144 | 1 | 3.413e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.998932403813638 (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.08 us (1.4%)
patch tree reduce : 1.50 us (0.4%)
gen split merge : 812.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.2%)
LB compute : 408.51 us (95.3%)
LB move op cnt : 0
LB apply : 3.83 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.59 us (67.7%)
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 | 7.8830e+05 | 262144 | 1 | 3.325e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.417317192540633 (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 : 7.00 us (1.9%)
patch tree reduce : 1.37 us (0.4%)
gen split merge : 822.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.27 us (0.3%)
LB compute : 351.74 us (94.1%)
LB move op cnt : 0
LB apply : 4.56 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.44 us (73.9%)
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 | 7.0091e+05 | 262144 | 1 | 3.740e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.596688293375761 (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 : 7.56 us (2.0%)
patch tree reduce : 1.85 us (0.5%)
gen split merge : 892.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 922.00 ns (0.2%)
LB compute : 358.06 us (93.9%)
LB move op cnt : 0
LB apply : 4.45 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.07 us (73.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 | 7.3599e+05 | 262144 | 1 | 3.562e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.326349993873855 (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 : 6.59 us (1.6%)
patch tree reduce : 2.06 us (0.5%)
gen split merge : 1.15 us (0.3%)
split / merge op : 0/0
apply split merge : 942.00 ns (0.2%)
LB compute : 381.00 us (94.7%)
LB move op cnt : 0
LB apply : 3.94 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.19 us (68.0%)
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 | 7.8075e+05 | 262144 | 1 | 3.358e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.257577558070075 (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.96 us (1.8%)
patch tree reduce : 1.56 us (0.4%)
gen split merge : 1.17 us (0.3%)
split / merge op : 0/0
apply split merge : 872.00 ns (0.2%)
LB compute : 370.46 us (94.5%)
LB move op cnt : 0
LB apply : 4.29 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.45 us (75.4%)
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 | 7.6557e+05 | 262144 | 1 | 3.424e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.94089246610772 (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 : 5.91 us (1.6%)
patch tree reduce : 1.50 us (0.4%)
gen split merge : 812.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.03 us (0.3%)
LB compute : 356.18 us (94.5%)
LB move op cnt : 0
LB apply : 4.26 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.81 us (68.4%)
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.7695e+05 | 262144 | 1 | 3.374e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.177003966572475 (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.20 us (1.8%)
patch tree reduce : 1.38 us (0.4%)
gen split merge : 1.12 us (0.3%)
split / merge op : 0/0
apply split merge : 882.00 ns (0.3%)
LB compute : 320.09 us (94.0%)
LB move op cnt : 0
LB apply : 3.94 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.40 us (68.5%)
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.7843e+05 | 262144 | 1 | 3.368e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.207151509520244 (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.42 us (1.7%)
patch tree reduce : 1.70 us (0.4%)
gen split merge : 891.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 951.00 ns (0.2%)
LB compute : 359.98 us (94.3%)
LB move op cnt : 0
LB apply : 3.62 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.75 us (75.0%)
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 | 7.2005e+05 | 262144 | 1 | 3.641e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.991018346945607 (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 : 5.99 us (1.6%)
patch tree reduce : 1.38 us (0.4%)
gen split merge : 842.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.01 us (0.3%)
LB compute : 352.39 us (94.6%)
LB move op cnt : 0
LB apply : 4.23 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.97 us (70.3%)
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.8892e+05 | 262144 | 1 | 3.323e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.424286419464362 (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.29 us (1.7%)
patch tree reduce : 1.46 us (0.4%)
gen split merge : 951.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.16 us (0.3%)
LB compute : 353.72 us (94.7%)
LB move op cnt : 0
LB apply : 3.81 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.73 us (68.7%)
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.9231e+05 | 262144 | 1 | 3.309e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.49426096008285 (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.70 us (1.6%)
patch tree reduce : 1.49 us (0.4%)
gen split merge : 1.12 us (0.3%)
split / merge op : 0/0
apply split merge : 1.03 us (0.2%)
LB compute : 397.29 us (94.9%)
LB move op cnt : 0
LB apply : 4.08 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.99 us (74.5%)
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 | 7.7806e+05 | 262144 | 1 | 3.369e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.197106104066894 (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.21 us (1.7%)
patch tree reduce : 1.45 us (0.4%)
gen split merge : 931.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.00 us (0.3%)
LB compute : 336.49 us (94.3%)
LB move op cnt : 0
LB apply : 4.43 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.22 us (68.5%)
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 | 7.7995e+05 | 262144 | 1 | 3.361e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.235901027228063 (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.43 us (1.9%)
patch tree reduce : 1.62 us (0.5%)
gen split merge : 841.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.11 us (0.3%)
LB compute : 313.16 us (93.8%)
LB move op cnt : 0
LB apply : 3.89 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.06 us (70.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 | 7.7564e+05 | 262144 | 1 | 3.380e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.145661277241974 (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.16 us (1.6%)
patch tree reduce : 1.50 us (0.4%)
gen split merge : 821.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.12 us (0.3%)
LB compute : 371.44 us (94.9%)
LB move op cnt : 0
LB apply : 4.13 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.47 us (69.3%)
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 | 7.4609e+05 | 262144 | 1 | 3.514e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.530077253032998 (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.28 us (1.8%)
patch tree reduce : 1.34 us (0.4%)
gen split merge : 822.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.15 us (0.3%)
LB compute : 334.14 us (94.4%)
LB move op cnt : 0
LB apply : 3.76 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.23 us (73.4%)
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 | 7.2194e+05 | 262144 | 1 | 3.631e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.026996984746864 (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 : 6.18 us (1.7%)
patch tree reduce : 1.43 us (0.4%)
gen split merge : 831.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.3%)
LB compute : 335.34 us (94.5%)
LB move op cnt : 0
LB apply : 3.98 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.09 us (67.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 | 7.2875e+05 | 262144 | 1 | 3.597e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.168324708331898 (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.41 us (1.8%)
patch tree reduce : 1.37 us (0.4%)
gen split merge : 831.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.02 us (0.3%)
LB compute : 337.06 us (94.4%)
LB move op cnt : 0
LB apply : 3.84 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.29 us (69.4%)
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 | 7.9120e+05 | 262144 | 1 | 3.313e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.467760906755778 (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 : 6.17 us (1.6%)
patch tree reduce : 1.43 us (0.4%)
gen split merge : 942.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.27 us (0.3%)
LB compute : 366.31 us (94.9%)
LB move op cnt : 0
LB apply : 3.88 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.76 us (73.7%)
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 | 7.9117e+05 | 262144 | 1 | 3.313e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.46673426266127 (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.45 us (1.9%)
patch tree reduce : 1.35 us (0.4%)
gen split merge : 851.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.08 us (0.3%)
LB compute : 325.65 us (94.0%)
LB move op cnt : 0
LB apply : 3.86 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.02 us (70.3%)
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.1472e+05 | 262144 | 1 | 3.668e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.875340438328417 (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.05 us (1.8%)
patch tree reduce : 1.43 us (0.4%)
gen split merge : 842.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 871.00 ns (0.3%)
LB compute : 311.50 us (94.1%)
LB move op cnt : 0
LB apply : 3.75 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.47 us (70.3%)
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 | 7.3070e+05 | 262144 | 1 | 3.588e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.207524716459293 (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.57 us (1.7%)
patch tree reduce : 1.99 us (0.5%)
gen split merge : 952.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.3%)
LB compute : 364.57 us (94.3%)
LB move op cnt : 0
LB apply : 4.67 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.50 us (69.0%)
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.8910e+05 | 262144 | 1 | 3.322e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.42275733520084 (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.06 us (1.7%)
patch tree reduce : 1.47 us (0.4%)
gen split merge : 912.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.02 us (0.3%)
LB compute : 331.18 us (94.3%)
LB move op cnt : 0
LB apply : 4.09 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.37 us (66.8%)
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 | 7.8875e+05 | 262144 | 1 | 3.324e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.415266298914553 (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 : 7.20 us (2.0%)
patch tree reduce : 1.52 us (0.4%)
gen split merge : 1.04 us (0.3%)
split / merge op : 0/0
apply split merge : 952.00 ns (0.3%)
LB compute : 335.61 us (93.9%)
LB move op cnt : 0
LB apply : 4.42 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.15 us (66.6%)
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 | 7.8911e+05 | 262144 | 1 | 3.322e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.42241732982495 (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 : 6.44 us (1.7%)
patch tree reduce : 1.89 us (0.5%)
gen split merge : 871.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.00 us (0.3%)
LB compute : 355.63 us (94.5%)
LB move op cnt : 0
LB apply : 3.86 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.31 us (70.4%)
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 | 7.5166e+05 | 262144 | 1 | 3.488e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.642968534791052 (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.17 us (1.7%)
patch tree reduce : 1.41 us (0.4%)
gen split merge : 1.10 us (0.3%)
split / merge op : 0/0
apply split merge : 1.30 us (0.4%)
LB compute : 348.89 us (94.3%)
LB move op cnt : 0
LB apply : 4.33 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.91 us (71.6%)
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 | 7.9121e+05 | 262144 | 1 | 3.313e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.465727320224474 (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.12 us (1.8%)
patch tree reduce : 1.34 us (0.4%)
gen split merge : 832.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.03 us (0.3%)
LB compute : 317.94 us (94.2%)
LB move op cnt : 0
LB apply : 3.88 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.60 us (71.4%)
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 | 7.9341e+05 | 262144 | 1 | 3.304e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.51137830521067 (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.02 us (1.6%)
patch tree reduce : 1.44 us (0.4%)
gen split merge : 1.03 us (0.3%)
split / merge op : 0/0
apply split merge : 902.00 ns (0.2%)
LB compute : 363.37 us (94.7%)
LB move op cnt : 0
LB apply : 4.46 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.63 us (67.2%)
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.8289e+05 | 262144 | 1 | 3.348e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.292467695711686 (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.65 us (1.9%)
patch tree reduce : 1.46 us (0.4%)
gen split merge : 951.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 901.00 ns (0.3%)
LB compute : 326.63 us (93.7%)
LB move op cnt : 0
LB apply : 4.78 us (1.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.63 us (70.6%)
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 | 7.7863e+05 | 262144 | 1 | 3.367e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.203820214663914 (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.10 us (1.8%)
patch tree reduce : 1.48 us (0.4%)
gen split merge : 932.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.06 us (0.3%)
LB compute : 328.31 us (94.3%)
LB move op cnt : 0
LB apply : 3.83 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.47 us (69.5%)
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 | 7.7724e+05 | 262144 | 1 | 3.373e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.174770226453617 (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.42 us (1.8%)
patch tree reduce : 1.58 us (0.4%)
gen split merge : 821.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.3%)
LB compute : 343.16 us (94.5%)
LB move op cnt : 0
LB apply : 3.79 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.18 us (67.1%)
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 | 7.8909e+05 | 262144 | 1 | 3.322e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.421372074771366 (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.06 us (1.6%)
patch tree reduce : 1.31 us (0.4%)
gen split merge : 932.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.37 us (0.4%)
LB compute : 351.23 us (94.7%)
LB move op cnt : 0
LB apply : 3.59 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.69 us (68.4%)
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 | 7.9383e+05 | 262144 | 1 | 3.302e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.520077676647485 (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 (1.9%)
patch tree reduce : 1.68 us (0.5%)
gen split merge : 811.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.08 us (0.3%)
LB compute : 341.51 us (94.2%)
LB move op cnt : 0
LB apply : 3.81 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.35 us (68.9%)
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 | 7.9416e+05 | 262144 | 1 | 3.301e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.52707101367848 (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.19 us (1.5%)
patch tree reduce : 1.34 us (0.3%)
gen split merge : 821.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.2%)
LB compute : 377.89 us (90.3%)
LB move op cnt : 0
LB apply : 3.88 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.05 us (72.0%)
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 | 7.7960e+05 | 262144 | 1 | 3.363e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.224130272113495 (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.89 us (2.0%)
patch tree reduce : 1.42 us (0.4%)
gen split merge : 951.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.00 us (0.3%)
LB compute : 323.32 us (94.0%)
LB move op cnt : 0
LB apply : 3.87 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.86 us (72.3%)
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 | 7.8271e+05 | 262144 | 1 | 3.349e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.289133774416467 (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.36 us (1.8%)
patch tree reduce : 1.37 us (0.4%)
gen split merge : 1.04 us (0.3%)
split / merge op : 0/0
apply split merge : 1.12 us (0.3%)
LB compute : 329.30 us (94.1%)
LB move op cnt : 0
LB apply : 4.26 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.16 us (72.9%)
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 | 7.7155e+05 | 262144 | 1 | 3.398e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.05714004593401 (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.08 us (1.6%)
patch tree reduce : 1.45 us (0.4%)
gen split merge : 1.34 us (0.4%)
split / merge op : 0/0
apply split merge : 1.19 us (0.3%)
LB compute : 351.64 us (94.3%)
LB move op cnt : 0
LB apply : 4.04 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.53 us (72.7%)
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.9486e+05 | 262144 | 1 | 3.298e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.542049363245784 (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 : 5.95 us (1.5%)
patch tree reduce : 1.24 us (0.3%)
gen split merge : 1.07 us (0.3%)
split / merge op : 0/0
apply split merge : 1.11 us (0.3%)
LB compute : 377.05 us (95.0%)
LB move op cnt : 0
LB apply : 4.26 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.98 us (73.9%)
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 | 7.9304e+05 | 262144 | 1 | 3.306e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.504020115774434 (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 : 6.44 us (1.6%)
patch tree reduce : 1.36 us (0.3%)
gen split merge : 991.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.2%)
LB compute : 383.22 us (94.8%)
LB move op cnt : 0
LB apply : 3.90 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.06 us (74.2%)
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 | 7.8896e+05 | 262144 | 1 | 3.323e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.418878826320277 (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 (1.7%)
patch tree reduce : 1.52 us (0.4%)
gen split merge : 932.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.00 us (0.3%)
LB compute : 374.87 us (94.7%)
LB move op cnt : 0
LB apply : 4.75 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.66 us (71.0%)
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.8246e+05 | 262144 | 1 | 3.350e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.28351823207592 (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.43 us (1.5%)
patch tree reduce : 1.54 us (0.4%)
gen split merge : 1.03 us (0.2%)
split / merge op : 0/0
apply split merge : 1.07 us (0.3%)
LB compute : 400.69 us (95.0%)
LB move op cnt : 0
LB apply : 4.22 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.28 us (75.2%)
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 | 7.9029e+05 | 262144 | 1 | 3.317e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.446412017632017 (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.28 us (1.5%)
patch tree reduce : 1.41 us (0.3%)
gen split merge : 1.00 us (0.2%)
split / merge op : 0/0
apply split merge : 1.09 us (0.3%)
LB compute : 408.22 us (95.3%)
LB move op cnt : 0
LB apply : 4.20 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.27 us (75.3%)
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 | 7.8651e+05 | 262144 | 1 | 3.333e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.36779272917563 (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.41 us (1.8%)
patch tree reduce : 1.81 us (0.5%)
gen split merge : 851.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.19 us (0.3%)
LB compute : 329.92 us (93.9%)
LB move op cnt : 0
LB apply : 4.23 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.05 us (74.9%)
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 | 7.9086e+05 | 262144 | 1 | 3.315e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.45841829146357 (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 : 6.55 us (1.9%)
patch tree reduce : 1.72 us (0.5%)
gen split merge : 841.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.01 us (0.3%)
LB compute : 322.97 us (93.9%)
LB move op cnt : 0
LB apply : 3.95 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.74 us (72.6%)
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 | 7.7873e+05 | 262144 | 1 | 3.366e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.20613744415626 (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 : 5.81 us (1.7%)
patch tree reduce : 1.62 us (0.5%)
gen split merge : 851.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.03 us (0.3%)
LB compute : 331.52 us (94.2%)
LB move op cnt : 0
LB apply : 3.67 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.03 us (67.2%)
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.9161e+05 | 262144 | 1 | 3.312e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.8328131241377665 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 702.617693335 (s) [Godunov][rank=0]
Info: dump to _to_trash/ramses_kh/periodic_0024.vtk [VTK Dump][rank=0]
- took 33.06 ms, bandwidth = 1.24 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 : 6.84 us (1.6%)
patch tree reduce : 1.43 us (0.3%)
gen split merge : 922.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.02 us (0.2%)
LB compute : 420.25 us (95.3%)
LB move op cnt : 0
LB apply : 4.07 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.45 us (68.4%)
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 | 6.4908e+05 | 262144 | 1 | 4.039e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.507973182118343 (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 : 6.19 us (1.4%)
patch tree reduce : 1.43 us (0.3%)
gen split merge : 1.20 us (0.3%)
split / merge op : 0/0
apply split merge : 1.07 us (0.2%)
LB compute : 424.40 us (95.4%)
LB move op cnt : 0
LB apply : 4.23 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.44 us (70.4%)
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.8272e+05 | 262144 | 1 | 3.349e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.289368259597 (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.33 us (1.5%)
patch tree reduce : 1.32 us (0.3%)
gen split merge : 1.32 us (0.3%)
split / merge op : 0/0
apply split merge : 1.10 us (0.3%)
LB compute : 396.51 us (95.2%)
LB move op cnt : 0
LB apply : 3.77 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.48 us (70.2%)
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.4899e+05 | 262144 | 1 | 3.500e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.587516914466297 (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 : 5.68 us (1.5%)
patch tree reduce : 1.54 us (0.4%)
gen split merge : 832.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.3%)
LB compute : 372.32 us (95.1%)
LB move op cnt : 0
LB apply : 3.73 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.21 us (71.3%)
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 | 7.6698e+05 | 262144 | 1 | 3.418e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.962243937454293 (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.06 us (1.5%)
patch tree reduce : 1.37 us (0.3%)
gen split merge : 962.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.10 us (0.3%)
LB compute : 377.41 us (95.0%)
LB move op cnt : 0
LB apply : 3.99 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.69 us (68.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.8739e+05 | 262144 | 1 | 3.329e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.387225086842424 (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.12 us (1.5%)
patch tree reduce : 1.36 us (0.3%)
gen split merge : 1.02 us (0.2%)
split / merge op : 0/0
apply split merge : 1.12 us (0.3%)
LB compute : 388.70 us (94.9%)
LB move op cnt : 0
LB apply : 3.94 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.08 us (71.2%)
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 | 7.3909e+05 | 262144 | 1 | 3.547e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.38225086097954 (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 : 5.95 us (1.4%)
patch tree reduce : 1.72 us (0.4%)
gen split merge : 812.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.11 us (0.3%)
LB compute : 396.13 us (95.0%)
LB move op cnt : 0
LB apply : 4.22 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.10 us (73.2%)
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.7596e+05 | 262144 | 1 | 3.378e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.149826218251643 (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 : 6.01 us (1.5%)
patch tree reduce : 1.77 us (0.4%)
gen split merge : 822.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.2%)
LB compute : 379.43 us (94.8%)
LB move op cnt : 0
LB apply : 4.65 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.93 us (73.7%)
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 | 7.7609e+05 | 262144 | 1 | 3.378e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.152868656883243 (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 : 6.05 us (1.6%)
patch tree reduce : 1.56 us (0.4%)
gen split merge : 851.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 902.00 ns (0.2%)
LB compute : 360.92 us (94.5%)
LB move op cnt : 0
LB apply : 3.96 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.13 us (74.6%)
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 | 7.8452e+05 | 262144 | 1 | 3.341e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.328762861110945 (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 : 6.06 us (1.4%)
patch tree reduce : 1.59 us (0.4%)
gen split merge : 821.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.01 us (0.2%)
LB compute : 398.30 us (95.1%)
LB move op cnt : 0
LB apply : 4.38 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.83 us (71.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 | 7.7470e+05 | 262144 | 1 | 3.384e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.124740137166306 (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.04 us (1.6%)
patch tree reduce : 1.40 us (0.4%)
gen split merge : 841.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.04 us (0.3%)
LB compute : 365.75 us (95.0%)
LB move op cnt : 0
LB apply : 3.86 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.02 us (71.3%)
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 | 7.5738e+05 | 262144 | 1 | 3.461e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.764656211530895 (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.11 us (1.7%)
patch tree reduce : 1.48 us (0.4%)
gen split merge : 962.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.3%)
LB compute : 339.95 us (94.6%)
LB move op cnt : 0
LB apply : 3.77 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.31 us (69.8%)
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 | 7.0956e+05 | 262144 | 1 | 3.694e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.76978697582562 (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.25 us (1.6%)
patch tree reduce : 1.68 us (0.4%)
gen split merge : 832.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.3%)
LB compute : 361.64 us (94.6%)
LB move op cnt : 0
LB apply : 4.54 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.80 us (72.8%)
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 | 7.8375e+05 | 262144 | 1 | 3.345e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.31461764902173 (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.26 us (1.7%)
patch tree reduce : 1.57 us (0.4%)
gen split merge : 822.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.3%)
LB compute : 348.85 us (94.5%)
LB move op cnt : 0
LB apply : 4.37 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.93 us (73.4%)
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 | 7.8731e+05 | 262144 | 1 | 3.330e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.38935502437801 (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.37 us (1.7%)
patch tree reduce : 1.39 us (0.4%)
gen split merge : 1.01 us (0.3%)
split / merge op : 0/0
apply split merge : 1.20 us (0.3%)
LB compute : 356.80 us (94.5%)
LB move op cnt : 0
LB apply : 4.18 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.17 us (71.5%)
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 | 7.9120e+05 | 262144 | 1 | 3.313e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.471028149198176 (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 : 5.87 us (1.6%)
patch tree reduce : 1.50 us (0.4%)
gen split merge : 842.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.38 us (0.4%)
LB compute : 325.99 us (88.7%)
LB move op cnt : 0
LB apply : 4.53 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.87 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.8853e+05 | 262144 | 1 | 3.324e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.416126949310083 (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 : 5.71 us (1.7%)
patch tree reduce : 1.41 us (0.4%)
gen split merge : 842.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.09 us (0.3%)
LB compute : 313.71 us (94.1%)
LB move op cnt : 0
LB apply : 4.17 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.47 us (70.3%)
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 | 6.7830e+05 | 262144 | 1 | 3.865e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.121909847042872 (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 : 6.48 us (1.9%)
patch tree reduce : 1.51 us (0.4%)
gen split merge : 932.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.18 us (0.3%)
LB compute : 318.01 us (94.0%)
LB move op cnt : 0
LB apply : 3.68 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.01 us (66.3%)
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.5037e+05 | 262144 | 1 | 3.494e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.623141046290176 (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 : 5.81 us (1.5%)
patch tree reduce : 1.68 us (0.4%)
gen split merge : 922.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.18 us (0.3%)
LB compute : 372.65 us (95.0%)
LB move op cnt : 0
LB apply : 3.71 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.44 us (67.6%)
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.8715e+05 | 262144 | 1 | 3.330e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.389628090492142 (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.16 us (1.6%)
patch tree reduce : 1.41 us (0.4%)
gen split merge : 1.00 us (0.3%)
split / merge op : 0/0
apply split merge : 1.36 us (0.4%)
LB compute : 355.99 us (94.6%)
LB move op cnt : 0
LB apply : 4.26 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.20 us (67.9%)
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.8594e+05 | 262144 | 1 | 3.335e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.36531698217532 (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.43 us (1.8%)
patch tree reduce : 1.68 us (0.5%)
gen split merge : 851.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.35 us (0.4%)
LB compute : 335.03 us (94.2%)
LB move op cnt : 0
LB apply : 3.66 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.13 us (68.0%)
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 | 5.9784e+05 | 262144 | 1 | 4.385e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12.449383457625789 (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.44 us (1.9%)
patch tree reduce : 1.46 us (0.4%)
gen split merge : 982.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.00 us (0.3%)
LB compute : 312.38 us (93.7%)
LB move op cnt : 0
LB apply : 4.46 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.94 us (74.0%)
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.8179e+05 | 262144 | 1 | 3.353e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.280822178545478 (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 : 6.46 us (1.7%)
patch tree reduce : 1.61 us (0.4%)
gen split merge : 1.11 us (0.3%)
split / merge op : 0/0
apply split merge : 1.13 us (0.3%)
LB compute : 349.91 us (94.3%)
LB move op cnt : 0
LB apply : 3.93 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.80 us (71.0%)
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 | 7.4152e+05 | 262144 | 1 | 3.535e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.443052793380325 (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 : 5.90 us (1.7%)
patch tree reduce : 1.37 us (0.4%)
gen split merge : 1.02 us (0.3%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.3%)
LB compute : 337.51 us (94.5%)
LB move op cnt : 0
LB apply : 3.65 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.10 us (71.4%)
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 | 7.3099e+05 | 262144 | 1 | 3.586e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.224836079189261 (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 : 6.37 us (1.8%)
patch tree reduce : 1.49 us (0.4%)
gen split merge : 852.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.00 us (0.3%)
LB compute : 330.09 us (94.2%)
LB move op cnt : 0
LB apply : 3.89 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.70 us (68.5%)
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 | 7.5002e+05 | 262144 | 1 | 3.495e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.62224653297662 (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 : 6.75 us (1.8%)
patch tree reduce : 1.38 us (0.4%)
gen split merge : 792.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.33 us (0.4%)
LB compute : 352.50 us (94.3%)
LB move op cnt : 0
LB apply : 4.10 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.82 us (73.0%)
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 | 7.7787e+05 | 262144 | 1 | 3.370e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.20344572635411 (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 : 5.91 us (1.6%)
patch tree reduce : 1.65 us (0.4%)
gen split merge : 1.01 us (0.3%)
split / merge op : 0/0
apply split merge : 902.00 ns (0.2%)
LB compute : 354.39 us (94.5%)
LB move op cnt : 0
LB apply : 4.52 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.12 us (73.7%)
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 | 7.8471e+05 | 262144 | 1 | 3.341e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.346869596986004 (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 : 5.91 us (1.5%)
patch tree reduce : 1.52 us (0.4%)
gen split merge : 972.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.13 us (0.3%)
LB compute : 370.61 us (94.8%)
LB move op cnt : 0
LB apply : 4.34 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.45 us (69.3%)
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 | 7.1739e+05 | 262144 | 1 | 3.654e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.945556900580357 (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.01 us (1.7%)
patch tree reduce : 1.62 us (0.5%)
gen split merge : 962.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 941.00 ns (0.3%)
LB compute : 316.19 us (88.4%)
LB move op cnt : 0
LB apply : 4.33 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.92 us (72.4%)
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 | 6.9789e+05 | 262144 | 1 | 3.756e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.540501891581766 (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.60 us (1.7%)
patch tree reduce : 1.44 us (0.4%)
gen split merge : 822.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 872.00 ns (0.2%)
LB compute : 369.10 us (94.7%)
LB move op cnt : 0
LB apply : 4.15 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.60 us (71.4%)
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 | 7.8145e+05 | 262144 | 1 | 3.355e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.282608972541972 (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.79 us (1.7%)
patch tree reduce : 1.67 us (0.4%)
gen split merge : 972.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.10 us (0.3%)
LB compute : 377.10 us (94.5%)
LB move op cnt : 0
LB apply : 4.71 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.56 us (70.1%)
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 | 7.4405e+05 | 262144 | 1 | 3.523e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.504697206812095 (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 : 6.55 us (1.8%)
patch tree reduce : 1.36 us (0.4%)
gen split merge : 1.09 us (0.3%)
split / merge op : 0/0
apply split merge : 1.01 us (0.3%)
LB compute : 344.48 us (94.2%)
LB move op cnt : 0
LB apply : 4.38 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.19 us (69.7%)
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.7182e+05 | 262144 | 1 | 3.396e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.08458520528243 (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.32 us (1.7%)
patch tree reduce : 1.47 us (0.4%)
gen split merge : 932.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.10 us (0.3%)
LB compute : 356.26 us (94.5%)
LB move op cnt : 0
LB apply : 3.70 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.36 us (68.9%)
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 | 7.5114e+05 | 262144 | 1 | 3.490e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.654910498569865 (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.06 us (1.4%)
patch tree reduce : 1.35 us (0.3%)
gen split merge : 861.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.10 us (0.3%)
LB compute : 402.99 us (95.3%)
LB move op cnt : 0
LB apply : 3.90 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.88 us (72.1%)
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 | 6.5775e+05 | 262144 | 1 | 3.985e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.709724477838636 (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 : 5.91 us (1.4%)
patch tree reduce : 1.41 us (0.3%)
gen split merge : 1.02 us (0.2%)
split / merge op : 0/0
apply split merge : 1.10 us (0.3%)
LB compute : 395.34 us (94.9%)
LB move op cnt : 0
LB apply : 4.78 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.65 us (71.5%)
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 | 7.8201e+05 | 262144 | 1 | 3.352e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.30109409712853 (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 : 6.43 us (1.8%)
patch tree reduce : 1.43 us (0.4%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.13 us (0.3%)
LB compute : 332.96 us (94.2%)
LB move op cnt : 0
LB apply : 4.06 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.68 us (66.7%)
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 | 7.8539e+05 | 262144 | 1 | 3.338e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.37285509483055 (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 : 6.23 us (1.8%)
patch tree reduce : 1.40 us (0.4%)
gen split merge : 831.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.46 us (0.4%)
LB compute : 324.37 us (94.0%)
LB move op cnt : 0
LB apply : 3.96 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.52 us (70.1%)
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 | 7.8670e+05 | 262144 | 1 | 3.332e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.401723390772155 (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 : 6.22 us (1.7%)
patch tree reduce : 1.44 us (0.4%)
gen split merge : 862.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.13 us (0.3%)
LB compute : 353.95 us (94.6%)
LB move op cnt : 0
LB apply : 4.37 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.79 us (71.5%)
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 | 7.6886e+05 | 262144 | 1 | 3.410e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.031256646166533 (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 : 6.75 us (1.8%)
patch tree reduce : 1.52 us (0.4%)
gen split merge : 851.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 862.00 ns (0.2%)
LB compute : 354.39 us (94.4%)
LB move op cnt : 0
LB apply : 4.05 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.25 us (75.2%)
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 | 7.1202e+05 | 262144 | 1 | 3.682e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.847521179274061 (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 : 6.32 us (1.5%)
patch tree reduce : 1.33 us (0.3%)
gen split merge : 811.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.08 us (0.3%)
LB compute : 388.29 us (95.0%)
LB move op cnt : 0
LB apply : 4.40 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.71 us (72.6%)
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 | 7.6417e+05 | 262144 | 1 | 3.430e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.936524711938915 (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 : 5.60 us (1.5%)
patch tree reduce : 1.58 us (0.4%)
gen split merge : 831.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.10 us (0.3%)
LB compute : 343.89 us (94.6%)
LB move op cnt : 0
LB apply : 4.03 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.15 us (68.0%)
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 | 7.8158e+05 | 262144 | 1 | 3.354e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.301124109975643 (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 : 6.25 us (1.5%)
patch tree reduce : 1.51 us (0.4%)
gen split merge : 831.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 862.00 ns (0.2%)
LB compute : 383.66 us (95.0%)
LB move op cnt : 0
LB apply : 4.39 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.03 us (73.1%)
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 | 7.7831e+05 | 262144 | 1 | 3.368e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.234417048886865 (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.52 us (1.7%)
patch tree reduce : 1.52 us (0.4%)
gen split merge : 922.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.3%)
LB compute : 357.16 us (94.6%)
LB move op cnt : 0
LB apply : 4.23 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.14 us (67.5%)
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 | 7.7933e+05 | 262144 | 1 | 3.364e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.257534482181352 (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 : 5.84 us (1.6%)
patch tree reduce : 1.45 us (0.4%)
gen split merge : 922.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.02 us (0.3%)
LB compute : 353.87 us (94.4%)
LB move op cnt : 0
LB apply : 4.36 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.97 us (74.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 | 7.7573e+05 | 262144 | 1 | 3.379e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.18409483376546 (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 : 6.30 us (1.8%)
patch tree reduce : 1.45 us (0.4%)
gen split merge : 932.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.25 us (0.4%)
LB compute : 337.00 us (94.4%)
LB move op cnt : 0
LB apply : 3.57 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.74 us (71.7%)
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.8198e+05 | 262144 | 1 | 3.352e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.316068564177595 (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.15 us (1.6%)
patch tree reduce : 1.52 us (0.4%)
gen split merge : 832.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.21 us (0.3%)
LB compute : 354.12 us (94.7%)
LB move op cnt : 0
LB apply : 4.09 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.23 us (74.7%)
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.1480e+05 | 262144 | 1 | 3.667e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.91597683806034 (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.07 us (1.6%)
patch tree reduce : 1.32 us (0.4%)
gen split merge : 832.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.02 us (0.3%)
LB compute : 352.79 us (94.4%)
LB move op cnt : 0
LB apply : 4.48 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.12 us (74.9%)
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 | 7.5648e+05 | 262144 | 1 | 3.465e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.78762854470736 (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 : 5.93 us (1.8%)
patch tree reduce : 1.54 us (0.5%)
gen split merge : 921.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 901.00 ns (0.3%)
LB compute : 313.13 us (94.0%)
LB move op cnt : 0
LB apply : 4.10 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.64 us (69.2%)
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 | 7.8170e+05 | 262144 | 1 | 3.354e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.315699092612817 (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 : 5.86 us (1.6%)
patch tree reduce : 1.41 us (0.4%)
gen split merge : 841.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.02 us (0.3%)
LB compute : 343.20 us (94.6%)
LB move op cnt : 0
LB apply : 3.89 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.60 us (71.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 | 7.8700e+05 | 262144 | 1 | 3.331e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.428298315396372 (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.39 us (1.7%)
patch tree reduce : 1.52 us (0.4%)
gen split merge : 832.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.03 us (0.3%)
LB compute : 354.95 us (94.3%)
LB move op cnt : 0
LB apply : 4.56 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.61 us (75.3%)
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 | 7.8555e+05 | 262144 | 1 | 3.337e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.399976104971355 (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.06 us (1.6%)
patch tree reduce : 1.66 us (0.5%)
gen split merge : 972.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 882.00 ns (0.2%)
LB compute : 347.33 us (94.5%)
LB move op cnt : 0
LB apply : 4.60 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.24 us (71.8%)
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 | 7.8086e+05 | 262144 | 1 | 3.357e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.30410557230884 (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 : 5.74 us (1.5%)
patch tree reduce : 1.41 us (0.4%)
gen split merge : 1.00 us (0.3%)
split / merge op : 0/0
apply split merge : 1.00 us (0.3%)
LB compute : 372.06 us (94.9%)
LB move op cnt : 0
LB apply : 4.41 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.21 us (68.4%)
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 | 7.8897e+05 | 262144 | 1 | 3.323e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.4740638193229 (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.01 us (1.8%)
patch tree reduce : 1.38 us (0.4%)
gen split merge : 1.06 us (0.3%)
split / merge op : 0/0
apply split merge : 1.34 us (0.4%)
LB compute : 313.27 us (93.9%)
LB move op cnt : 0
LB apply : 4.23 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.07 us (65.7%)
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 | 7.8273e+05 | 262144 | 1 | 3.349e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.343059873413207 (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.17 us (1.7%)
patch tree reduce : 1.41 us (0.4%)
gen split merge : 792.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.12 us (0.3%)
LB compute : 337.02 us (94.4%)
LB move op cnt : 0
LB apply : 3.87 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.09 us (71.1%)
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 | 7.8225e+05 | 262144 | 1 | 3.351e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.33243074364925 (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.10 us (1.7%)
patch tree reduce : 1.68 us (0.5%)
gen split merge : 922.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.20 us (0.3%)
LB compute : 338.88 us (94.3%)
LB move op cnt : 0
LB apply : 4.20 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.82 us (72.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 | 6.6916e+05 | 262144 | 1 | 3.918e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.970771637984274 (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 : 6.05 us (1.7%)
patch tree reduce : 1.53 us (0.4%)
gen split merge : 1.05 us (0.3%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.3%)
LB compute : 332.69 us (94.4%)
LB move op cnt : 0
LB apply : 3.71 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.12 us (69.3%)
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 | 7.8036e+05 | 262144 | 1 | 3.359e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.29198246391298 (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 : 6.46 us (1.6%)
patch tree reduce : 1.72 us (0.4%)
gen split merge : 911.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.16 us (0.3%)
LB compute : 385.49 us (95.0%)
LB move op cnt : 0
LB apply : 3.85 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.96 us (70.4%)
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 | 7.8441e+05 | 262144 | 1 | 3.342e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.375979383467218 (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 : 5.73 us (1.4%)
patch tree reduce : 1.36 us (0.3%)
gen split merge : 942.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.14 us (0.3%)
LB compute : 397.94 us (95.2%)
LB move op cnt : 0
LB apply : 4.42 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.04 us (74.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 | 7.8329e+05 | 262144 | 1 | 3.347e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.35214134852089 (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 : 5.89 us (1.6%)
patch tree reduce : 1.57 us (0.4%)
gen split merge : 901.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.11 us (0.3%)
LB compute : 354.24 us (94.5%)
LB move op cnt : 0
LB apply : 4.15 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.79 us (70.9%)
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 | 7.8305e+05 | 262144 | 1 | 3.348e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.3464892364484 (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 : 6.17 us (1.5%)
patch tree reduce : 1.59 us (0.4%)
gen split merge : 821.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 991.00 ns (0.2%)
LB compute : 386.64 us (95.2%)
LB move op cnt : 0
LB apply : 3.89 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.84 us (73.5%)
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 | 7.7968e+05 | 262144 | 1 | 3.362e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.275795615556483 (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.12 us (1.6%)
patch tree reduce : 1.75 us (0.5%)
gen split merge : 852.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.3%)
LB compute : 352.14 us (94.5%)
LB move op cnt : 0
LB apply : 4.22 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.92 us (73.3%)
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 | 7.2450e+05 | 262144 | 1 | 3.618e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.123466349490185 (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.32 us (1.7%)
patch tree reduce : 1.63 us (0.4%)
gen split merge : 832.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.08 us (0.3%)
LB compute : 345.71 us (94.4%)
LB move op cnt : 0
LB apply : 4.04 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.20 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 | 7.1098e+05 | 262144 | 1 | 3.687e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.84074226269025 (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.69 us (1.7%)
patch tree reduce : 1.47 us (0.4%)
gen split merge : 841.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.29 us (0.3%)
LB compute : 377.75 us (94.7%)
LB move op cnt : 0
LB apply : 4.19 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.55 us (70.0%)
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 | 7.1845e+05 | 262144 | 1 | 3.649e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.996400603878827 (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 : 6.40 us (2.0%)
patch tree reduce : 1.39 us (0.4%)
gen split merge : 1.08 us (0.3%)
split / merge op : 0/0
apply split merge : 901.00 ns (0.3%)
LB compute : 305.87 us (93.9%)
LB move op cnt : 0
LB apply : 3.94 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.10 us (65.6%)
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 | 6.7145e+05 | 262144 | 1 | 3.904e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.015015332893974 (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.05 us (1.6%)
patch tree reduce : 1.38 us (0.4%)
gen split merge : 1.08 us (0.3%)
split / merge op : 0/0
apply split merge : 1.35 us (0.4%)
LB compute : 355.77 us (94.6%)
LB move op cnt : 0
LB apply : 4.14 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.87 us (72.8%)
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 | 7.7847e+05 | 262144 | 1 | 3.367e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.248355341934477 (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 : 5.84 us (1.6%)
patch tree reduce : 1.55 us (0.4%)
gen split merge : 1.00 us (0.3%)
split / merge op : 0/0
apply split merge : 921.00 ns (0.2%)
LB compute : 352.24 us (94.6%)
LB move op cnt : 0
LB apply : 4.18 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.88 us (68.6%)
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 | 7.7909e+05 | 262144 | 1 | 3.365e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.260982671966598 (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.11 us (1.5%)
patch tree reduce : 1.82 us (0.5%)
gen split merge : 961.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.2%)
LB compute : 374.32 us (94.8%)
LB move op cnt : 0
LB apply : 3.98 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.58 us (72.0%)
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.7204e+05 | 262144 | 1 | 3.395e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.113559551497826 (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 : 14.03 us (3.2%)
patch tree reduce : 1.53 us (0.3%)
gen split merge : 951.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 881.00 ns (0.2%)
LB compute : 410.16 us (93.6%)
LB move op cnt : 0
LB apply : 4.47 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.74 us (73.0%)
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.7742e+05 | 262144 | 1 | 3.372e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.225616235326942 (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.24 us (1.5%)
patch tree reduce : 1.44 us (0.4%)
gen split merge : 921.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 862.00 ns (0.2%)
LB compute : 383.83 us (95.0%)
LB move op cnt : 0
LB apply : 4.33 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.52 us (71.3%)
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 | 7.7399e+05 | 262144 | 1 | 3.387e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.153840985450252 (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.11 us (1.6%)
patch tree reduce : 1.72 us (0.5%)
gen split merge : 911.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.16 us (0.3%)
LB compute : 355.40 us (94.5%)
LB move op cnt : 0
LB apply : 3.97 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.54 us (67.8%)
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 | 7.7770e+05 | 262144 | 1 | 3.371e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.23102675494092 (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.09 us (1.6%)
patch tree reduce : 1.43 us (0.4%)
gen split merge : 992.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.04 us (0.3%)
LB compute : 351.18 us (94.5%)
LB move op cnt : 0
LB apply : 4.58 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.67 us (73.9%)
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 | 7.7984e+05 | 262144 | 1 | 3.361e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.275539491294758 (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.15 us (1.7%)
patch tree reduce : 1.34 us (0.4%)
gen split merge : 812.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.37 us (0.4%)
LB compute : 333.51 us (94.1%)
LB move op cnt : 0
LB apply : 4.47 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.69 us (71.9%)
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.7992e+05 | 262144 | 1 | 3.361e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.276983975659917 (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.84 us (1.8%)
patch tree reduce : 2.03 us (0.5%)
gen split merge : 892.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.04 us (0.3%)
LB compute : 367.58 us (94.3%)
LB move op cnt : 0
LB apply : 4.50 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.35 us (76.1%)
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 | 7.5968e+05 | 262144 | 1 | 3.451e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.854589232647252 (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.43 us (1.0%)
patch tree reduce : 1.52 us (0.2%)
gen split merge : 1.19 us (0.2%)
split / merge op : 0/0
apply split merge : 1.02 us (0.2%)
LB compute : 622.99 us (96.7%)
LB move op cnt : 0
LB apply : 4.08 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.84 us (74.1%)
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 | 7.8150e+05 | 262144 | 1 | 3.354e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.30984808327391 (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 : 5.91 us (1.5%)
patch tree reduce : 1.42 us (0.4%)
gen split merge : 942.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.3%)
LB compute : 366.85 us (94.8%)
LB move op cnt : 0
LB apply : 4.53 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.62 us (73.3%)
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 | 7.3909e+05 | 262144 | 1 | 3.547e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.424639007908931 (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 : 5.99 us (1.6%)
patch tree reduce : 1.56 us (0.4%)
gen split merge : 912.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.05 us (0.3%)
LB compute : 346.78 us (94.4%)
LB move op cnt : 0
LB apply : 4.63 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.06 us (72.9%)
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 | 7.5829e+05 | 262144 | 1 | 3.457e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.825283597379633 (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.35 us (1.6%)
patch tree reduce : 1.75 us (0.4%)
gen split merge : 22.26 us (5.7%)
split / merge op : 0/0
apply split merge : 1.34 us (0.3%)
LB compute : 349.98 us (89.2%)
LB move op cnt : 0
LB apply : 4.56 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.68 us (71.2%)
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.3662e+05 | 262144 | 1 | 3.559e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.372997161459034 (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.18 us (1.8%)
patch tree reduce : 1.33 us (0.4%)
gen split merge : 822.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.09 us (0.3%)
LB compute : 327.20 us (94.1%)
LB move op cnt : 0
LB apply : 4.47 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.42 us (69.3%)
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 | 7.8291e+05 | 262144 | 1 | 3.348e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.33918019460163 (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 : 5.88 us (1.7%)
patch tree reduce : 1.62 us (0.5%)
gen split merge : 932.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.00 us (0.3%)
LB compute : 316.06 us (94.0%)
LB move op cnt : 0
LB apply : 4.20 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.41 us (68.7%)
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 | 7.8551e+05 | 262144 | 1 | 3.337e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.393512996142324 (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.29 us (1.8%)
patch tree reduce : 1.45 us (0.4%)
gen split merge : 1.05 us (0.3%)
split / merge op : 0/0
apply split merge : 1.11 us (0.3%)
LB compute : 334.89 us (94.3%)
LB move op cnt : 0
LB apply : 3.81 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.99 us (69.5%)
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 | 7.8525e+05 | 262144 | 1 | 3.338e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.38805542511228 (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.87 us (1.7%)
patch tree reduce : 1.65 us (0.4%)
gen split merge : 1.19 us (0.3%)
split / merge op : 0/0
apply split merge : 1.01 us (0.3%)
LB compute : 379.41 us (94.6%)
LB move op cnt : 0
LB apply : 4.39 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.82 us (72.6%)
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 | 6.5662e+05 | 262144 | 1 | 3.992e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.703721341999747 (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 : 6.06 us (1.7%)
patch tree reduce : 1.30 us (0.4%)
gen split merge : 942.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1.04 us (0.3%)
LB compute : 343.12 us (94.5%)
LB move op cnt : 0
LB apply : 4.11 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.28 us (67.9%)
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 | 7.8258e+05 | 262144 | 1 | 3.350e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.332674988281564 (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 : 6.25 us (1.5%)
patch tree reduce : 1.52 us (0.4%)
gen split merge : 962.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.10 us (0.3%)
LB compute : 364.82 us (89.8%)
LB move op cnt : 0
LB apply : 4.01 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.98 us (70.9%)
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 | 7.8454e+05 | 262144 | 1 | 3.341e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.373742370802052 (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.77 us (1.9%)
patch tree reduce : 1.72 us (0.5%)
gen split merge : 1.01 us (0.3%)
split / merge op : 0/0
apply split merge : 882.00 ns (0.2%)
LB compute : 344.01 us (94.4%)
LB move op cnt : 0
LB apply : 3.78 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.63 us (69.1%)
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 | 6.4833e+05 | 262144 | 1 | 4.043e-01 | 0.0% | 0.1% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.531063759846448 (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 : 5.95 us (1.4%)
patch tree reduce : 1.71 us (0.4%)
gen split merge : 1.11 us (0.3%)
split / merge op : 0/0
apply split merge : 892.00 ns (0.2%)
LB compute : 411.93 us (95.2%)
LB move op cnt : 0
LB apply : 4.22 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.75 us (71.3%)
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 | 7.7888e+05 | 262144 | 1 | 3.366e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.255922486044472 (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 : 5.79 us (1.3%)
patch tree reduce : 1.59 us (0.4%)
gen split merge : 972.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 902.00 ns (0.2%)
LB compute : 426.22 us (95.5%)
LB move op cnt : 0
LB apply : 4.15 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.70 us (68.1%)
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 | 7.7825e+05 | 262144 | 1 | 3.368e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 16.242868324075136 (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 : 6.05 us (1.5%)
patch tree reduce : 1.40 us (0.4%)
gen split merge : 942.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.00 us (0.3%)
LB compute : 372.19 us (94.7%)
LB move op cnt : 0
LB apply : 4.57 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.75 us (71.0%)
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 | 7.3308e+05 | 262144 | 1 | 3.576e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 15.300423333492382 (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.39 us (1.6%)
patch tree reduce : 1.68 us (0.4%)
gen split merge : 932.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1.08 us (0.3%)
LB compute : 383.49 us (94.8%)
LB move op cnt : 0
LB apply : 4.34 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.96 us (74.7%)
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 | 7.8491e+05 | 262144 | 1 | 3.340e-01 | 0.0% | 0.2% 0.0% | 2.15 GB | 2.15 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 2.1373443408679393 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 733.748204405 (s) [Godunov][rank=0]
Total running time of the script: (12 minutes 16.476 seconds)
Estimated memory usage: 1132 MB