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 )
Setup parameters
27 # plot
28 nx, ny = 512, 512
29
30 # Physical parameters
31 vslip = 1 # slip speed between the two layers
32
33 rho_1 = 1
34 fact = 2 / 3
35 rho_2 = rho_1 / (fact**3)
36
37 y_interface = 0.5
38 xs = 1
39
40 P_1 = 3.5
41 P_2 = 3.5
42
43 gamma = 5.0 / 3.0
44
45 # resolution
46 multx = 1
47 multy = 1
48 multz = 1
49
50 sz = 1 << 1
51 base = 32
52
53 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
70 if shamrock.sys.world_rank() == 0:
71 os.makedirs(sim_folder, exist_ok=True)
Simulation related function#
Utility for plotting, animations, and the simulation itself
80 def make_cartesian_coords(nx, ny, z_val, min_x, max_x, min_y, max_y):
81 # Create the cylindrical coordinate grid
82 x_vals = np.linspace(min_x, max_x, nx)
83 y_vals = np.linspace(min_y, max_y, ny)
84
85 # Create meshgrid
86 x_grid, y_grid = np.meshgrid(x_vals, y_vals)
87
88 # Convert to Cartesian coordinates (z = 0 for a disc in the xy-plane)
89 z_grid = z_val * np.ones_like(x_grid)
90
91 # Flatten and stack to create list of positions
92 positions = np.column_stack([x_grid.ravel(), y_grid.ravel(), z_grid.ravel()])
93
94 return [tuple(pos) for pos in positions]
95
96
97 positions = make_cartesian_coords(nx, ny, 0.5, 0, 1 - 1e-6, 0, 1 - 1e-6)
98
99
100 def plot_rho_slice_cartesian(metadata, arr_rho_pos, iplot, case_name, dpi=200):
101 ext = metadata["extent"]
102
103 my_cmap = matplotlib.colormaps["gist_heat"].copy() # copy the default cmap
104 my_cmap.set_bad(color="black")
105
106 arr_rho_pos = np.array(arr_rho_pos).reshape(nx, ny)
107
108 ampl = 1e-5
109
110 plt.figure(dpi=dpi)
111 res = plt.imshow(
112 arr_rho_pos,
113 cmap=my_cmap,
114 origin="lower",
115 extent=ext,
116 aspect="auto",
117 )
118 plt.xlabel("x")
119 plt.ylabel("y")
120 plt.title(f"t = {metadata['time']:0.3f} [seconds]")
121 cbar = plt.colorbar(res, extend="both")
122 cbar.set_label(r"$\rho$ [code unit]")
123 plt.savefig(os.path.join(sim_folder, f"rho_{case_name}_{iplot:04d}.png"))
124 plt.close()
125
126
127 from shamrock.utils.plot import show_image_sequence
128
129
130 def run_case(set_bc_func, case_name):
131 ctx = shamrock.Context()
132 ctx.pdata_layout_new()
133
134 model = shamrock.get_Model_Ramses(context=ctx, vector_type="f64_3", grid_repr="i64_3")
135
136 cfg = model.gen_default_config()
137 cfg.set_scale_factor(scale_fact)
138 set_bc_func(cfg)
139
140 # cfg.set_riemann_solver_rusanov()
141 # cfg.set_riemann_solver_hll()
142 cfg.set_riemann_solver_hllc()
143
144 # cfg.set_slope_lim_none()
145 # cfg.set_slope_lim_vanleer_f()
146 # cfg.set_slope_lim_vanleer_std()
147 # cfg.set_slope_lim_vanleer_sym()
148
149 # mass_crit = 0.00010299682617187501 / 2
150 # cfg.set_amr_mode_density_based(crit_mass=mass_crit)
151 cfg.set_slope_lim_minmod()
152 cfg.set_face_time_interpolation(True)
153 cfg.set_eos_gamma(gamma)
154 model.set_solver_config(cfg)
155
156 name = f"test_{case_name}"
157
158 model.init_scheduler(int(1e7), 1)
159 model.make_base_grid((0, 0, 0), (sz, sz, sz), (base * multx, base * multy, base * multz))
160
161 u_cs1 = rho_1 / (gamma * (gamma - 1))
162 u_cs2 = rho_2 / (gamma * (gamma - 1))
163
164 def rho_map(rmin, rmax):
165 x, y, z = rmin
166
167 if y > y_interface:
168 return rho_2
169 else:
170 return rho_1
171
172 def rhovel_map(rmin, rmax):
173 rho = rho_map(rmin, rmax)
174
175 x, y, z = rmin
176
177 ampl = 0.01
178 n = 2
179 pert = np.sin(2 * np.pi * n * x / (xs))
180
181 sigma = 0.05 / (2**0.5)
182 gauss1 = np.exp(-((y - y_interface) ** 2) / (2 * sigma * sigma))
183 gauss2 = np.exp(-((y + y_interface) ** 2) / (2 * sigma * sigma))
184 pert *= gauss1 + gauss2
185
186 # Alternative formula (See T. Tricco paper)
187 # interf_sz = ys/32
188 # vx = np.arctan(y/interf_sz)/np.pi
189
190 vx = 0
191 if np.abs(y) > y_interface:
192 vx = vslip / 2
193 else:
194 vx = -vslip / 2
195
196 return (vx * rho, ampl * pert * rho, 0)
197
198 def rhoetot_map(rmin, rmax):
199 rho = rho_map(rmin, rmax)
200 rhovel = rhovel_map(rmin, rmax)
201
202 rhovel2 = rhovel[0] * rhovel[0] + rhovel[1] * rhovel[1] + rhovel[2] * rhovel[2]
203 rhoekin = 0.5 * rhovel2 / rho
204
205 x, y, z = rmin
206
207 if y > y_interface:
208 P = P_2
209 else:
210 P = P_1
211
212 return rhoekin + P / (gamma - 1)
213
214 model.set_field_value_lambda_f64("rho", rho_map)
215 model.set_field_value_lambda_f64("rhoetot", rhoetot_map)
216 model.set_field_value_lambda_f64_3("rhovel", rhovel_map)
217
218 # model.evolve_once(0,0.1)
219 fact = 25
220 tmax = 0.127 * fact
221 all_t = np.linspace(0, tmax, fact)
222
223 def plot(t, iplot):
224 metadata = {"extent": [0, 1, 0, 1], "time": t}
225 arr_rho_pos = model.render_slice("rho", "f64", positions)
226 plot_rho_slice_cartesian(metadata, arr_rho_pos, iplot, case_name)
227
228 current_time = 0.0
229 for i, t in enumerate(all_t):
230 model.dump_vtk(os.path.join(sim_folder, f"{case_name}_{i:04d}.vtk"))
231 model.evolve_until(t)
232 current_time = t
233 plot(current_time, i)
234
235 plot(current_time, len(all_t))
236
237 # If the animation is not returned only a static image will be shown in the doc
238 ani = show_image_sequence(os.path.join(sim_folder, f"rho_{case_name}_*.png"), render_gif=True)
239
240 if shamrock.sys.world_rank() == 0:
241 # To save the animation using Pillow as a gif
242 writer = animation.PillowWriter(fps=15, metadata=dict(artist="Me"), bitrate=1800)
243 ani.save(os.path.join(sim_folder, f"rho_{case_name}.gif"), writer=writer)
244
245 return ani
246 else:
247 return None
Run the actual simulation with periodic boundary conditions
254 def run_case_periodic():
255 def set_bc_func(cfg):
256 cfg.set_boundary_condition("x", "periodic")
257 cfg.set_boundary_condition("y", "periodic")
258 cfg.set_boundary_condition("z", "periodic")
259
260 return run_case(set_bc_func, "periodic")
261
262
263 ani_periodic = run_case_periodic()
264 plt.show()
Info: pushing data in scheduler, N = 32768 [DataInserterUtility][rank=0]
Info: reattributing data ... [DataInserterUtility][rank=0]
Info: reattributing data done in 10.27 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 : 26.00 us (85.9%)
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 0 min = 0 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 0 min = 0 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 0
max = 0
avg = 0
efficiency = ???%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1733.00 ns (0.1%)
patch tree reduce : 1603.00 ns (0.1%)
gen split merge : 922.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 852.00 ns (0.1%)
LB compute : 1333.87 us (99.0%)
LB move op cnt : 0
LB apply : 4.26 us (0.3%)
Info: Compute load ... [DataInserterUtility][rank=0]
Info: run scheduler step ... [DataInserterUtility][rank=0]
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.79 us (68.6%)
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1903.00 ns (0.1%)
patch tree reduce : 431.00 ns (0.0%)
gen split merge : 441.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 320.00 ns (0.0%)
LB compute : 1484.85 us (99.5%)
LB move op cnt : 0
LB apply : 1903.00 ns (0.1%)
Info: Compute load ... [DataInserterUtility][rank=0]
Info: run scheduler step ... [DataInserterUtility][rank=0]
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.65 us (68.5%)
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 1533.00 ns (0.1%)
patch tree reduce : 471.00 ns (0.0%)
gen split merge : 351.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 340.00 ns (0.0%)
LB compute : 1237.34 us (99.4%)
LB move op cnt : 0
LB apply : 2.04 us (0.2%)
Info: --------------------------------------------- [DataInserterUtility][rank=0]
Info: dump to _to_trash/ramses_kh/periodic_0000.vtk [VTK Dump][rank=0]
- took 83.86 ms, bandwidth = 465.09 MB/s
Info: time since start : 12.131261815 (s) [Godunov][rank=0]
Info: dump to _to_trash/ramses_kh/periodic_0001.vtk [VTK Dump][rank=0]
- took 70.77 ms, bandwidth = 551.08 MB/s
amr::Godunov: t = 0, dt = 0
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.3%)
patch tree reduce : 1864.00 ns (0.3%)
gen split merge : 962.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 892.00 ns (0.2%)
LB compute : 551.75 us (96.4%)
LB move op cnt : 0
LB apply : 3.37 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.73 us (71.4%)
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 | 5.8731e+05 | 262144 | 1 | 4.464e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0, dt = 0.001607880030058949
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1833.00 ns (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.38 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.97 us (75.3%)
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 | 6.2664e+05 | 262144 | 1 | 4.183e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.836848785073965 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.001607880030058949, dt = 0.0016077839676889658
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.6%)
patch tree reduce : 1813.00 ns (0.4%)
gen split merge : 982.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1303.00 ns (0.3%)
LB compute : 397.21 us (95.0%)
LB move op cnt : 0
LB apply : 3.64 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.01 us (75.2%)
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 | 6.3430e+05 | 262144 | 1 | 4.133e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.004993500600504 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.003215663997747915, dt = 0.001607668096192173
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (0.1%)
patch tree reduce : 2.15 us (0.0%)
gen split merge : 992.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 902.00 ns (0.0%)
LB compute : 5.45 ms (99.6%)
LB move op cnt : 0
LB apply : 4.22 us (0.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.73 us (76.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 | 6.1870e+05 | 262144 | 1 | 4.237e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.659654145850917 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.004823332093940088, dt = 0.001607558666139011
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.0%)
patch tree reduce : 1954.00 ns (0.3%)
gen split merge : 932.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 1032.00 ns (0.2%)
LB compute : 629.53 us (96.8%)
LB move op cnt : 0
LB apply : 4.09 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.15 us (77.2%)
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 | 6.2613e+05 | 262144 | 1 | 4.187e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.822839200233167 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0064308907600790985, dt = 0.0016074532609576142
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.0%)
patch tree reduce : 1703.00 ns (0.3%)
gen split merge : 962.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 872.00 ns (0.1%)
LB compute : 636.43 us (96.9%)
LB move op cnt : 0
LB apply : 3.62 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.23 us (74.7%)
Info: cfl dt = 0.0016073499018780452 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 6.2623e+05 | 262144 | 1 | 4.186e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.823960967374525 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.008038344021036713, dt = 0.0016073499018780452
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1754.00 ns (0.5%)
gen split merge : 962.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1292.00 ns (0.3%)
LB compute : 368.62 us (94.7%)
LB move op cnt : 0
LB apply : 3.64 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.67 us (73.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 | 6.2642e+05 | 262144 | 1 | 4.185e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.827437846293138 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.009645693922914759, dt = 0.0016072545799563419
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.45 us (1.9%)
patch tree reduce : 2.00 us (0.5%)
gen split merge : 952.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 931.00 ns (0.2%)
LB compute : 365.51 us (94.4%)
LB move op cnt : 0
LB apply : 3.71 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.88 us (75.5%)
Info: cfl dt = 0.0016071590789263407 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 6.2857e+05 | 262144 | 1 | 4.171e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.873898036922586 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.011252948502871101, dt = 0.0016071590789263407
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.4%)
patch tree reduce : 1893.00 ns (0.4%)
gen split merge : 932.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 941.00 ns (0.2%)
LB compute : 439.76 us (95.4%)
LB move op cnt : 0
LB apply : 4.09 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.62 us (79.2%)
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 | 6.2593e+05 | 262144 | 1 | 4.188e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.81484677053194 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.012860107581797443, dt = 0.0016070720238733167
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.4%)
patch tree reduce : 2.26 us (0.5%)
gen split merge : 942.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.2%)
LB compute : 444.83 us (95.5%)
LB move op cnt : 0
LB apply : 3.73 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.60 us (76.7%)
Info: cfl dt = 0.0016069786216085856 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 6.1825e+05 | 262144 | 1 | 4.240e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.644692315291623 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.01446717960567076, dt = 0.0016069786216085856
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.3%)
patch tree reduce : 1764.00 ns (0.3%)
gen split merge : 962.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1012.00 ns (0.2%)
LB compute : 492.62 us (95.9%)
LB move op cnt : 0
LB apply : 3.91 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.43 us (77.5%)
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 | 6.2242e+05 | 262144 | 1 | 4.212e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.735974480016115 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.016074158227279346, dt = 0.00160688048413795
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (0.6%)
patch tree reduce : 1813.00 ns (0.2%)
gen split merge : 962.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 971.00 ns (0.1%)
LB compute : 1005.65 us (98.0%)
LB move op cnt : 0
LB apply : 3.79 us (0.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.02 us (76.0%)
Info: cfl dt = 0.0016067926349468886 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 6.2497e+05 | 262144 | 1 | 4.195e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.791225250077991 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.017681038711417296, dt = 0.0016067926349468886
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1944.00 ns (0.5%)
gen split merge : 952.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 872.00 ns (0.2%)
LB compute : 401.61 us (95.2%)
LB move op cnt : 0
LB apply : 3.91 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.18 us (73.9%)
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 | 6.2498e+05 | 262144 | 1 | 4.194e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.790872783945854 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.019287831346364186, dt = 0.0016067071094612423
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.9%)
patch tree reduce : 1913.00 ns (0.5%)
gen split merge : 931.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.3%)
LB compute : 347.90 us (94.2%)
LB move op cnt : 0
LB apply : 3.92 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.06 us (74.6%)
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 | 6.2560e+05 | 262144 | 1 | 4.190e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.803703518852219 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.020894538455825427, dt = 0.0016066216576594364
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.5%)
patch tree reduce : 1963.00 ns (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 : 416.52 us (95.1%)
LB move op cnt : 0
LB apply : 3.90 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.10 us (76.3%)
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 | 6.2574e+05 | 262144 | 1 | 4.189e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.805997659469266 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.022501160113484863, dt = 0.0016065437952155752
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1944.00 ns (0.5%)
gen split merge : 901.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.3%)
LB compute : 362.82 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.92 us (75.2%)
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 | 6.2869e+05 | 262144 | 1 | 4.170e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.870395336731255 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.02410770390870044, dt = 0.0016064727992406017
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (0.1%)
patch tree reduce : 2.06 us (0.0%)
gen split merge : 972.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.0%)
LB compute : 5.51 ms (99.6%)
LB move op cnt : 0
LB apply : 3.85 us (0.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.98 us (75.6%)
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.1783e+05 | 262144 | 1 | 4.243e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.63026006788987 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.02571417670794104, dt = 0.0016064097560978229
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1773.00 ns (0.4%)
gen split merge : 1223.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1012.00 ns (0.3%)
LB compute : 382.24 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.94 us (74.0%)
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 | 6.2942e+05 | 262144 | 1 | 4.165e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.885325955934738 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.027320586464038864, dt = 0.001606353350469151
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.6%)
patch tree reduce : 1863.00 ns (0.4%)
gen split merge : 1062.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 862.00 ns (0.2%)
LB compute : 394.40 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.96 us (75.6%)
Info: cfl dt = 0.0016063054663404595 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 6.3235e+05 | 262144 | 1 | 4.146e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.949607772854195 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.028926939814508015, dt = 0.0016063054663404595
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.8%)
patch tree reduce : 1723.00 ns (0.4%)
gen split merge : 942.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 892.00 ns (0.2%)
LB compute : 369.76 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.24 us (73.2%)
Info: cfl dt = 0.0016062623488034228 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 6.1870e+05 | 262144 | 1 | 4.237e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.648013984509342 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.030533245280848473, dt = 0.0016062623488034228
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.9%)
patch tree reduce : 1733.00 ns (0.5%)
gen split merge : 972.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 961.00 ns (0.3%)
LB compute : 354.17 us (94.4%)
LB move op cnt : 0
LB apply : 3.87 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.51 us (73.5%)
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 | 6.3366e+05 | 262144 | 1 | 4.137e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.977660647112396 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0321395076296519, dt = 0.0016062242891968924
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (0.2%)
patch tree reduce : 1904.00 ns (0.1%)
gen split merge : 941.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 932.00 ns (0.0%)
LB compute : 3.17 ms (99.3%)
LB move op cnt : 0
LB apply : 4.05 us (0.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.13 us (75.7%)
Info: cfl dt = 0.0016061899886699415 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 6.2149e+05 | 262144 | 1 | 4.218e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.708960260365245 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.03374573191884879, dt = 0.0016061899886699415
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1733.00 ns (0.4%)
gen split merge : 941.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.2%)
LB compute : 433.56 us (95.6%)
LB move op cnt : 0
LB apply : 3.68 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.83 us (73.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 | 6.0473e+05 | 262144 | 1 | 4.335e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.338902299649906 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.03535192190751873, dt = 0.0016061480777358936
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.4%)
patch tree reduce : 1663.00 ns (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 : 449.90 us (95.5%)
LB move op cnt : 0
LB apply : 3.84 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.55 us (78.3%)
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.2391e+05 | 262144 | 1 | 4.202e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.76152914137533 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.036958069985254624, dt = 0.0016060793948625264
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.66 us (2.1%)
patch tree reduce : 1834.00 ns (0.5%)
gen split merge : 1322.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 961.00 ns (0.3%)
LB compute : 340.09 us (93.9%)
LB move op cnt : 0
LB apply : 3.68 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.85 us (73.6%)
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 | 6.3011e+05 | 262144 | 1 | 4.160e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.897846602493725 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.03856414938011715, dt = 0.0016060094388298245
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (0.3%)
patch tree reduce : 1613.00 ns (0.1%)
gen split merge : 1213.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 1182.00 ns (0.1%)
LB compute : 2.34 ms (99.1%)
LB move op cnt : 0
LB apply : 3.88 us (0.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.92 us (72.8%)
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 | 6.1868e+05 | 262144 | 1 | 4.237e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.64511838029377 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.04017015881894698, dt = 0.0016059388541102475
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.5%)
patch tree reduce : 1793.00 ns (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 : 435.69 us (95.5%)
LB move op cnt : 0
LB apply : 3.91 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.90 us (75.8%)
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 | 6.2421e+05 | 262144 | 1 | 4.200e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.766395786587411 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.041776097673057226, dt = 0.0016058683559207114
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (0.7%)
patch tree reduce : 2.05 us (0.2%)
gen split merge : 942.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 881.00 ns (0.1%)
LB compute : 880.58 us (97.6%)
LB move op cnt : 0
LB apply : 4.42 us (0.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.12 us (75.3%)
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 | 6.1070e+05 | 262144 | 1 | 4.293e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.467852309386382 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.04338196602897794, dt = 0.001605798334094885
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.6%)
patch tree reduce : 2.17 us (0.5%)
gen split merge : 932.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 871.00 ns (0.2%)
LB compute : 408.15 us (95.3%)
LB move op cnt : 0
LB apply : 3.54 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.40 us (74.2%)
Info: cfl dt = 0.0016057289552316094 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 6.1206e+05 | 262144 | 1 | 4.283e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.497274562190997 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.04498776436307282, dt = 0.0016057289552316094
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 2.14 us (0.6%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1283.00 ns (0.4%)
LB compute : 340.11 us (94.3%)
LB move op cnt : 0
LB apply : 3.52 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.58 us (69.9%)
Info: cfl dt = 0.0016056607261553354 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 6.3137e+05 | 262144 | 1 | 4.152e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.922499758800177 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.04659349331830443, dt = 0.0016056607261553354
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1753.00 ns (0.4%)
gen split merge : 931.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 952.00 ns (0.2%)
LB compute : 410.88 us (95.3%)
LB move op cnt : 0
LB apply : 3.61 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.03 us (76.1%)
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 | 6.2485e+05 | 262144 | 1 | 4.195e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.778120079776496 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.04819915404445976, dt = 0.0016055939830167726
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 2.04 us (0.5%)
gen split merge : 942.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 882.00 ns (0.2%)
LB compute : 370.10 us (94.6%)
LB move op cnt : 0
LB apply : 3.92 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.19 us (74.1%)
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 | 6.3197e+05 | 262144 | 1 | 4.148e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.934530596497545 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.04980474802747654, dt = 0.0016055288446673935
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (0.1%)
patch tree reduce : 1783.00 ns (0.0%)
gen split merge : 962.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 952.00 ns (0.0%)
LB compute : 4.54 ms (99.5%)
LB move op cnt : 0
LB apply : 3.83 us (0.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.87 us (73.7%)
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 | 6.1236e+05 | 262144 | 1 | 4.281e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.501770175297022 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.05141027687214393, dt = 0.0016054652241193222
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (0.1%)
patch tree reduce : 2.06 us (0.0%)
gen split merge : 942.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 961.00 ns (0.0%)
LB compute : 5.33 ms (99.6%)
LB move op cnt : 0
LB apply : 4.23 us (0.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.19 us (75.5%)
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 | 6.1571e+05 | 262144 | 1 | 4.258e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.574955951027867 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.05301574209626325, dt = 0.0016054032126726185
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1834.00 ns (0.5%)
gen split merge : 931.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 921.00 ns (0.2%)
LB compute : 370.29 us (94.8%)
LB move op cnt : 0
LB apply : 3.51 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.60 us (72.1%)
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 | 6.0949e+05 | 262144 | 1 | 4.301e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.437239944817518 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.05462114530893587, dt = 0.0016053431436928492
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 2.17 us (0.5%)
gen split merge : 962.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 922.00 ns (0.2%)
LB compute : 405.78 us (95.2%)
LB move op cnt : 0
LB apply : 3.59 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.15 us (78.1%)
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 | 6.1891e+05 | 262144 | 1 | 4.236e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.644604473245597 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.056226488452628724, dt = 0.0016052850430259738
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (0.1%)
patch tree reduce : 1873.00 ns (0.0%)
gen split merge : 961.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 902.00 ns (0.0%)
LB compute : 4.79 ms (99.6%)
LB move op cnt : 0
LB apply : 4.15 us (0.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.17 us (76.0%)
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 | 6.1584e+05 | 262144 | 1 | 4.257e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.576375705187521 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0578317734956547, dt = 0.001605229212286434
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.6%)
patch tree reduce : 1743.00 ns (0.4%)
gen split merge : 972.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.2%)
LB compute : 394.12 us (91.5%)
LB move op cnt : 0
LB apply : 3.71 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.50 us (76.4%)
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 | 6.2818e+05 | 262144 | 1 | 4.173e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.84791138705541 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.05943700270794113, dt = 0.0016051766898849194
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.7%)
patch tree reduce : 1903.00 ns (0.5%)
gen split merge : 1282.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 952.00 ns (0.2%)
LB compute : 374.69 us (94.7%)
LB move op cnt : 0
LB apply : 3.49 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.73 us (74.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 | 5.9997e+05 | 262144 | 1 | 4.369e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.225504506351411 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.06104217939782605, dt = 0.0016051276352367868
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1733.00 ns (0.4%)
gen split merge : 932.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1022.00 ns (0.3%)
LB compute : 374.22 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.34 us (71.9%)
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 | 6.2892e+05 | 262144 | 1 | 4.168e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.86337515928852 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.06264730703306284, dt = 0.001605081747758837
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.05 us (1.7%)
patch tree reduce : 1733.00 ns (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 : 398.38 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.34 us (77.8%)
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.2323e+05 | 262144 | 1 | 4.206e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.737501191287887 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.06425238878082168, dt = 0.0016050390296753507
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (0.7%)
patch tree reduce : 1794.00 ns (0.2%)
gen split merge : 1283.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 872.00 ns (0.1%)
LB compute : 983.03 us (97.9%)
LB move op cnt : 0
LB apply : 3.66 us (0.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.96 us (75.1%)
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 | 6.2689e+05 | 262144 | 1 | 4.182e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.817860559571583 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.06585742781049703, dt = 0.0016049996529623194
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (0.2%)
patch tree reduce : 1794.00 ns (0.0%)
gen split merge : 1112.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 912.00 ns (0.0%)
LB compute : 4.10 ms (99.5%)
LB move op cnt : 0
LB apply : 3.60 us (0.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.09 us (76.1%)
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 | 6.1618e+05 | 262144 | 1 | 4.254e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.581374263935071 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.06746242746345935, dt = 0.0016049639235464856
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (0.2%)
patch tree reduce : 1964.00 ns (0.0%)
gen split merge : 962.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.0%)
LB compute : 3.91 ms (99.5%)
LB move op cnt : 0
LB apply : 4.53 us (0.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.27 us (74.1%)
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 | 6.1170e+05 | 262144 | 1 | 4.286e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.482359624754276 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.06906739138700584, dt = 0.001604932305650867
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (0.8%)
patch tree reduce : 1833.00 ns (0.2%)
gen split merge : 942.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.1%)
LB compute : 832.22 us (97.6%)
LB move op cnt : 0
LB apply : 3.75 us (0.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.85 us (73.6%)
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 | 6.2440e+05 | 262144 | 1 | 4.198e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.762042665253876 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0706723236926567, dt = 0.0016048904935863433
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1743.00 ns (0.2%)
gen split merge : 942.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 871.00 ns (0.1%)
LB compute : 785.79 us (97.5%)
LB move op cnt : 0
LB apply : 3.71 us (0.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.78 us (74.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 | 6.1608e+05 | 262144 | 1 | 4.255e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.578312336125867 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.07227721418624306, dt = 0.001604850179693498
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1953.00 ns (0.5%)
gen split merge : 962.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 872.00 ns (0.2%)
LB compute : 403.07 us (95.0%)
LB move op cnt : 0
LB apply : 3.86 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.98 us (76.4%)
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 | 6.2567e+05 | 262144 | 1 | 4.190e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.789243492190746 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.07388206436593656, dt = 0.0016048157080246687
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1974.00 ns (0.5%)
gen split merge : 982.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 862.00 ns (0.2%)
LB compute : 364.06 us (94.8%)
LB move op cnt : 0
LB apply : 3.33 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.50 us (69.6%)
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 | 6.2395e+05 | 262144 | 1 | 4.201e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.751041934533095 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.07548688007396122, dt = 0.001604787809589588
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 2.08 us (0.5%)
gen split merge : 932.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.2%)
LB compute : 400.08 us (95.0%)
LB move op cnt : 0
LB apply : 3.96 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.04 us (76.8%)
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 | 6.2455e+05 | 262144 | 1 | 4.197e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.764097973678128 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.0770916678835508, dt = 0.0016047666462792266
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.5%)
patch tree reduce : 2.02 us (0.4%)
gen split merge : 1262.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 952.00 ns (0.2%)
LB compute : 433.74 us (95.3%)
LB move op cnt : 0
LB apply : 3.89 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.54 us (78.1%)
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.2950e+05 | 262144 | 1 | 4.164e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.872893889950687 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.07869643452983004, dt = 0.0016047519934793816
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1623.00 ns (0.4%)
gen split merge : 932.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1302.00 ns (0.3%)
LB compute : 382.50 us (94.9%)
LB move op cnt : 0
LB apply : 3.61 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.72 us (76.6%)
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 | 6.2496e+05 | 262144 | 1 | 4.195e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.772785948380388 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.08030118652330942, dt = 0.0016047428039782483
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1864.00 ns (0.5%)
gen split merge : 932.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 952.00 ns (0.3%)
LB compute : 347.58 us (94.5%)
LB move op cnt : 0
LB apply : 3.55 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.81 us (73.9%)
Info: cfl dt = 0.0016047384904907657 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 6.3035e+05 | 262144 | 1 | 4.159e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.891443348600474 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.08190592932728767, dt = 0.0016047384904907657
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1973.00 ns (0.5%)
gen split merge : 962.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1252.00 ns (0.3%)
LB compute : 392.19 us (95.0%)
LB move op cnt : 0
LB apply : 3.62 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.35 us (75.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 | 6.2370e+05 | 262144 | 1 | 4.203e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.744834335863956 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.08351066781777844, dt = 0.0016047386646706207
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1753.00 ns (0.5%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1192.00 ns (0.3%)
LB compute : 335.89 us (94.1%)
LB move op cnt : 0
LB apply : 3.61 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.27 us (77.2%)
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 | 6.2719e+05 | 262144 | 1 | 4.180e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.821828793233047 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.08511540648244906, dt = 0.0016047428480074081
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1773.00 ns (0.5%)
gen split merge : 961.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 941.00 ns (0.2%)
LB compute : 369.78 us (94.8%)
LB move op cnt : 0
LB apply : 3.52 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.16 us (72.6%)
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 | 6.2958e+05 | 262144 | 1 | 4.164e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.874544405461412 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.08672014933045646, dt = 0.001604750552609718
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1863.00 ns (0.5%)
gen split merge : 942.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 872.00 ns (0.2%)
LB compute : 335.63 us (94.3%)
LB move op cnt : 0
LB apply : 3.49 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.73 us (74.1%)
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 | 6.2609e+05 | 262144 | 1 | 4.187e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.797647812687702 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.08832489988306619, dt = 0.0016047606140922994
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.9%)
patch tree reduce : 2.08 us (0.6%)
gen split merge : 1082.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 952.00 ns (0.3%)
LB compute : 351.19 us (94.3%)
LB move op cnt : 0
LB apply : 3.49 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.06 us (76.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.2297e+05 | 262144 | 1 | 4.208e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.728999537322817 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.08992966049715849, dt = 0.0016047723597612607
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1633.00 ns (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 : 348.35 us (94.7%)
LB move op cnt : 0
LB apply : 3.41 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.08 us (76.6%)
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 | 6.2501e+05 | 262144 | 1 | 4.194e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.774171775094011 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.09153443285691976, dt = 0.0016047851881981024
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1773.00 ns (0.5%)
gen split merge : 962.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 862.00 ns (0.2%)
LB compute : 357.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 : 3.06 us (75.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 | 5.8019e+05 | 262144 | 1 | 4.518e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12.78638322410092 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.09313921804511786, dt = 0.0016047984245914015
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1773.00 ns (0.4%)
gen split merge : 952.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1273.00 ns (0.3%)
LB compute : 377.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.71 us (72.0%)
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 | 5.9941e+05 | 262144 | 1 | 4.373e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.21011217401985 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.09474401646970927, dt = 0.0016048077590991498
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (0.3%)
patch tree reduce : 1894.00 ns (0.1%)
gen split merge : 1102.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 881.00 ns (0.0%)
LB compute : 2.37 ms (99.0%)
LB move op cnt : 0
LB apply : 4.49 us (0.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.53 us (79.1%)
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.2585e+05 | 262144 | 1 | 4.189e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.792880714008222 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.09634882422880842, dt = 0.0016048176104962422
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1743.00 ns (0.5%)
gen split merge : 972.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 932.00 ns (0.3%)
LB compute : 344.92 us (94.6%)
LB move op cnt : 0
LB apply : 3.54 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.85 us (73.6%)
Info: cfl dt = 0.0016048282125583713 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 6.1652e+05 | 262144 | 1 | 4.252e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.587393627929899 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.09795364183930466, dt = 0.0016048282125583713
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.0%)
patch tree reduce : 1733.00 ns (0.3%)
gen split merge : 1012.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1182.00 ns (0.2%)
LB compute : 604.52 us (96.7%)
LB move op cnt : 0
LB apply : 3.86 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.62 us (71.8%)
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.2427e+05 | 262144 | 1 | 4.199e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.75826762670759 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.09955847005186304, dt = 0.0016048383443499584
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (0.1%)
patch tree reduce : 1723.00 ns (0.0%)
gen split merge : 982.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 1223.00 ns (0.0%)
LB compute : 4.78 ms (99.6%)
LB move op cnt : 0
LB apply : 4.11 us (0.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.18 us (74.8%)
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 | 6.1708e+05 | 262144 | 1 | 4.248e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.599971058332795 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.101163308396213, dt = 0.0016048410695601461
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.5%)
patch tree reduce : 1743.00 ns (0.4%)
gen split merge : 921.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 951.00 ns (0.2%)
LB compute : 399.17 us (95.1%)
LB move op cnt : 0
LB apply : 3.71 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.03 us (76.5%)
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 | 6.2105e+05 | 262144 | 1 | 4.221e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.68736245741581 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.10276814946577315, dt = 0.0016048397348863534
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (0.1%)
patch tree reduce : 1793.00 ns (0.0%)
gen split merge : 932.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 1172.00 ns (0.0%)
LB compute : 4.91 ms (99.6%)
LB move op cnt : 0
LB apply : 3.77 us (0.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.04 us (75.6%)
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 | 6.1063e+05 | 262144 | 1 | 4.293e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.457835147764937 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1043729892006595, dt = 0.0016048346020587697
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1613.00 ns (0.4%)
gen split merge : 1002.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 942.00 ns (0.2%)
LB compute : 372.47 us (94.9%)
LB move op cnt : 0
LB apply : 3.66 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.25 us (75.7%)
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 | 6.1459e+05 | 262144 | 1 | 4.265e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.545086964379983 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.10597782380271827, dt = 0.0016048255953400694
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (0.5%)
patch tree reduce : 1603.00 ns (0.1%)
gen split merge : 1283.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.1%)
LB compute : 1372.78 us (98.5%)
LB move op cnt : 0
LB apply : 3.80 us (0.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.14 us (76.7%)
Info: cfl dt = 0.0016048128615617787 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 6.1604e+05 | 262144 | 1 | 4.255e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.576816365370057 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.10758264939805834, dt = 0.0016048128615617787
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 2.16 us (0.6%)
gen split merge : 962.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 942.00 ns (0.2%)
LB compute : 371.92 us (94.7%)
LB move op cnt : 0
LB apply : 3.60 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.91 us (73.1%)
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 | 5.9704e+05 | 262144 | 1 | 4.391e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.157952481558553 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.10918746225962012, dt = 0.0016047965475004561
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1773.00 ns (0.5%)
gen split merge : 942.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.3%)
LB compute : 361.45 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.98 us (73.7%)
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 | 6.1386e+05 | 262144 | 1 | 4.270e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.528485307976496 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.11079225880712057, dt = 0.0016047768032500286
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 2.04 us (0.5%)
gen split merge : 962.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 951.00 ns (0.3%)
LB compute : 359.30 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.02 us (76.1%)
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 | 6.2542e+05 | 262144 | 1 | 4.192e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.783088810401125 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1123970356103706, dt = 0.0016047539720394288
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (0.2%)
patch tree reduce : 1903.00 ns (0.1%)
gen split merge : 952.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 882.00 ns (0.0%)
LB compute : 3.56 ms (99.0%)
LB move op cnt : 0
LB apply : 4.34 us (0.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.49 us (78.2%)
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 | 6.1977e+05 | 262144 | 1 | 4.230e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.658365016453295 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.11400178958241003, dt = 0.0016047281785058118
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1784.00 ns (0.4%)
gen split merge : 1002.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 961.00 ns (0.2%)
LB compute : 386.43 us (95.0%)
LB move op cnt : 0
LB apply : 3.39 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.94 us (75.9%)
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 | 5.9860e+05 | 262144 | 1 | 4.379e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.191665711956816 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.11560651776091584, dt = 0.0016046995361914003
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 23.69 us (0.5%)
patch tree reduce : 1743.00 ns (0.0%)
gen split merge : 952.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 881.00 ns (0.0%)
LB compute : 4.34 ms (99.1%)
LB move op cnt : 0
LB apply : 3.94 us (0.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.79 us (73.4%)
Info: cfl dt = 0.0016046678872136397 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 6.1742e+05 | 262144 | 1 | 4.246e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.606303195495352 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.11721121729710723, dt = 0.0016046678872136397
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.3%)
patch tree reduce : 1743.00 ns (0.4%)
gen split merge : 952.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 952.00 ns (0.2%)
LB compute : 444.74 us (95.8%)
LB move op cnt : 0
LB apply : 3.65 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.77 us (73.3%)
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 | 6.2661e+05 | 262144 | 1 | 4.184e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.808425400951862 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.11881588518432087, dt = 0.001604626128044338
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.1%)
patch tree reduce : 1733.00 ns (0.3%)
gen split merge : 932.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 861.00 ns (0.1%)
LB compute : 569.16 us (96.6%)
LB move op cnt : 0
LB apply : 4.14 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.59 us (72.7%)
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 | 6.1603e+05 | 262144 | 1 | 4.255e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.575006021369482 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.12042051131236521, dt = 0.001604583222301995
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (0.6%)
patch tree reduce : 1744.00 ns (0.2%)
gen split merge : 942.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 862.00 ns (0.1%)
LB compute : 1087.98 us (98.1%)
LB move op cnt : 0
LB apply : 3.76 us (0.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.88 us (73.0%)
Info: cfl dt = 0.0016045391891071133 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 6.1762e+05 | 262144 | 1 | 4.244e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.609588515652325 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1220250945346672, dt = 0.0016045391891071133
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1923.00 ns (0.5%)
gen split merge : 942.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 871.00 ns (0.2%)
LB compute : 360.45 us (94.7%)
LB move op cnt : 0
LB apply : 3.45 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.37 us (70.3%)
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 | 6.3016e+05 | 262144 | 1 | 4.160e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.88550371651016 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.12362963372377431, dt = 0.0016044939391883695
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.6%)
patch tree reduce : 2.03 us (0.5%)
gen split merge : 1092.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1042.00 ns (0.2%)
LB compute : 419.13 us (95.1%)
LB move op cnt : 0
LB apply : 4.05 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.73 us (73.7%)
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 | 6.1573e+05 | 262144 | 1 | 4.257e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.567167386049936 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.12523412766296269, dt = 0.0016044473920102014
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (0.3%)
patch tree reduce : 1764.00 ns (0.1%)
gen split merge : 932.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 872.00 ns (0.0%)
LB compute : 2.40 ms (99.1%)
LB move op cnt : 0
LB apply : 3.96 us (0.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.47 us (76.2%)
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.2237e+05 | 262144 | 1 | 4.212e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.713039704399458 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1268385750549729, dt = 0.0016043995122379676
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (1.2%)
patch tree reduce : 1843.00 ns (0.3%)
gen split merge : 942.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 952.00 ns (0.2%)
LB compute : 588.28 us (96.7%)
LB move op cnt : 0
LB apply : 3.33 us (0.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.45 us (75.1%)
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.1887e+05 | 262144 | 1 | 4.236e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.635695382434665 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.12844297456721088, dt = 0.0016043503107421135
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.8%)
patch tree reduce : 1794.00 ns (0.4%)
gen split merge : 1232.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 931.00 ns (0.2%)
LB compute : 379.04 us (94.7%)
LB move op cnt : 0
LB apply : 3.72 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.88 us (74.3%)
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 | 6.3033e+05 | 262144 | 1 | 4.159e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.887725884717558 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.13004732487795298, dt = 0.001604299806280021
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1623.00 ns (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 : 343.75 us (94.6%)
LB move op cnt : 0
LB apply : 3.74 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 29.77 us (95.6%)
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 | 6.2546e+05 | 262144 | 1 | 4.191e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.779967905260277 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.131651624684233, dt = 0.00064004198243367
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 2.13 us (0.5%)
gen split merge : 972.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 942.00 ns (0.2%)
LB compute : 398.69 us (95.2%)
LB move op cnt : 0
LB apply : 3.64 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.94 us (74.9%)
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 | 6.2139e+05 | 262144 | 1 | 4.219e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5.461813410193545 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 48.258360132 (s) [Godunov][rank=0]
Info: dump to _to_trash/ramses_kh/periodic_0002.vtk [VTK Dump][rank=0]
- took 53.63 ms, bandwidth = 727.14 MB/s
amr::Godunov: t = 0.13229166666666667, dt = 0.0016042273494663824
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.6%)
patch tree reduce : 1764.00 ns (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 : 414.00 us (95.3%)
LB move op cnt : 0
LB apply : 3.54 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.40 us (69.8%)
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.2434e+05 | 262144 | 1 | 4.199e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.754640537351106 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.13389589401613305, dt = 0.0016041738397843035
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.9%)
patch tree reduce : 1964.00 ns (0.5%)
gen split merge : 951.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 881.00 ns (0.2%)
LB compute : 348.84 us (94.3%)
LB move op cnt : 0
LB apply : 3.53 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.63 us (72.1%)
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 | 6.2806e+05 | 262144 | 1 | 4.174e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.83617029672842 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.13550006785591737, dt = 0.001604119875606735
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (0.9%)
patch tree reduce : 1954.00 ns (0.3%)
gen split merge : 1032.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 891.00 ns (0.1%)
LB compute : 749.03 us (97.3%)
LB move op cnt : 0
LB apply : 3.54 us (0.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.95 us (74.6%)
Info: cfl dt = 0.0016040656532824691 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 6.1876e+05 | 262144 | 1 | 4.237e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.630786539893819 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1371041877315241, dt = 0.0016040656532824691
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.2%)
patch tree reduce : 1743.00 ns (0.0%)
gen split merge : 941.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 872.00 ns (0.0%)
LB compute : 3.98 ms (99.5%)
LB move op cnt : 0
LB apply : 3.68 us (0.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 18.86 us (94.2%)
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 | 6.1651e+05 | 262144 | 1 | 4.252e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.580867545458354 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.13870825338480658, dt = 0.0016040113863370203
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.6%)
patch tree reduce : 1783.00 ns (0.4%)
gen split merge : 912.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 842.00 ns (0.2%)
LB compute : 423.29 us (95.4%)
LB move op cnt : 0
LB apply : 3.80 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.51 us (70.7%)
Info: cfl dt = 0.0016039569826780623 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 6.1678e+05 | 262144 | 1 | 4.250e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.586209851170915 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1403122647711436, dt = 0.0016039569826780623
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.4%)
patch tree reduce : 1944.00 ns (0.4%)
gen split merge : 962.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.2%)
LB compute : 460.61 us (95.6%)
LB move op cnt : 0
LB apply : 4.22 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.10 us (75.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 | 6.2264e+05 | 262144 | 1 | 4.210e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.714855918173374 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.14191622175382168, dt = 0.0016039028659567307
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.24 us (1.7%)
patch tree reduce : 1834.00 ns (0.4%)
gen split merge : 942.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.2%)
LB compute : 401.18 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.17 us (76.3%)
Info: cfl dt = 0.001603849476449893 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 6.2672e+05 | 262144 | 1 | 4.183e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.804340426566494 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.14352012461977842, dt = 0.001603849476449893
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (0.1%)
patch tree reduce : 2.01 us (0.0%)
gen split merge : 932.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.0%)
LB compute : 4.68 ms (99.5%)
LB move op cnt : 0
LB apply : 4.20 us (0.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.47 us (77.7%)
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 | 6.1031e+05 | 262144 | 1 | 4.295e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.442416032674245 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.14512397409622832, dt = 0.0016037972381005763
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.9%)
patch tree reduce : 2.06 us (0.6%)
gen split merge : 1303.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 952.00 ns (0.3%)
LB compute : 346.63 us (94.3%)
LB move op cnt : 0
LB apply : 3.63 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.27 us (72.8%)
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 | 6.2019e+05 | 262144 | 1 | 4.227e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.659522096894207 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1467277713343289, dt = 0.0016037465435442735
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (0.8%)
patch tree reduce : 1733.00 ns (0.2%)
gen split merge : 952.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 842.00 ns (0.1%)
LB compute : 799.86 us (97.5%)
LB move op cnt : 0
LB apply : 3.67 us (0.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.77 us (73.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 | 6.1367e+05 | 262144 | 1 | 4.272e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.515523964656685 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1483315178778732, dt = 0.001603697734763891
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (0.2%)
patch tree reduce : 2.08 us (0.1%)
gen split merge : 932.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 1002.00 ns (0.0%)
LB compute : 3.15 ms (99.3%)
LB move op cnt : 0
LB apply : 3.83 us (0.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.00 us (74.9%)
Info: cfl dt = 0.0016036510660739464 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 6.2348e+05 | 262144 | 1 | 4.205e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.731092809776884 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1499352156126371, dt = 0.0016036510660739464
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (0.5%)
patch tree reduce : 1743.00 ns (0.1%)
gen split merge : 942.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 872.00 ns (0.1%)
LB compute : 1322.49 us (98.5%)
LB move op cnt : 0
LB apply : 3.82 us (0.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.13 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 | 6.1748e+05 | 262144 | 1 | 4.245e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.59860464565898 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.15153886667871103, dt = 0.0016036067585051012
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.5%)
patch tree reduce : 1804.00 ns (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 : 413.28 us (95.2%)
LB move op cnt : 0
LB apply : 4.06 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.25 us (77.0%)
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 | 6.2252e+05 | 262144 | 1 | 4.211e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.709187502359104 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.15314247343721613, dt = 0.0016035650333493705
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.6%)
patch tree reduce : 2.02 us (0.5%)
gen split merge : 952.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 932.00 ns (0.2%)
LB compute : 397.67 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.85 us (72.1%)
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 | 6.2742e+05 | 262144 | 1 | 4.178e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.816701174048221 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1547460384705655, dt = 0.0016035260637780465
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1633.00 ns (0.4%)
gen split merge : 1232.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 861.00 ns (0.2%)
LB compute : 351.65 us (94.6%)
LB move op cnt : 0
LB apply : 3.51 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.35 us (73.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.2798e+05 | 262144 | 1 | 4.174e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.828794998022142 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.15634956453434357, dt = 0.0016034900240051418
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.8%)
patch tree reduce : 1633.00 ns (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 : 375.31 us (94.7%)
LB move op cnt : 0
LB apply : 3.90 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.55 us (79.0%)
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 | 6.2416e+05 | 262144 | 1 | 4.200e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.744468222888706 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1579530545583487, dt = 0.0016034570761961648
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1734.00 ns (0.4%)
gen split merge : 922.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1142.00 ns (0.3%)
LB compute : 380.36 us (91.3%)
LB move op cnt : 0
LB apply : 3.88 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.09 us (74.4%)
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 | 6.2722e+05 | 262144 | 1 | 4.179e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.811399934319066 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.15955651163454487, dt = 0.0016034272928400282
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (0.2%)
patch tree reduce : 1813.00 ns (0.1%)
gen split merge : 932.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 892.00 ns (0.0%)
LB compute : 3.16 ms (99.3%)
LB move op cnt : 0
LB apply : 4.19 us (0.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.27 us (77.3%)
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 | 6.1332e+05 | 262144 | 1 | 4.274e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.505036300107777 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1611599389273849, dt = 0.0016034006731800014
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (0.2%)
patch tree reduce : 1844.00 ns (0.0%)
gen split merge : 962.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 882.00 ns (0.0%)
LB compute : 4.07 ms (99.5%)
LB move op cnt : 0
LB apply : 4.01 us (0.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.30 us (77.0%)
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.1918e+05 | 262144 | 1 | 4.234e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.634029822181464 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.16276333960056488, dt = 0.001603377166597233
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (0.1%)
patch tree reduce : 1774.00 ns (0.0%)
gen split merge : 931.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 881.00 ns (0.0%)
LB compute : 6.10 ms (99.7%)
LB move op cnt : 0
LB apply : 3.71 us (0.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.88 us (72.3%)
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 | 6.0621e+05 | 262144 | 1 | 4.324e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.348137273388932 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1643667167671621, dt = 0.0016033566697151566
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (0.1%)
patch tree reduce : 1753.00 ns (0.0%)
gen split merge : 932.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 1212.00 ns (0.0%)
LB compute : 5.29 ms (99.6%)
LB move op cnt : 0
LB apply : 4.45 us (0.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.08 us (76.0%)
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.0678e+05 | 262144 | 1 | 4.320e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.360550369664553 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.16597007343687725, dt = 0.0016033355791337746
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.32 us (0.3%)
patch tree reduce : 1733.00 ns (0.1%)
gen split merge : 1102.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 881.00 ns (0.0%)
LB compute : 2.58 ms (99.2%)
LB move op cnt : 0
LB apply : 4.17 us (0.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.41 us (77.8%)
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 | 6.1964e+05 | 262144 | 1 | 4.231e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.643437272002577 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.16757340901601103, dt = 0.0016033112125957516
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.5%)
patch tree reduce : 1893.00 ns (0.4%)
gen split merge : 971.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 882.00 ns (0.2%)
LB compute : 434.07 us (95.5%)
LB move op cnt : 0
LB apply : 3.70 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.13 us (75.9%)
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 | 6.1005e+05 | 262144 | 1 | 4.297e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.432177852327948 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.16917672022860678, dt = 0.0016032895564966271
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.7%)
patch tree reduce : 1793.00 ns (0.4%)
gen split merge : 1283.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 882.00 ns (0.2%)
LB compute : 383.42 us (94.7%)
LB move op cnt : 0
LB apply : 3.53 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.93 us (72.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 | 6.1510e+05 | 262144 | 1 | 4.262e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.543064035372673 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1707800097851034, dt = 0.00160327050798848
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (0.4%)
patch tree reduce : 1834.00 ns (0.1%)
gen split merge : 942.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 871.00 ns (0.1%)
LB compute : 1615.81 us (98.8%)
LB move op cnt : 0
LB apply : 3.89 us (0.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.58 us (75.8%)
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 | 6.1353e+05 | 262144 | 1 | 4.273e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.508485248584433 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.17238328029309188, dt = 0.001603253932121782
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (0.6%)
patch tree reduce : 1663.00 ns (0.2%)
gen split merge : 1102.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 1283.00 ns (0.1%)
LB compute : 1072.59 us (98.1%)
LB move op cnt : 0
LB apply : 3.79 us (0.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.42 us (77.0%)
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 | 6.2052e+05 | 262144 | 1 | 4.225e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.66224963569593 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.17398653422521368, dt = 0.001603239659879979
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (0.4%)
patch tree reduce : 1924.00 ns (0.1%)
gen split merge : 1092.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.1%)
LB compute : 1545.25 us (98.6%)
LB move op cnt : 0
LB apply : 4.37 us (0.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.24 us (77.7%)
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 | 6.1304e+05 | 262144 | 1 | 4.276e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.497382104546952 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.17558977388509367, dt = 0.001603227523333457
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (0.1%)
patch tree reduce : 1794.00 ns (0.0%)
gen split merge : 922.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 902.00 ns (0.0%)
LB compute : 4.94 ms (99.6%)
LB move op cnt : 0
LB apply : 4.05 us (0.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.70 us (75.9%)
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 | 6.0991e+05 | 262144 | 1 | 4.298e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.428397095840802 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.17719300140842711, dt = 0.0016032173460213816
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (0.1%)
patch tree reduce : 1853.00 ns (0.0%)
gen split merge : 931.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 951.00 ns (0.0%)
LB compute : 4.67 ms (99.6%)
LB move op cnt : 0
LB apply : 4.03 us (0.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.65 us (71.6%)
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 | 6.0957e+05 | 262144 | 1 | 4.300e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.42077254843309 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.17879621875444848, dt = 0.0016032088203184103
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.4%)
patch tree reduce : 1783.00 ns (0.4%)
gen split merge : 932.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1042.00 ns (0.2%)
LB compute : 434.25 us (93.5%)
LB move op cnt : 0
LB apply : 9.75 us (2.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.61 us (75.4%)
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 | 6.2347e+05 | 262144 | 1 | 4.205e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.726658926943301 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1803994275747669, dt = 0.0016032016203699061
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.5%)
patch tree reduce : 1613.00 ns (0.3%)
gen split merge : 962.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 922.00 ns (0.2%)
LB compute : 452.18 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.85 us (74.8%)
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 | 6.2744e+05 | 262144 | 1 | 4.178e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.814204629424214 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1820026291951368, dt = 0.0016031954242465896
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.32 us (1.8%)
patch tree reduce : 2.10 us (0.5%)
gen split merge : 932.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 912.00 ns (0.2%)
LB compute : 376.02 us (94.6%)
LB move op cnt : 0
LB apply : 3.84 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.47 us (74.1%)
Info: cfl dt = 0.0016031899674078494 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 6.2118e+05 | 262144 | 1 | 4.220e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.676149863184019 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.18360582461938338, dt = 0.0016031899674078494
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.6%)
patch tree reduce : 1893.00 ns (0.5%)
gen split merge : 962.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.2%)
LB compute : 390.60 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.98 us (74.6%)
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 | 6.2390e+05 | 262144 | 1 | 4.202e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.736048480240465 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.18520901458679123, dt = 0.001603185027863387
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (1.8%)
patch tree reduce : 1734.00 ns (0.5%)
gen split merge : 1102.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1112.00 ns (0.3%)
LB compute : 364.06 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.81 us (73.7%)
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 | 6.2186e+05 | 262144 | 1 | 4.215e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.691214637938437 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.18681219961465462, dt = 0.001603180411270176
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1864.00 ns (0.5%)
gen split merge : 982.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.3%)
LB compute : 337.58 us (94.3%)
LB move op cnt : 0
LB apply : 3.65 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.09 us (74.9%)
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 | 6.3221e+05 | 262144 | 1 | 4.146e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.919029317040307 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.18841538002592478, dt = 0.0016031759342262609
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (0.1%)
patch tree reduce : 1623.00 ns (0.0%)
gen split merge : 1272.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 1162.00 ns (0.0%)
LB compute : 6.17 ms (99.7%)
LB move op cnt : 0
LB apply : 4.30 us (0.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.72 us (78.8%)
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 | 6.0880e+05 | 262144 | 1 | 4.306e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.403417741254994 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.19001855596015105, dt = 0.0016031714144517824
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.70 us (1.9%)
patch tree reduce : 2.32 us (0.6%)
gen split merge : 962.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 862.00 ns (0.2%)
LB compute : 391.10 us (94.6%)
LB move op cnt : 0
LB apply : 4.05 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.52 us (73.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 | 6.3115e+05 | 262144 | 1 | 4.153e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.89559309777694 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.19162172737460284, dt = 0.0016031666717149574
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1773.00 ns (0.4%)
gen split merge : 951.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 872.00 ns (0.2%)
LB compute : 418.34 us (95.3%)
LB move op cnt : 0
LB apply : 3.68 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.08 us (74.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 | 6.2033e+05 | 262144 | 1 | 4.226e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.65724105603722 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1932248940463178, dt = 0.0016031615358672391
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 2.07 us (0.5%)
gen split merge : 942.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.2%)
LB compute : 396.17 us (95.1%)
LB move op cnt : 0
LB apply : 3.72 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.90 us (73.6%)
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 | 6.2088e+05 | 262144 | 1 | 4.222e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.669295171359579 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.19482805558218502, dt = 0.001603155854894901
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 2.09 us (0.6%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.3%)
LB compute : 346.31 us (94.2%)
LB move op cnt : 0
LB apply : 3.83 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.56 us (72.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 | 6.3083e+05 | 262144 | 1 | 4.156e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.888391010992798 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.19643121143707992, dt = 0.0016031494968065413
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1653.00 ns (0.4%)
gen split merge : 1533.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 2.07 us (0.6%)
LB compute : 349.54 us (94.1%)
LB move op cnt : 0
LB apply : 3.57 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.69 us (71.1%)
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 | 6.2430e+05 | 262144 | 1 | 4.199e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.744532408539547 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.19803436093388646, dt = 0.0016031423463691162
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1634.00 ns (0.4%)
gen split merge : 922.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 941.00 ns (0.2%)
LB compute : 366.13 us (94.7%)
LB move op cnt : 0
LB apply : 4.12 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.39 us (73.0%)
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 | 6.1218e+05 | 262144 | 1 | 4.282e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.477600272053948 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.1996375032802556, dt = 0.0016031343118768078
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (0.2%)
patch tree reduce : 1763.00 ns (0.1%)
gen split merge : 1182.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.0%)
LB compute : 3.48 ms (99.4%)
LB move op cnt : 0
LB apply : 3.96 us (0.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.28 us (75.9%)
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 | 6.1871e+05 | 262144 | 1 | 4.237e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.621420161421707 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.2012406375921324, dt = 0.0016031253494415165
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.1%)
patch tree reduce : 2.12 us (0.0%)
gen split merge : 982.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.0%)
LB compute : 5.83 ms (99.6%)
LB move op cnt : 0
LB apply : 4.01 us (0.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.62 us (78.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 | 6.1615e+05 | 262144 | 1 | 4.255e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.56498470887672 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.2028437629415739, dt = 0.0016031154461330702
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (0.1%)
patch tree reduce : 1984.00 ns (0.0%)
gen split merge : 18.70 us (0.4%)
split / merge op : 0/0
apply split merge : 912.00 ns (0.0%)
LB compute : 5.24 ms (99.3%)
LB move op cnt : 0
LB apply : 4.01 us (0.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.39 us (76.0%)
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 | 6.1530e+05 | 262144 | 1 | 4.260e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.546084062193014 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.20444687838770698, dt = 0.0016031046165928629
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (0.2%)
patch tree reduce : 1763.00 ns (0.1%)
gen split merge : 1313.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 1182.00 ns (0.0%)
LB compute : 3.07 ms (99.3%)
LB move op cnt : 0
LB apply : 3.86 us (0.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.73 us (73.5%)
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 | 6.2575e+05 | 262144 | 1 | 4.189e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.776070827294754 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.20604998300429983, dt = 0.001603092890752776
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.5%)
patch tree reduce : 1934.00 ns (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 : 433.47 us (95.4%)
LB move op cnt : 0
LB apply : 3.87 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.13 us (75.9%)
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 | 6.2769e+05 | 262144 | 1 | 4.176e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.818602241188584 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.2076530758950526, dt = 0.0016030803039774695
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (0.3%)
patch tree reduce : 1763.00 ns (0.1%)
gen split merge : 952.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 861.00 ns (0.0%)
LB compute : 2.19 ms (99.1%)
LB move op cnt : 0
LB apply : 3.77 us (0.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.26 us (74.4%)
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 | 6.2559e+05 | 262144 | 1 | 4.190e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.772354800076807 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.20925615619903007, dt = 0.0016030668947340887
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (0.2%)
patch tree reduce : 1994.00 ns (0.0%)
gen split merge : 1092.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 892.00 ns (0.0%)
LB compute : 4.07 ms (99.0%)
LB move op cnt : 0
LB apply : 4.23 us (0.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.75 us (76.6%)
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 | 6.1040e+05 | 262144 | 1 | 4.295e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.437711146151695 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.21085922309376415, dt = 0.001603052701015181
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.15 us (0.1%)
patch tree reduce : 1783.00 ns (0.0%)
gen split merge : 932.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 932.00 ns (0.0%)
LB compute : 5.23 ms (99.6%)
LB move op cnt : 0
LB apply : 3.83 us (0.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.06 us (77.0%)
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 | 6.1510e+05 | 262144 | 1 | 4.262e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.541131268043912 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.21246227579477933, dt = 0.0016030377618725046
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (1.8%)
patch tree reduce : 1893.00 ns (0.5%)
gen split merge : 1112.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 951.00 ns (0.2%)
LB compute : 381.70 us (94.7%)
LB move op cnt : 0
LB apply : 3.61 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.02 us (76.4%)
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 | 6.2107e+05 | 262144 | 1 | 4.221e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.6725124711792 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.21406531355665184, dt = 0.0016030221425414918
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 2.12 us (0.5%)
gen split merge : 1313.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.2%)
LB compute : 392.07 us (94.8%)
LB move op cnt : 0
LB apply : 4.15 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.96 us (75.4%)
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 | 6.2047e+05 | 262144 | 1 | 4.225e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.659068778864663 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.21566833569919333, dt = 0.0016030058706055072
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (0.1%)
patch tree reduce : 1924.00 ns (0.0%)
gen split merge : 952.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.0%)
LB compute : 4.48 ms (99.5%)
LB move op cnt : 0
LB apply : 4.02 us (0.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.12 us (76.4%)
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 | 6.1592e+05 | 262144 | 1 | 4.256e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.558839305342486 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.21727134156979883, dt = 0.0016029889410030013
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1833.00 ns (0.5%)
gen split merge : 992.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.2%)
LB compute : 380.11 us (94.8%)
LB move op cnt : 0
LB apply : 4.00 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.29 us (71.5%)
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 | 6.2271e+05 | 262144 | 1 | 4.210e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.7081673089581 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.21887433051080182, dt = 0.0016029713555471977
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.6%)
patch tree reduce : 1773.00 ns (0.4%)
gen split merge : 952.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 912.00 ns (0.2%)
LB compute : 395.90 us (94.9%)
LB move op cnt : 0
LB apply : 4.51 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.92 us (75.0%)
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 | 6.3012e+05 | 262144 | 1 | 4.160e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.871076081680561 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.22047730186634903, dt = 0.0016029531334277559
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 2.08 us (0.6%)
gen split merge : 941.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.3%)
LB compute : 350.21 us (94.5%)
LB move op cnt : 0
LB apply : 3.63 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.14 us (76.2%)
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 | 5.6024e+05 | 262144 | 1 | 4.679e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12.332753233039126 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.2220802549997768, dt = 0.0016029343135597117
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.5%)
patch tree reduce : 2.04 us (0.5%)
gen split merge : 982.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.2%)
LB compute : 402.03 us (95.1%)
LB move op cnt : 0
LB apply : 3.55 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.31 us (73.2%)
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 | 6.2786e+05 | 262144 | 1 | 4.175e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.821013365794203 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.2236831893133365, dt = 0.0016029149535093704
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (1.8%)
patch tree reduce : 1824.00 ns (0.5%)
gen split merge : 1062.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.2%)
LB compute : 377.36 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.25 us (76.6%)
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 | 6.2515e+05 | 262144 | 1 | 4.193e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.761138101050564 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.22528610426684587, dt = 0.0016028951279274898
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (0.1%)
patch tree reduce : 1753.00 ns (0.0%)
gen split merge : 962.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 862.00 ns (0.0%)
LB compute : 4.48 ms (99.5%)
LB move op cnt : 0
LB apply : 4.06 us (0.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.50 us (77.7%)
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 | 6.1379e+05 | 262144 | 1 | 4.271e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.511009299113017 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.22688899939477336, dt = 0.0016028749261150829
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1784.00 ns (0.5%)
gen split merge : 962.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.3%)
LB compute : 362.77 us (94.7%)
LB move op cnt : 0
LB apply : 3.70 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.11 us (74.7%)
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 | 6.1373e+05 | 262144 | 1 | 4.271e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.509412350226508 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.22849187432088844, dt = 0.0016028544498623905
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.7%)
patch tree reduce : 2.12 us (0.5%)
gen split merge : 962.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 942.00 ns (0.2%)
LB compute : 387.81 us (94.9%)
LB move op cnt : 0
LB apply : 3.51 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.36 us (73.5%)
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 | 6.2349e+05 | 262144 | 1 | 4.204e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.724151368104494 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.23009472877075082, dt = 0.0016028338101722966
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.0%)
patch tree reduce : 1763.00 ns (0.5%)
gen split merge : 1182.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.3%)
LB compute : 342.17 us (94.1%)
LB move op cnt : 0
LB apply : 3.78 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.42 us (77.7%)
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 | 6.1778e+05 | 262144 | 1 | 4.243e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.598287103264264 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.2316975625809231, dt = 0.001602813130842037
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1934.00 ns (0.5%)
gen split merge : 922.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 911.00 ns (0.2%)
LB compute : 377.13 us (94.9%)
LB move op cnt : 0
LB apply : 3.70 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.21 us (73.7%)
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 | 6.1780e+05 | 262144 | 1 | 4.243e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.598488627624661 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.23330037571176515, dt = 0.0016027925450056509
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.5%)
patch tree reduce : 1783.00 ns (0.4%)
gen split merge : 942.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.2%)
LB compute : 433.11 us (95.5%)
LB move op cnt : 0
LB apply : 3.78 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.33 us (76.7%)
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.2877e+05 | 262144 | 1 | 4.169e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.839791450656598 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.2349031682567708, dt = 0.0016027721876416
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.4%)
patch tree reduce : 1704.00 ns (0.3%)
gen split merge : 982.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 952.00 ns (0.2%)
LB compute : 490.50 us (96.0%)
LB move op cnt : 0
LB apply : 3.78 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.67 us (74.0%)
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 | 5.9046e+05 | 262144 | 1 | 4.440e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12.996414392784398 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.2365059404444124, dt = 0.0016027521920402156
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 2.09 us (0.5%)
gen split merge : 951.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1342.00 ns (0.3%)
LB compute : 371.58 us (94.5%)
LB move op cnt : 0
LB apply : 4.07 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.87 us (72.6%)
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 | 6.2540e+05 | 262144 | 1 | 4.192e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.76544254145707 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.2381086926364526, dt = 0.0016027326822497404
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.6%)
patch tree reduce : 2.03 us (0.5%)
gen split merge : 961.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 952.00 ns (0.2%)
LB compute : 411.63 us (95.1%)
LB move op cnt : 0
LB apply : 3.77 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.32 us (77.9%)
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 | 6.2641e+05 | 262144 | 1 | 4.185e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.78742158425058 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.23971142531870235, dt = 0.001602713772512792
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.6%)
patch tree reduce : 1863.00 ns (0.4%)
gen split merge : 1233.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 952.00 ns (0.2%)
LB compute : 403.52 us (95.1%)
LB move op cnt : 0
LB apply : 3.80 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.88 us (77.1%)
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 | 6.2606e+05 | 262144 | 1 | 4.187e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.779523347553813 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.24131413909121513, dt = 0.0016026955670155078
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.6%)
patch tree reduce : 1924.00 ns (0.5%)
gen split merge : 1102.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 882.00 ns (0.2%)
LB compute : 376.52 us (91.0%)
LB move op cnt : 0
LB apply : 3.83 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.01 us (73.9%)
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 | 6.0209e+05 | 262144 | 1 | 4.354e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.251907936822327 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.24291683465823063, dt = 0.001602678216336136
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.6%)
patch tree reduce : 1643.00 ns (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 : 408.85 us (95.3%)
LB move op cnt : 0
LB apply : 3.43 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.03 us (77.1%)
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 | 6.1642e+05 | 262144 | 1 | 4.253e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.566962392484994 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.24451951287456677, dt = 0.0016026618150879264
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.4%)
patch tree reduce : 1823.00 ns (0.4%)
gen split merge : 962.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.2%)
LB compute : 433.53 us (95.5%)
LB move op cnt : 0
LB apply : 3.73 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.02 us (72.5%)
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 | 6.1693e+05 | 262144 | 1 | 4.249e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.578241408318052 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.2461221746896547, dt = 0.0016026464008763969
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1864.00 ns (0.4%)
gen split merge : 942.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1002.00 ns (0.2%)
LB compute : 394.03 us (95.1%)
LB move op cnt : 0
LB apply : 3.75 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.85 us (73.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 | 6.1011e+05 | 262144 | 1 | 4.297e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.427867755304877 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.2477248210905311, dt = 0.0016026320015174523
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1854.00 ns (0.4%)
gen split merge : 932.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 862.00 ns (0.2%)
LB compute : 394.27 us (95.0%)
LB move op cnt : 0
LB apply : 3.87 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.01 us (75.4%)
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 | 5.9262e+05 | 262144 | 1 | 4.423e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.042923738816937 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.24932745309204854, dt = 0.001602618642036081
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.4%)
patch tree reduce : 2.20 us (0.5%)
gen split merge : 942.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 892.00 ns (0.2%)
LB compute : 430.60 us (95.4%)
LB move op cnt : 0
LB apply : 4.17 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.79 us (74.8%)
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 | 6.0915e+05 | 262144 | 1 | 4.303e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.406531818086853 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.2509300717340846, dt = 0.0016026063479063826
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (0.3%)
patch tree reduce : 1724.00 ns (0.1%)
gen split merge : 1022.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 1262.00 ns (0.0%)
LB compute : 2.50 ms (99.1%)
LB move op cnt : 0
LB apply : 5.09 us (0.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.55 us (81.7%)
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 | 6.1168e+05 | 262144 | 1 | 4.286e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.46221817022547 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.252532678081991, dt = 0.001602595141448852
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (0.8%)
patch tree reduce : 2.03 us (0.2%)
gen split merge : 952.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 872.00 ns (0.1%)
LB compute : 830.46 us (97.6%)
LB move op cnt : 0
LB apply : 4.01 us (0.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.53 us (77.7%)
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 | 5.9830e+05 | 262144 | 1 | 4.381e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.1675688826972 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.2541352732234398, dt = 0.0016025850315267217
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (1.7%)
patch tree reduce : 1823.00 ns (0.4%)
gen split merge : 962.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1333.00 ns (0.3%)
LB compute : 405.92 us (95.0%)
LB move op cnt : 0
LB apply : 3.53 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.35 us (71.8%)
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 | 6.0853e+05 | 262144 | 1 | 4.308e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.392521454524104 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.25573785825496653, dt = 0.0016025760059287988
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (0.5%)
patch tree reduce : 2.14 us (0.2%)
gen split merge : 951.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 872.00 ns (0.1%)
LB compute : 1330.55 us (98.5%)
LB move op cnt : 0
LB apply : 3.65 us (0.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.16 us (76.5%)
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 | 6.2273e+05 | 262144 | 1 | 4.210e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.704993566438244 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.2573404342608953, dt = 0.0016025680269904812
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 2.08 us (0.6%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 872.00 ns (0.2%)
LB compute : 337.66 us (94.4%)
LB move op cnt : 0
LB apply : 3.53 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.03 us (74.0%)
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 | 6.2204e+05 | 262144 | 1 | 4.214e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.689706284160158 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.2589430022878858, dt = 0.001602560993914686
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.6%)
patch tree reduce : 1984.00 ns (0.5%)
gen split merge : 932.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 881.00 ns (0.2%)
LB compute : 413.97 us (95.0%)
LB move op cnt : 0
LB apply : 4.07 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.18 us (75.7%)
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 | 6.2250e+05 | 262144 | 1 | 4.211e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.699944307281568 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.2605455632818005, dt = 0.0016025547701569295
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1833.00 ns (0.4%)
gen split merge : 942.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 991.00 ns (0.2%)
LB compute : 458.72 us (95.6%)
LB move op cnt : 0
LB apply : 4.16 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.14 us (74.9%)
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 | 6.2575e+05 | 262144 | 1 | 4.189e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.771375116174122 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.2621481180519574, dt = 0.0016025491912915204
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1833.00 ns (0.5%)
gen split merge : 1212.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 862.00 ns (0.2%)
LB compute : 348.81 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.94 us (73.4%)
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 | 6.3252e+05 | 262144 | 1 | 4.144e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.920337823052943 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.26375066724324897, dt = 0.0008326660900843663
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1834.00 ns (0.5%)
gen split merge : 1032.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1142.00 ns (0.3%)
LB compute : 373.98 us (94.8%)
LB move op cnt : 0
LB apply : 4.01 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.08 us (76.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 | 6.2819e+05 | 262144 | 1 | 4.173e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7.1832923814860745 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 83.982708106 (s) [Godunov][rank=0]
Info: dump to _to_trash/ramses_kh/periodic_0003.vtk [VTK Dump][rank=0]
- took 55.38 ms, bandwidth = 704.18 MB/s
amr::Godunov: t = 0.26458333333333334, dt = 0.0016025417771585284
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.2%)
patch tree reduce : 1914.00 ns (0.3%)
gen split merge : 952.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1012.00 ns (0.2%)
LB compute : 566.76 us (96.4%)
LB move op cnt : 0
LB apply : 3.69 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.83 us (69.3%)
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 | 5.9007e+05 | 262144 | 1 | 4.443e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12.986064537236528 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.26618587511049185, dt = 0.0016025360945466586
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 2.06 us (0.4%)
gen split merge : 942.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 861.00 ns (0.2%)
LB compute : 441.41 us (95.4%)
LB move op cnt : 0
LB apply : 4.21 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.05 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 | 6.1260e+05 | 262144 | 1 | 4.279e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.481691493322725 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.2677884112050385, dt = 0.001602530514104948
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1753.00 ns (0.4%)
gen split merge : 932.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1203.00 ns (0.3%)
LB compute : 400.57 us (95.1%)
LB move op cnt : 0
LB apply : 3.57 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.83 us (74.5%)
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 | 6.2377e+05 | 262144 | 1 | 4.203e-01 | 0.0% | 0.4% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.727637080095514 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.26939094171914346, dt = 0.0016025249846407937
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 2.07 us (0.5%)
gen split merge : 932.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1273.00 ns (0.3%)
LB compute : 382.35 us (94.8%)
LB move op cnt : 0
LB apply : 3.51 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.81 us (72.7%)
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 | 6.3164e+05 | 262144 | 1 | 4.150e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.900641610281836 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.27099346670378427, dt = 0.0016025193121023827
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (0.2%)
patch tree reduce : 1723.00 ns (0.0%)
gen split merge : 931.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 932.00 ns (0.0%)
LB compute : 4.49 ms (99.5%)
LB move op cnt : 0
LB apply : 4.14 us (0.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.61 us (77.3%)
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 | 6.1427e+05 | 262144 | 1 | 4.268e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.518293929403548 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.27259598601588664, dt = 0.0016025132517936145
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.2%)
patch tree reduce : 1884.00 ns (0.3%)
gen split merge : 962.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 871.00 ns (0.2%)
LB compute : 541.04 us (96.4%)
LB move op cnt : 0
LB apply : 3.88 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.98 us (73.0%)
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 | 6.1338e+05 | 262144 | 1 | 4.274e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.498674323582291 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.27419849926768025, dt = 0.001602506539923966
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.6%)
patch tree reduce : 2.24 us (0.5%)
gen split merge : 952.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 971.00 ns (0.2%)
LB compute : 410.44 us (95.1%)
LB move op cnt : 0
LB apply : 3.82 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.18 us (75.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 | 6.2496e+05 | 262144 | 1 | 4.195e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.753489814540009 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.2758010058076042, dt = 0.0016024989225039805
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.6%)
patch tree reduce : 2.08 us (0.5%)
gen split merge : 942.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.2%)
LB compute : 402.55 us (95.1%)
LB move op cnt : 0
LB apply : 3.62 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.75 us (73.7%)
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 | 6.3423e+05 | 262144 | 1 | 4.133e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.957561554374156 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.27740350473010816, dt = 0.0016024901786145726
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1633.00 ns (0.4%)
gen split merge : 1082.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1213.00 ns (0.3%)
LB compute : 345.65 us (94.5%)
LB move op cnt : 0
LB apply : 3.44 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.81 us (71.5%)
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 | 6.2713e+05 | 262144 | 1 | 4.180e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.801140435755036 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.27900599490872274, dt = 0.001602480130460897
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1733.00 ns (0.4%)
gen split merge : 1032.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1162.00 ns (0.3%)
LB compute : 389.19 us (95.0%)
LB move op cnt : 0
LB apply : 3.76 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.07 us (75.9%)
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 | 6.3101e+05 | 262144 | 1 | 4.154e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.88642066326948 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.2806084750391836, dt = 0.0016024686556206256
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.4%)
patch tree reduce : 1733.00 ns (0.4%)
gen split merge : 942.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1233.00 ns (0.3%)
LB compute : 421.71 us (95.5%)
LB move op cnt : 0
LB apply : 3.76 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.30 us (78.0%)
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 | 6.2575e+05 | 262144 | 1 | 4.189e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.770602722460238 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.28221094369480426, dt = 0.0016024556909253584
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1794.00 ns (0.4%)
gen split merge : 941.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.2%)
LB compute : 390.59 us (95.1%)
LB move op cnt : 0
LB apply : 3.69 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.06 us (75.5%)
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 | 6.2552e+05 | 262144 | 1 | 4.191e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.76546335659346 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.28381339938572964, dt = 0.0016024412242367945
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (0.4%)
patch tree reduce : 1924.00 ns (0.1%)
gen split merge : 942.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 981.00 ns (0.1%)
LB compute : 1658.15 us (98.8%)
LB move op cnt : 0
LB apply : 3.64 us (0.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.23 us (73.9%)
Info: cfl dt = 0.0016024252800086625 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 6.2204e+05 | 262144 | 1 | 4.214e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.688687565831078 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.28541584060996644, dt = 0.0016024252800086625
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.20 us (1.8%)
patch tree reduce : 1623.00 ns (0.4%)
gen split merge : 1202.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 931.00 ns (0.2%)
LB compute : 373.03 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.81 us (75.7%)
Info: cfl dt = 0.0016024079031118626 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 6.2176e+05 | 262144 | 1 | 4.216e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.682502201982725 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.2870182658899751, dt = 0.0016024079031118626
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1974.00 ns (0.6%)
gen split merge : 962.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1122.00 ns (0.3%)
LB compute : 338.15 us (94.2%)
LB move op cnt : 0
LB apply : 3.68 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.52 us (78.0%)
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 | 6.2716e+05 | 262144 | 1 | 4.180e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.801138144252707 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.2886206737930869, dt = 0.0016023891438644651
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.3%)
patch tree reduce : 1713.00 ns (0.3%)
gen split merge : 922.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.2%)
LB compute : 541.38 us (96.3%)
LB move op cnt : 0
LB apply : 3.49 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.33 us (74.1%)
Info: cfl dt = 0.001602369051508574 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 6.1359e+05 | 262144 | 1 | 4.272e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.50225427505543 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.2902230629369514, dt = 0.001602369051508574
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (0.5%)
patch tree reduce : 1623.00 ns (0.1%)
gen split merge : 1052.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 852.00 ns (0.1%)
LB compute : 1533.97 us (98.6%)
LB move op cnt : 0
LB apply : 3.93 us (0.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.10 us (76.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 | 6.2110e+05 | 262144 | 1 | 4.221e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.667342945678405 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.29182543198845995, dt = 0.0016023476665227067
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1884.00 ns (0.4%)
gen split merge : 982.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 952.00 ns (0.2%)
LB compute : 398.88 us (95.0%)
LB move op cnt : 0
LB apply : 3.94 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.24 us (73.7%)
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 | 6.2499e+05 | 262144 | 1 | 4.194e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.75273323587175 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.2934277796549827, dt = 0.0016023250145430188
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.8%)
patch tree reduce : 1744.00 ns (0.4%)
gen split merge : 952.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 942.00 ns (0.2%)
LB compute : 378.84 us (94.8%)
LB move op cnt : 0
LB apply : 3.56 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.32 us (77.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 | 6.0047e+05 | 262144 | 1 | 4.366e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.213008205750109 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.2950301046695257, dt = 0.0016023011227223423
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1723.00 ns (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 : 336.65 us (94.4%)
LB move op cnt : 0
LB apply : 3.53 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.79 us (74.6%)
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 | 6.1994e+05 | 262144 | 1 | 4.229e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.641316520306304 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.29663240579224803, dt = 0.0016022760230872191
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (0.1%)
patch tree reduce : 1883.00 ns (0.0%)
gen split merge : 1233.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.0%)
LB compute : 6.14 ms (99.7%)
LB move op cnt : 0
LB apply : 3.70 us (0.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.02 us (74.9%)
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 | 6.0876e+05 | 262144 | 1 | 4.306e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.39501643469901 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.29823468181533525, dt = 0.0016022497563128008
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1923.00 ns (0.5%)
gen split merge : 952.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 912.00 ns (0.2%)
LB compute : 381.49 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.19 us (77.2%)
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 | 6.2372e+05 | 262144 | 1 | 4.203e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.724014550189265 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.29983693157164804, dt = 0.001602222383191543
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (1.5%)
patch tree reduce : 1803.00 ns (0.4%)
gen split merge : 1102.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 961.00 ns (0.2%)
LB compute : 453.30 us (95.5%)
LB move op cnt : 0
LB apply : 3.88 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.14 us (76.2%)
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 | 6.2177e+05 | 262144 | 1 | 4.216e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.680932669241024 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.30143915395483956, dt = 0.001602193997241775
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.8%)
patch tree reduce : 1783.00 ns (0.4%)
gen split merge : 1292.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.2%)
LB compute : 380.27 us (94.6%)
LB move op cnt : 0
LB apply : 4.20 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.89 us (74.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.2891e+05 | 262144 | 1 | 4.168e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.83773778133912 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.3030413479520813, dt = 0.0016021647133325414
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.45 us (0.1%)
patch tree reduce : 1794.00 ns (0.0%)
gen split merge : 972.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 942.00 ns (0.0%)
LB compute : 6.16 ms (99.7%)
LB move op cnt : 0
LB apply : 3.63 us (0.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.85 us (74.9%)
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 | 6.0052e+05 | 262144 | 1 | 4.365e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.212838658687073 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.30464351266541384, dt = 0.001602134649340823
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1993.00 ns (0.5%)
gen split merge : 961.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 852.00 ns (0.2%)
LB compute : 362.23 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.77 us (73.3%)
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 | 6.2693e+05 | 262144 | 1 | 4.181e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.793671068115726 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.3062456473147547, dt = 0.0016021039177207764
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (1.9%)
patch tree reduce : 1864.00 ns (0.5%)
gen split merge : 981.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 872.00 ns (0.2%)
LB compute : 376.29 us (94.7%)
LB move op cnt : 0
LB apply : 3.50 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.34 us (74.5%)
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 | 6.2880e+05 | 262144 | 1 | 4.169e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.834488806242865 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.30784775123247543, dt = 0.0016020726252469596
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1754.00 ns (0.4%)
gen split merge : 1062.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1343.00 ns (0.3%)
LB compute : 393.15 us (94.9%)
LB move op cnt : 0
LB apply : 3.93 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.53 us (74.6%)
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 | 6.2036e+05 | 262144 | 1 | 4.226e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.648546956014108 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.3094498238577224, dt = 0.0016020408737602437
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.5%)
patch tree reduce : 1854.00 ns (0.4%)
gen split merge : 952.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 941.00 ns (0.2%)
LB compute : 420.29 us (95.3%)
LB move op cnt : 0
LB apply : 3.98 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.26 us (76.3%)
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 | 6.2134e+05 | 262144 | 1 | 4.219e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.669945134358883 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.31105186473148266, dt = 0.001602008766153024
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 2.17 us (0.5%)
gen split merge : 951.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 861.00 ns (0.2%)
LB compute : 375.22 us (94.8%)
LB move op cnt : 0
LB apply : 3.62 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.81 us (73.1%)
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 | 6.3085e+05 | 262144 | 1 | 4.155e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.878821451524662 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.3126538734976357, dt = 0.0016019764022026243
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1923.00 ns (0.5%)
gen split merge : 942.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1042.00 ns (0.3%)
LB compute : 363.37 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.98 us (71.7%)
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 | 6.1487e+05 | 262144 | 1 | 4.263e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.52704023783887 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.3142558498998383, dt = 0.001601943887973894
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1833.00 ns (0.5%)
gen split merge : 982.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 871.00 ns (0.2%)
LB compute : 373.72 us (94.9%)
LB move op cnt : 0
LB apply : 3.97 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.72 us (77.0%)
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 | 6.1645e+05 | 262144 | 1 | 4.252e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.561558195561268 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.3158577937878122, dt = 0.001601911178735256
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.6%)
patch tree reduce : 1843.00 ns (0.4%)
gen split merge : 972.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.2%)
LB compute : 411.06 us (95.2%)
LB move op cnt : 0
LB apply : 3.66 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.24 us (76.2%)
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 | 6.2343e+05 | 262144 | 1 | 4.205e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.714699026301599 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.31745970496654746, dt = 0.0016018756770598823
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.16 us (1.7%)
patch tree reduce : 1724.00 ns (0.4%)
gen split merge : 962.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.2%)
LB compute : 402.42 us (94.9%)
LB move op cnt : 0
LB apply : 4.50 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.75 us (73.5%)
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 | 6.2330e+05 | 262144 | 1 | 4.206e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.71161544618843 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.31906158064360735, dt = 0.0016018409803932876
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1713.00 ns (0.4%)
gen split merge : 962.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 932.00 ns (0.2%)
LB compute : 399.78 us (95.1%)
LB move op cnt : 0
LB apply : 3.70 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.21 us (76.4%)
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 | 6.2303e+05 | 262144 | 1 | 4.208e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.705307169879262 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.32066342162400063, dt = 0.0016018071617333479
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.5%)
patch tree reduce : 1984.00 ns (0.5%)
gen split merge : 982.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 952.00 ns (0.2%)
LB compute : 411.15 us (95.2%)
LB move op cnt : 0
LB apply : 3.57 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.92 us (72.8%)
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 | 6.2595e+05 | 262144 | 1 | 4.188e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.769245443551487 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.322265228785734, dt = 0.0016017742784902361
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.9%)
patch tree reduce : 1613.00 ns (0.4%)
gen split merge : 982.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1192.00 ns (0.3%)
LB compute : 338.68 us (94.2%)
LB move op cnt : 0
LB apply : 3.79 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.57 us (71.4%)
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.2668e+05 | 262144 | 1 | 4.183e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.785105359454914 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.3238670030642242, dt = 0.0016017423768266406
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (0.7%)
patch tree reduce : 1784.00 ns (0.2%)
gen split merge : 1252.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 942.00 ns (0.1%)
LB compute : 888.65 us (97.7%)
LB move op cnt : 0
LB apply : 3.59 us (0.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.69 us (72.7%)
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 | 6.1999e+05 | 262144 | 1 | 4.228e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.637726134523541 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.32546874544105087, dt = 0.001601711496285393
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1934.00 ns (0.5%)
gen split merge : 932.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 922.00 ns (0.2%)
LB compute : 402.76 us (95.3%)
LB move op cnt : 0
LB apply : 3.68 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.04 us (74.3%)
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 | 6.2362e+05 | 262144 | 1 | 4.204e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.717222721311657 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.3270704569373363, dt = 0.001601681681915918
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1713.00 ns (0.4%)
gen split merge : 932.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 971.00 ns (0.2%)
LB compute : 378.17 us (94.8%)
LB move op cnt : 0
LB apply : 3.67 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.54 us (76.4%)
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 | 6.2264e+05 | 262144 | 1 | 4.210e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.695448104441638 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.3286721386192522, dt = 0.0016016529714352628
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1753.00 ns (0.5%)
gen split merge : 932.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 872.00 ns (0.2%)
LB compute : 353.85 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.24 us (76.9%)
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 | 6.2735e+05 | 262144 | 1 | 4.179e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.798858544082874 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.3302737915906875, dt = 0.0016016253985030235
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1643.00 ns (0.4%)
gen split merge : 932.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.3%)
LB compute : 351.15 us (94.5%)
LB move op cnt : 0
LB apply : 3.72 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.98 us (74.3%)
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 | 6.2385e+05 | 262144 | 1 | 4.202e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.721606435450935 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.3318754169891905, dt = 0.0016015989941759593
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1783.00 ns (0.5%)
gen split merge : 942.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 952.00 ns (0.2%)
LB compute : 368.62 us (94.7%)
LB move op cnt : 0
LB apply : 3.92 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.19 us (76.6%)
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 | 6.2292e+05 | 262144 | 1 | 4.208e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.70089729968083 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.33347701598336643, dt = 0.001601573775884245
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.7%)
patch tree reduce : 1773.00 ns (0.4%)
gen split merge : 942.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 861.00 ns (0.2%)
LB compute : 395.00 us (94.9%)
LB move op cnt : 0
LB apply : 4.13 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.08 us (77.1%)
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.1930e+05 | 262144 | 1 | 4.233e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.621091879031805 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.3350785897592507, dt = 0.0016015497392883426
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (0.1%)
patch tree reduce : 1943.00 ns (0.0%)
gen split merge : 952.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 952.00 ns (0.0%)
LB compute : 5.04 ms (99.6%)
LB move op cnt : 0
LB apply : 3.60 us (0.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.90 us (74.3%)
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 | 6.1623e+05 | 262144 | 1 | 4.254e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.553430746450676 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.33668013949853903, dt = 0.0016015268443224833
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (0.1%)
patch tree reduce : 1783.00 ns (0.0%)
gen split merge : 952.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.0%)
LB compute : 6.17 ms (99.7%)
LB move op cnt : 0
LB apply : 3.72 us (0.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.94 us (76.2%)
Info: cfl dt = 0.001601503915120408 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 6.0869e+05 | 262144 | 1 | 4.307e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.387404655085177 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.3382816663428615, dt = 0.001601503915120408
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.8%)
patch tree reduce : 1713.00 ns (0.4%)
gen split merge : 962.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 862.00 ns (0.2%)
LB compute : 390.66 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.85 us (75.2%)
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 | 6.2199e+05 | 262144 | 1 | 4.215e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.679679915238745 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.3398831702579819, dt = 0.0016014808660209762
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.23 us (1.9%)
patch tree reduce : 1794.00 ns (0.5%)
gen split merge : 1022.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 932.00 ns (0.2%)
LB compute : 359.36 us (94.3%)
LB move op cnt : 0
LB apply : 3.97 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.94 us (74.5%)
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 | 6.2353e+05 | 262144 | 1 | 4.204e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.713301204986513 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.3414846511240029, dt = 0.0016014589133295047
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1683.00 ns (0.4%)
gen split merge : 931.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 921.00 ns (0.2%)
LB compute : 394.70 us (95.2%)
LB move op cnt : 0
LB apply : 3.54 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.84 us (72.9%)
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 | 6.2248e+05 | 262144 | 1 | 4.211e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.690071339312205 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.3430861100373324, dt = 0.0016014380930513008
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.63 us (1.6%)
patch tree reduce : 1713.00 ns (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 : 465.81 us (95.5%)
LB move op cnt : 0
LB apply : 4.07 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.41 us (79.6%)
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 | 6.2188e+05 | 262144 | 1 | 4.215e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.67671744428242 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.3446875481303837, dt = 0.001601418415676683
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1713.00 ns (0.4%)
gen split merge : 1012.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1152.00 ns (0.3%)
LB compute : 369.84 us (94.7%)
LB move op cnt : 0
LB apply : 3.61 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.22 us (75.7%)
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 | 6.2025e+05 | 262144 | 1 | 4.226e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.640515202380437 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.3462889665460604, dt = 0.0016013998537284632
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 2.07 us (0.6%)
gen split merge : 941.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1192.00 ns (0.3%)
LB compute : 342.01 us (94.1%)
LB move op cnt : 0
LB apply : 3.75 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.79 us (75.4%)
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 | 6.2493e+05 | 262144 | 1 | 4.195e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.743409337567552 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.3478903663997889, dt = 0.0016013824120977886
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1984.00 ns (0.5%)
gen split merge : 1122.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.2%)
LB compute : 372.06 us (94.7%)
LB move op cnt : 0
LB apply : 3.56 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.71 us (74.6%)
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 | 6.3074e+05 | 262144 | 1 | 4.156e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.871027453227601 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.34949174881188666, dt = 0.0016013660677198886
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1723.00 ns (0.4%)
gen split merge : 981.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1142.00 ns (0.3%)
LB compute : 369.44 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.77 us (73.7%)
Info: cfl dt = 0.0016013507942590534 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 6.3017e+05 | 262144 | 1 | 4.160e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.858265210455139 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.35109311487960654, dt = 0.0016013507942590534
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (0.2%)
patch tree reduce : 1934.00 ns (0.0%)
gen split merge : 922.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 882.00 ns (0.0%)
LB compute : 4.53 ms (99.5%)
LB move op cnt : 0
LB apply : 3.98 us (0.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.02 us (74.5%)
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 | 6.1628e+05 | 262144 | 1 | 4.254e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.552761625613536 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.3526944656738656, dt = 0.0016013365488530833
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1774.00 ns (0.5%)
gen split merge : 922.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1222.00 ns (0.3%)
LB compute : 346.07 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.63 us (70.7%)
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 | 6.2427e+05 | 262144 | 1 | 4.199e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.728365239849726 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.35429580222271867, dt = 0.0016013232719616754
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.2%)
patch tree reduce : 1994.00 ns (0.4%)
gen split merge : 1082.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 952.00 ns (0.2%)
LB compute : 546.66 us (96.4%)
LB move op cnt : 0
LB apply : 3.57 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.41 us (75.2%)
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 | 6.2373e+05 | 262144 | 1 | 4.203e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.716359737820948 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.35589712549468033, dt = 0.001601310890567654
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1744.00 ns (0.4%)
gen split merge : 941.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 871.00 ns (0.2%)
LB compute : 383.08 us (91.0%)
LB move op cnt : 0
LB apply : 3.64 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.99 us (73.4%)
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 | 6.3126e+05 | 262144 | 1 | 4.153e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.881814960151845 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.357498436385248, dt = 0.0016012993219697512
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1713.00 ns (0.4%)
gen split merge : 1002.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 951.00 ns (0.2%)
LB compute : 364.57 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.29 us (75.6%)
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 | 6.2474e+05 | 262144 | 1 | 4.196e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.738451718559817 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.3590997357072177, dt = 0.001601288478049059
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (0.5%)
patch tree reduce : 1754.00 ns (0.1%)
gen split merge : 931.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 961.00 ns (0.1%)
LB compute : 1439.64 us (98.6%)
LB move op cnt : 0
LB apply : 3.82 us (0.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.66 us (75.9%)
Info: cfl dt = 0.0016012782690770656 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 6.1910e+05 | 262144 | 1 | 4.234e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.614210303206441 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.3607010241852668, dt = 0.0016012782690770656
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.5%)
patch tree reduce : 1763.00 ns (0.4%)
gen split merge : 931.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 971.00 ns (0.2%)
LB compute : 481.39 us (95.8%)
LB move op cnt : 0
LB apply : 3.52 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 19.73 us (93.8%)
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 | 6.2835e+05 | 262144 | 1 | 4.172e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.817620965412944 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.36230230245434386, dt = 0.0016012686053856653
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.2%)
patch tree reduce : 1763.00 ns (0.3%)
gen split merge : 1072.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 942.00 ns (0.2%)
LB compute : 583.28 us (96.5%)
LB move op cnt : 0
LB apply : 3.90 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.02 us (74.1%)
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 | 6.2430e+05 | 262144 | 1 | 4.199e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.728472972433533 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.36390357105972954, dt = 0.0016012593988566166
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (0.6%)
patch tree reduce : 2.00 us (0.2%)
gen split merge : 922.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 852.00 ns (0.1%)
LB compute : 1012.03 us (98.0%)
LB move op cnt : 0
LB apply : 4.01 us (0.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.22 us (75.0%)
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 | 6.1211e+05 | 262144 | 1 | 4.283e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.460310297089826 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.36550483045858617, dt = 0.0016012505632472084
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (0.1%)
patch tree reduce : 1643.00 ns (0.0%)
gen split merge : 1133.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 902.00 ns (0.0%)
LB compute : 6.17 ms (99.7%)
LB move op cnt : 0
LB apply : 4.16 us (0.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.69 us (77.5%)
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 | 6.1144e+05 | 262144 | 1 | 4.287e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.445484536933058 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.3671060810218334, dt = 0.0016012420141178355
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1733.00 ns (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 : 405.76 us (95.3%)
LB move op cnt : 0
LB apply : 3.93 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.01 us (73.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 | 6.2433e+05 | 262144 | 1 | 4.199e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.72886434621228 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.3687073230359512, dt = 0.0016012336688118719
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1863.00 ns (0.5%)
gen split merge : 952.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 892.00 ns (0.2%)
LB compute : 382.57 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.10 us (74.9%)
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 | 6.2684e+05 | 262144 | 1 | 4.182e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.784006501083296 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.3703085567047631, dt = 0.0016012254464421265
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.9%)
patch tree reduce : 1714.00 ns (0.2%)
gen split merge : 941.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 952.00 ns (0.1%)
LB compute : 744.67 us (97.3%)
LB move op cnt : 0
LB apply : 3.68 us (0.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.43 us (76.7%)
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 | 6.2259e+05 | 262144 | 1 | 4.211e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.69048646247376 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.37190978215120524, dt = 0.0016012172688763468
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.7%)
patch tree reduce : 1853.00 ns (0.4%)
gen split merge : 991.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 891.00 ns (0.2%)
LB compute : 405.05 us (94.9%)
LB move op cnt : 0
LB apply : 4.31 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.49 us (78.0%)
Info: cfl dt = 0.001601209062158391 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 6.3082e+05 | 262144 | 1 | 4.156e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.871245575903485 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.3735109994200816, dt = 0.001601209062158391
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.4%)
patch tree reduce : 1763.00 ns (0.4%)
gen split merge : 962.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 961.00 ns (0.2%)
LB compute : 458.11 us (95.7%)
LB move op cnt : 0
LB apply : 3.64 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.00 us (75.7%)
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 | 6.1829e+05 | 262144 | 1 | 4.240e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.595817693063871 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.37511220848224, dt = 0.0016012007580546194
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (1.9%)
patch tree reduce : 1814.00 ns (0.5%)
gen split merge : 1172.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 932.00 ns (0.3%)
LB compute : 348.03 us (94.3%)
LB move op cnt : 0
LB apply : 3.76 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.19 us (74.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 | 6.3256e+05 | 262144 | 1 | 4.144e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.909427628951942 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.3767134092402946, dt = 0.0016011922960076812
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (0.1%)
patch tree reduce : 2.02 us (0.0%)
gen split merge : 932.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 942.00 ns (0.0%)
LB compute : 4.59 ms (99.5%)
LB move op cnt : 0
LB apply : 3.94 us (0.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.91 us (74.2%)
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 | 6.1358e+05 | 262144 | 1 | 4.272e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.492082430167974 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.3783146015363023, dt = 0.0016011836239350305
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1613.00 ns (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 : 376.17 us (95.0%)
LB move op cnt : 0
LB apply : 3.59 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.12 us (73.0%)
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 | 6.3462e+05 | 262144 | 1 | 4.131e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.954642831842918 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.37991578516023733, dt = 0.001601174697989259
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1713.00 ns (0.4%)
gen split merge : 922.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.2%)
LB compute : 391.72 us (95.0%)
LB move op cnt : 0
LB apply : 4.02 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.06 us (76.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 | 6.2931e+05 | 262144 | 1 | 4.166e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.837725656726644 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.3815169598582266, dt = 0.0016011654823490308
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.5%)
patch tree reduce : 1733.00 ns (0.4%)
gen split merge : 962.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 891.00 ns (0.2%)
LB compute : 400.48 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.07 us (75.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 | 6.1617e+05 | 262144 | 1 | 4.254e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.548762538168296 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.3831181253405756, dt = 0.001601155949595148
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.5%)
patch tree reduce : 1723.00 ns (0.4%)
gen split merge : 921.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 941.00 ns (0.2%)
LB compute : 419.46 us (95.4%)
LB move op cnt : 0
LB apply : 3.90 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.11 us (74.9%)
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 | 6.2915e+05 | 262144 | 1 | 4.167e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.834089323004937 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.38471928129017074, dt = 0.0016011460818979996
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.05 us (1.6%)
patch tree reduce : 2.05 us (0.5%)
gen split merge : 932.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.2%)
LB compute : 415.29 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.30 us (73.9%)
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 | 6.2779e+05 | 262144 | 1 | 4.176e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.804104188652323 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.38632042737206873, dt = 0.0016011358727820578
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1753.00 ns (0.4%)
gen split merge : 952.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 952.00 ns (0.2%)
LB compute : 376.62 us (94.8%)
LB move op cnt : 0
LB apply : 3.63 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.28 us (72.8%)
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 | 6.2950e+05 | 262144 | 1 | 4.164e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.841619706341103 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.3879215632448508, dt = 0.0016011253287173991
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (0.5%)
patch tree reduce : 1703.00 ns (0.1%)
gen split merge : 952.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 932.00 ns (0.1%)
LB compute : 1226.74 us (98.3%)
LB move op cnt : 0
LB apply : 4.41 us (0.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.95 us (71.6%)
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.2450e+05 | 262144 | 1 | 4.198e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.731474316706349 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.3895226885735682, dt = 0.001601114470122607
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1963.00 ns (0.5%)
gen split merge : 922.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 941.00 ns (0.2%)
LB compute : 362.30 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.24 us (69.8%)
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 | 6.3203e+05 | 262144 | 1 | 4.148e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.896953592704524 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.3911238030436908, dt = 0.0016011033342757898
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.5%)
patch tree reduce : 2.17 us (0.5%)
gen split merge : 982.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.2%)
LB compute : 407.55 us (91.8%)
LB move op cnt : 0
LB apply : 3.67 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.53 us (76.9%)
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 | 6.2347e+05 | 262144 | 1 | 4.205e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.708758311109694 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.3927249063779666, dt = 0.001601091978273763
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (0.1%)
patch tree reduce : 1944.00 ns (0.0%)
gen split merge : 922.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 862.00 ns (0.0%)
LB compute : 6.25 ms (99.7%)
LB move op cnt : 0
LB apply : 4.34 us (0.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.07 us (80.1%)
Info: cfl dt = 0.0016010804775843327 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 6.1441e+05 | 262144 | 1 | 4.267e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.509332195508218 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.3943259983562403, dt = 0.0016010804775843327
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1783.00 ns (0.5%)
gen split merge : 942.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 961.00 ns (0.3%)
LB compute : 344.75 us (94.5%)
LB move op cnt : 0
LB apply : 3.73 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 20.27 us (94.7%)
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 | 6.2361e+05 | 262144 | 1 | 4.204e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.71172499525462 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.39592707883382466, dt = 0.000947921166175314
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (0.5%)
patch tree reduce : 1753.00 ns (0.1%)
gen split merge : 932.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 1252.00 ns (0.1%)
LB compute : 1410.49 us (98.5%)
LB move op cnt : 0
LB apply : 4.10 us (0.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.86 us (73.7%)
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 | 6.3071e+05 | 262144 | 1 | 4.156e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8.210411797489236 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 119.47335693800001 (s) [Godunov][rank=0]
Info: dump to _to_trash/ramses_kh/periodic_0004.vtk [VTK Dump][rank=0]
- took 52.97 ms, bandwidth = 736.24 MB/s
amr::Godunov: t = 0.396875, dt = 0.001601066636316225
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.1%)
patch tree reduce : 1583.00 ns (0.0%)
gen split merge : 951.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 942.00 ns (0.0%)
LB compute : 5.28 ms (99.6%)
LB move op cnt : 0
LB apply : 3.94 us (0.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.85 us (71.2%)
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 | 5.9057e+05 | 262144 | 1 | 4.439e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12.98496909943969 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.3984760666363162, dt = 0.001601053119239654
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (0.2%)
patch tree reduce : 1984.00 ns (0.1%)
gen split merge : 972.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.0%)
LB compute : 3.54 ms (99.4%)
LB move op cnt : 0
LB apply : 4.05 us (0.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.30 us (76.9%)
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 | 6.2056e+05 | 262144 | 1 | 4.224e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.64442267280191 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.4000771197555558, dt = 0.0016010400506214263
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (0.4%)
patch tree reduce : 1703.00 ns (0.1%)
gen split merge : 942.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 852.00 ns (0.0%)
LB compute : 1712.85 us (98.8%)
LB move op cnt : 0
LB apply : 3.72 us (0.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.83 us (75.5%)
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 | 6.1663e+05 | 262144 | 1 | 4.251e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.557807991755126 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.40167815980617727, dt = 0.0016010278856867068
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (0.1%)
patch tree reduce : 1824.00 ns (0.0%)
gen split merge : 942.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 862.00 ns (0.0%)
LB compute : 5.27 ms (99.6%)
LB move op cnt : 0
LB apply : 4.09 us (0.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.94 us (74.6%)
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.1706e+05 | 262144 | 1 | 4.248e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.567100830118683 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.403279187691864, dt = 0.0016010168310408612
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.7%)
patch tree reduce : 1903.00 ns (0.2%)
gen split merge : 993.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 941.00 ns (0.1%)
LB compute : 911.07 us (97.8%)
LB move op cnt : 0
LB apply : 3.77 us (0.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.67 us (73.5%)
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 | 5.7730e+05 | 262144 | 1 | 4.541e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12.692773806822654 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.40488020452290485, dt = 0.0016010069945716677
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.0%)
patch tree reduce : 1934.00 ns (0.3%)
gen split merge : 942.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1092.00 ns (0.2%)
LB compute : 605.33 us (96.7%)
LB move op cnt : 0
LB apply : 3.68 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.06 us (75.0%)
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 | 5.9240e+05 | 262144 | 1 | 4.425e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.02476686124646 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.4064812115174765, dt = 0.001600998362382819
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (0.7%)
patch tree reduce : 1623.00 ns (0.2%)
gen split merge : 962.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 952.00 ns (0.1%)
LB compute : 955.49 us (97.9%)
LB move op cnt : 0
LB apply : 3.88 us (0.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.20 us (75.6%)
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 | 6.1570e+05 | 262144 | 1 | 4.258e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.537104269507017 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.4080822098798593, dt = 0.0016009908408472467
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (0.1%)
patch tree reduce : 1613.00 ns (0.0%)
gen split merge : 932.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 942.00 ns (0.0%)
LB compute : 5.10 ms (99.6%)
LB move op cnt : 0
LB apply : 3.92 us (0.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.72 us (74.8%)
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 | 6.1576e+05 | 262144 | 1 | 4.257e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.538330360024888 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.4096832007207066, dt = 0.0016009843107603306
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (0.2%)
patch tree reduce : 2.04 us (0.1%)
gen split merge : 952.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 882.00 ns (0.0%)
LB compute : 3.12 ms (99.3%)
LB move op cnt : 0
LB apply : 3.90 us (0.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.51 us (73.8%)
Info: cfl dt = 0.0016009786607424394 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 6.1899e+05 | 262144 | 1 | 4.235e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.609269378323848 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.4112841850314669, dt = 0.0016009786607424394
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (0.4%)
patch tree reduce : 1743.00 ns (0.1%)
gen split merge : 1233.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.1%)
LB compute : 1654.96 us (98.7%)
LB move op cnt : 0
LB apply : 4.37 us (0.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.56 us (78.5%)
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 | 6.2520e+05 | 262144 | 1 | 4.193e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.745758632887288 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.41288516369220934, dt = 0.0016009738370463252
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (0.3%)
patch tree reduce : 1653.00 ns (0.1%)
gen split merge : 1322.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 871.00 ns (0.0%)
LB compute : 2.03 ms (99.0%)
LB move op cnt : 0
LB apply : 3.66 us (0.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.13 us (76.5%)
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 | 6.2042e+05 | 262144 | 1 | 4.225e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.64065082371998 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.41448613752925567, dt = 0.0016009698496969886
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (0.8%)
patch tree reduce : 1703.00 ns (0.2%)
gen split merge : 951.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 961.00 ns (0.1%)
LB compute : 736.68 us (97.3%)
LB move op cnt : 0
LB apply : 3.55 us (0.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.71 us (71.2%)
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 | 6.2782e+05 | 262144 | 1 | 4.175e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.803258744323866 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.41608710737895266, dt = 0.0016009667843901254
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (0.1%)
patch tree reduce : 1984.00 ns (0.0%)
gen split merge : 942.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 991.00 ns (0.0%)
LB compute : 6.19 ms (99.6%)
LB move op cnt : 0
LB apply : 4.21 us (0.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.12 us (81.7%)
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 | 6.1465e+05 | 262144 | 1 | 4.265e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.513553226209833 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.4176880741633428, dt = 0.0016009647829416814
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (0.4%)
patch tree reduce : 1984.00 ns (0.1%)
gen split merge : 932.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 872.00 ns (0.1%)
LB compute : 1676.92 us (98.8%)
LB move op cnt : 0
LB apply : 3.60 us (0.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.36 us (77.7%)
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 | 6.2147e+05 | 262144 | 1 | 4.218e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.663499587614659 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.4192890389462845, dt = 0.0016009640131778382
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (0.6%)
patch tree reduce : 1933.00 ns (0.2%)
gen split merge : 962.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 872.00 ns (0.1%)
LB compute : 1071.45 us (98.1%)
LB move op cnt : 0
LB apply : 3.89 us (0.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.87 us (71.0%)
Info: cfl dt = 0.0016009646388346775 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 6.2177e+05 | 262144 | 1 | 4.216e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.670190358098628 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.42089000295946233, dt = 0.0016009646388346775
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (0.1%)
patch tree reduce : 1814.00 ns (0.0%)
gen split merge : 1022.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 862.00 ns (0.0%)
LB compute : 6.21 ms (99.7%)
LB move op cnt : 0
LB apply : 4.17 us (0.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.11 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 | 6.1452e+05 | 262144 | 1 | 4.266e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.510816551239703 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.422490967598297, dt = 0.001600966796700895
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (0.3%)
patch tree reduce : 1964.00 ns (0.1%)
gen split merge : 962.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 932.00 ns (0.0%)
LB compute : 2.02 ms (99.0%)
LB move op cnt : 0
LB apply : 4.06 us (0.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.79 us (76.5%)
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 | 6.2544e+05 | 262144 | 1 | 4.191e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.750946704946406 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.4240919343949979, dt = 0.0016009705820689722
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (0.2%)
patch tree reduce : 1743.00 ns (0.1%)
gen split merge : 942.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 871.00 ns (0.0%)
LB compute : 3.09 ms (99.3%)
LB move op cnt : 0
LB apply : 4.11 us (0.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.80 us (73.4%)
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 | 6.2007e+05 | 262144 | 1 | 4.228e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.632887218054643 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.4256929049770669, dt = 0.0016009756214165484
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (0.7%)
patch tree reduce : 2.10 us (0.2%)
gen split merge : 1142.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 861.00 ns (0.1%)
LB compute : 977.50 us (97.9%)
LB move op cnt : 0
LB apply : 3.51 us (0.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.04 us (76.0%)
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 | 5.9448e+05 | 262144 | 1 | 4.410e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.07024844406506 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.42729388059848344, dt = 0.0016009818461191286
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1652.00 ns (0.4%)
gen split merge : 941.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 912.00 ns (0.2%)
LB compute : 413.02 us (95.3%)
LB move op cnt : 0
LB apply : 3.93 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.20 us (75.4%)
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 | 6.0598e+05 | 262144 | 1 | 4.326e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.323244281880694 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.42889486244460256, dt = 0.001600989307593151
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.4%)
patch tree reduce : 1853.00 ns (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 : 467.06 us (95.7%)
LB move op cnt : 0
LB apply : 3.92 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.02 us (74.7%)
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 | 6.0727e+05 | 262144 | 1 | 4.317e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.351597195215867 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.43049585175219574, dt = 0.0016009980318315142
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.5%)
patch tree reduce : 1774.00 ns (0.4%)
gen split merge : 1162.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 862.00 ns (0.2%)
LB compute : 449.52 us (95.6%)
LB move op cnt : 0
LB apply : 3.66 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.16 us (77.6%)
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 | 6.2983e+05 | 262144 | 1 | 4.162e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.847585621474202 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.43209684978402724, dt = 0.0016010080150659555
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1623.00 ns (0.4%)
gen split merge : 1052.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1163.00 ns (0.3%)
LB compute : 387.99 us (94.9%)
LB move op cnt : 0
LB apply : 4.04 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.18 us (71.6%)
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 | 6.0807e+05 | 262144 | 1 | 4.311e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.369249850863048 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.4336978577990932, dt = 0.0016010192282721158
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.3%)
patch tree reduce : 1743.00 ns (0.3%)
gen split merge : 932.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 961.00 ns (0.2%)
LB compute : 515.16 us (96.1%)
LB move op cnt : 0
LB apply : 3.86 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.28 us (75.5%)
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.0726e+05 | 262144 | 1 | 4.317e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.351683071441625 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.4352988770273653, dt = 0.0016010316831425713
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (0.4%)
patch tree reduce : 1834.00 ns (0.1%)
gen split merge : 932.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 1113.00 ns (0.1%)
LB compute : 1656.07 us (98.7%)
LB move op cnt : 0
LB apply : 3.82 us (0.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.48 us (72.5%)
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.2781e+05 | 262144 | 1 | 4.176e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.803483192281327 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.4368999087105079, dt = 0.0016010453133179924
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (0.1%)
patch tree reduce : 1964.00 ns (0.0%)
gen split merge : 1002.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 872.00 ns (0.0%)
LB compute : 6.13 ms (99.7%)
LB move op cnt : 0
LB apply : 3.58 us (0.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.89 us (76.5%)
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 | 6.0410e+05 | 262144 | 1 | 4.339e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.282437219128704 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.4385009540238259, dt = 0.0016010600157422596
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (0.4%)
patch tree reduce : 1873.00 ns (0.1%)
gen split merge : 971.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 871.00 ns (0.0%)
LB compute : 1839.02 us (98.9%)
LB move op cnt : 0
LB apply : 3.62 us (0.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.63 us (75.7%)
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 | 6.1447e+05 | 262144 | 1 | 4.266e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.510487804374229 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.44010201403956817, dt = 0.0016010756536162809
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (0.1%)
patch tree reduce : 1893.00 ns (0.0%)
gen split merge : 1052.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 882.00 ns (0.0%)
LB compute : 5.41 ms (99.6%)
LB move op cnt : 0
LB apply : 3.80 us (0.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.63 us (72.3%)
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 | 6.1825e+05 | 262144 | 1 | 4.240e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.593708888938927 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.44170308969318445, dt = 0.0016010920740172551
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (0.1%)
patch tree reduce : 1893.00 ns (0.0%)
gen split merge : 932.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.0%)
LB compute : 6.15 ms (99.7%)
LB move op cnt : 0
LB apply : 4.02 us (0.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.35 us (77.0%)
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 | 5.7961e+05 | 262144 | 1 | 4.523e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12.744180830857722 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.4433041817672017, dt = 0.0016011091089298101
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 2.07 us (0.5%)
gen split merge : 942.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 861.00 ns (0.2%)
LB compute : 410.45 us (95.3%)
LB move op cnt : 0
LB apply : 3.65 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.36 us (71.1%)
Info: cfl dt = 0.0016011265875542074 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 6.3328e+05 | 262144 | 1 | 4.139e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.924587701833493 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.4449052908761315, dt = 0.0016011265875542074
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1944.00 ns (0.5%)
gen split merge : 1072.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 942.00 ns (0.2%)
LB compute : 366.68 us (94.6%)
LB move op cnt : 0
LB apply : 3.63 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.15 us (76.0%)
Info: cfl dt = 0.0016011443395750609 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 6.2687e+05 | 262144 | 1 | 4.182e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.783775085292913 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.4465064174636857, dt = 0.0016011443395750609
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (0.1%)
patch tree reduce : 1814.00 ns (0.0%)
gen split merge : 952.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.0%)
LB compute : 4.92 ms (99.6%)
LB move op cnt : 0
LB apply : 3.72 us (0.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.39 us (79.1%)
Info: cfl dt = 0.0016011621988228802 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 6.1962e+05 | 262144 | 1 | 4.231e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.624348762660313 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.4481075618032607, dt = 0.0016011621988228802
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1643.00 ns (0.4%)
gen split merge : 952.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 961.00 ns (0.2%)
LB compute : 435.87 us (95.6%)
LB move op cnt : 0
LB apply : 3.72 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.67 us (72.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 | 6.2058e+05 | 262144 | 1 | 4.224e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.645757314816093 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.4497087240020836, dt = 0.001601180002967935
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.64 us (1.7%)
patch tree reduce : 1633.00 ns (0.4%)
gen split merge : 1032.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 872.00 ns (0.2%)
LB compute : 440.44 us (95.3%)
LB move op cnt : 0
LB apply : 3.55 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.50 us (77.2%)
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 | 6.0941e+05 | 262144 | 1 | 4.302e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.400325843322697 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.45130990400505155, dt = 0.001601197580064649
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.3%)
patch tree reduce : 1723.00 ns (0.3%)
gen split merge : 1162.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1173.00 ns (0.2%)
LB compute : 490.02 us (95.9%)
LB move op cnt : 0
LB apply : 4.25 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.83 us (71.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 | 6.2386e+05 | 262144 | 1 | 4.202e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.718035207460671 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.4529111015851162, dt = 0.0016012147624888755
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (0.2%)
patch tree reduce : 1813.00 ns (0.1%)
gen split merge : 932.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 902.00 ns (0.0%)
LB compute : 2.93 ms (99.3%)
LB move op cnt : 0
LB apply : 4.00 us (0.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.83 us (75.5%)
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 | 6.1424e+05 | 262144 | 1 | 4.268e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.506686315264242 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.4545123163476051, dt = 0.0016012313950799864
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (0.1%)
patch tree reduce : 1674.00 ns (0.0%)
gen split merge : 1253.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.0%)
LB compute : 5.49 ms (99.6%)
LB move op cnt : 0
LB apply : 3.85 us (0.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.22 us (80.2%)
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 | 6.0992e+05 | 262144 | 1 | 4.298e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.411877403681064 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.4561135477426851, dt = 0.001601247334023342
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1923.00 ns (0.4%)
gen split merge : 942.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 862.00 ns (0.2%)
LB compute : 413.62 us (95.3%)
LB move op cnt : 0
LB apply : 3.54 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.57 us (74.9%)
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 | 6.1573e+05 | 262144 | 1 | 4.257e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.53984532842281 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.4577147950767084, dt = 0.001601262460163295
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.2%)
patch tree reduce : 1754.00 ns (0.1%)
gen split merge : 961.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 1352.00 ns (0.0%)
LB compute : 3.39 ms (99.4%)
LB move op cnt : 0
LB apply : 4.02 us (0.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.58 us (76.3%)
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 | 5.9866e+05 | 262144 | 1 | 4.379e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.164474822653927 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.4593160575368717, dt = 0.001601276681276416
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (0.5%)
patch tree reduce : 1773.00 ns (0.1%)
gen split merge : 962.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 872.00 ns (0.1%)
LB compute : 1420.57 us (98.6%)
LB move op cnt : 0
LB apply : 4.05 us (0.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.13 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 | 6.2310e+05 | 262144 | 1 | 4.207e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.702057310656672 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.4609173342181481, dt = 0.0016012899295218634
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (0.1%)
patch tree reduce : 1723.00 ns (0.0%)
gen split merge : 1012.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 1212.00 ns (0.0%)
LB compute : 6.16 ms (99.7%)
LB move op cnt : 0
LB apply : 3.96 us (0.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.02 us (77.1%)
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 | 6.1471e+05 | 262144 | 1 | 4.264e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.517776663633716 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.46251862414767, dt = 0.001601302158035694
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.4%)
patch tree reduce : 1944.00 ns (0.4%)
gen split merge : 951.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 952.00 ns (0.2%)
LB compute : 443.00 us (95.6%)
LB move op cnt : 0
LB apply : 3.75 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.66 us (77.8%)
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 | 6.1609e+05 | 262144 | 1 | 4.255e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.54816411570296 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.46411992630570564, dt = 0.001601313337896027
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (0.4%)
patch tree reduce : 1733.00 ns (0.1%)
gen split merge : 922.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 942.00 ns (0.1%)
LB compute : 1628.69 us (98.8%)
LB move op cnt : 0
LB apply : 3.76 us (0.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.25 us (77.0%)
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 | 6.1398e+05 | 262144 | 1 | 4.270e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.501953124313621 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.4657212396436017, dt = 0.0016013234541979702
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (0.1%)
patch tree reduce : 1733.00 ns (0.0%)
gen split merge : 932.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.0%)
LB compute : 5.08 ms (99.6%)
LB move op cnt : 0
LB apply : 4.18 us (0.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.43 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 | 5.9286e+05 | 262144 | 1 | 4.422e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.037526438481871 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.4673225630977996, dt = 0.0016013324996771042
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.5%)
patch tree reduce : 1753.00 ns (0.4%)
gen split merge : 982.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1002.00 ns (0.2%)
LB compute : 425.15 us (95.4%)
LB move op cnt : 0
LB apply : 3.39 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.62 us (69.6%)
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 | 6.0106e+05 | 262144 | 1 | 4.361e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.217892545566219 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.4689238955974767, dt = 0.0016013404702926578
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.2%)
patch tree reduce : 1713.00 ns (0.3%)
gen split merge : 951.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 952.00 ns (0.2%)
LB compute : 490.51 us (96.0%)
LB move op cnt : 0
LB apply : 3.97 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.47 us (78.1%)
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.2482e+05 | 262144 | 1 | 4.196e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.740397499942308 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.47052523606776936, dt = 0.0016013473652438104
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.50 us (1.1%)
patch tree reduce : 1873.00 ns (0.3%)
gen split merge : 1373.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 922.00 ns (0.1%)
LB compute : 658.35 us (96.7%)
LB move op cnt : 0
LB apply : 4.17 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.80 us (75.2%)
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 | 6.2379e+05 | 262144 | 1 | 4.202e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.717962147374427 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.47212658343301317, dt = 0.0016013532274397248
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (0.1%)
patch tree reduce : 1703.00 ns (0.0%)
gen split merge : 921.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 952.00 ns (0.0%)
LB compute : 6.33 ms (99.7%)
LB move op cnt : 0
LB apply : 4.44 us (0.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.71 us (78.4%)
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 | 6.1482e+05 | 262144 | 1 | 4.264e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.520608521854333 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.4737279366604529, dt = 0.001601358068570277
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (0.1%)
patch tree reduce : 1813.00 ns (0.0%)
gen split merge : 942.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 882.00 ns (0.0%)
LB compute : 6.20 ms (99.7%)
LB move op cnt : 0
LB apply : 4.18 us (0.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.75 us (74.7%)
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 | 6.0068e+05 | 262144 | 1 | 4.364e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.209793017630963 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.47532929472902313, dt = 0.001601361893906238
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.2%)
patch tree reduce : 2.15 us (0.1%)
gen split merge : 962.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 902.00 ns (0.0%)
LB compute : 3.49 ms (99.4%)
LB move op cnt : 0
LB apply : 4.04 us (0.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.58 us (77.9%)
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 | 6.1457e+05 | 262144 | 1 | 4.265e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.515243920218488 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.4769306566229294, dt = 0.0016013646768350362
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.2%)
patch tree reduce : 2.27 us (0.1%)
gen split merge : 972.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 912.00 ns (0.0%)
LB compute : 4.06 ms (99.5%)
LB move op cnt : 0
LB apply : 3.87 us (0.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.98 us (75.2%)
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 | 6.0346e+05 | 262144 | 1 | 4.344e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.270989013428093 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.4785320212997644, dt = 0.0016013663579055762
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (0.2%)
patch tree reduce : 1954.00 ns (0.0%)
gen split merge : 941.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.0%)
LB compute : 4.59 ms (99.5%)
LB move op cnt : 0
LB apply : 3.83 us (0.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.55 us (76.8%)
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 | 6.0743e+05 | 262144 | 1 | 4.316e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.358262391682198 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.48013338765767, dt = 0.0016013668921812671
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.6%)
patch tree reduce : 1723.00 ns (0.4%)
gen split merge : 1052.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1162.00 ns (0.3%)
LB compute : 404.70 us (95.1%)
LB move op cnt : 0
LB apply : 3.76 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.96 us (74.9%)
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 | 6.2123e+05 | 262144 | 1 | 4.220e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.661721872648108 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.48173475454985126, dt = 0.0016013662201985535
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 2.10 us (0.5%)
gen split merge : 1132.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1032.00 ns (0.2%)
LB compute : 384.36 us (91.2%)
LB move op cnt : 0
LB apply : 20.03 us (4.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.28 us (77.7%)
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 | 6.2170e+05 | 262144 | 1 | 4.217e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.672021765604205 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.48333612077004984, dt = 0.001601363871153486
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1864.00 ns (0.5%)
gen split merge : 951.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 952.00 ns (0.2%)
LB compute : 371.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 : 3.22 us (75.9%)
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 | 6.2334e+05 | 262144 | 1 | 4.205e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.70808007464443 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.48493748464120334, dt = 0.0016013599065358285
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1944.00 ns (0.5%)
gen split merge : 951.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 932.00 ns (0.2%)
LB compute : 354.58 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.11 us (72.1%)
Info: cfl dt = 0.0016013544497046014 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 6.0229e+05 | 262144 | 1 | 4.352e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.245150929753665 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.48653884454773916, dt = 0.0016013544497046014
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (0.2%)
patch tree reduce : 1793.00 ns (0.0%)
gen split merge : 952.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 872.00 ns (0.0%)
LB compute : 3.68 ms (99.4%)
LB move op cnt : 0
LB apply : 3.84 us (0.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 18.91 us (93.7%)
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 | 5.9435e+05 | 262144 | 1 | 4.411e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.070467894716167 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.48814019899744376, dt = 0.001601347644021806
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1794.00 ns (0.4%)
gen split merge : 1242.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.2%)
LB compute : 385.08 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.41 us (72.0%)
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.0600e+05 | 262144 | 1 | 4.326e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.32669251297534 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.4897415466414656, dt = 0.0016013396296300835
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.6%)
patch tree reduce : 1713.00 ns (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 : 410.90 us (95.3%)
LB move op cnt : 0
LB apply : 3.50 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.29 us (73.9%)
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 | 5.9466e+05 | 262144 | 1 | 4.408e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.077191698797717 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.4913428862710957, dt = 0.001601330552764748
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (0.3%)
patch tree reduce : 1763.00 ns (0.1%)
gen split merge : 962.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 892.00 ns (0.0%)
LB compute : 2.14 ms (99.0%)
LB move op cnt : 0
LB apply : 3.71 us (0.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.05 us (76.2%)
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 | 6.0324e+05 | 262144 | 1 | 4.346e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.265835782307164 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.4929442168238604, dt = 0.0016013205947100152
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (0.2%)
patch tree reduce : 2.09 us (0.1%)
gen split merge : 932.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 892.00 ns (0.0%)
LB compute : 3.04 ms (99.3%)
LB move op cnt : 0
LB apply : 4.06 us (0.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.75 us (77.8%)
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.1225e+05 | 262144 | 1 | 4.282e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.463938391650107 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.49454553741857044, dt = 0.0016013099238360467
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.70 us (0.4%)
patch tree reduce : 1733.00 ns (0.1%)
gen split merge : 992.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 951.00 ns (0.1%)
LB compute : 1856.15 us (98.9%)
LB move op cnt : 0
LB apply : 3.76 us (0.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.19 us (75.0%)
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 | 6.1807e+05 | 262144 | 1 | 4.241e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.591745101488653 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.4961468473424065, dt = 0.0016012987024565742
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.6%)
patch tree reduce : 1733.00 ns (0.4%)
gen split merge : 962.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1213.00 ns (0.3%)
LB compute : 390.66 us (95.0%)
LB move op cnt : 0
LB apply : 3.65 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.58 us (76.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 | 6.0441e+05 | 262144 | 1 | 4.337e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.291173605354384 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.49774814604486306, dt = 0.001601287095574869
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (1.6%)
patch tree reduce : 2.05 us (0.5%)
gen split merge : 942.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1192.00 ns (0.3%)
LB compute : 432.74 us (95.2%)
LB move op cnt : 0
LB apply : 3.91 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.21 us (77.1%)
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 | 6.1173e+05 | 262144 | 1 | 4.285e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.452216978356988 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.49934943314043795, dt = 0.0016012752770187817
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.6%)
patch tree reduce : 1813.00 ns (0.4%)
gen split merge : 972.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.2%)
LB compute : 417.68 us (95.4%)
LB move op cnt : 0
LB apply : 3.31 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.10 us (71.9%)
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 | 5.8531e+05 | 262144 | 1 | 4.479e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12.871158104561024 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5009507084174567, dt = 0.001601263432004667
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (0.2%)
patch tree reduce : 1803.00 ns (0.1%)
gen split merge : 1212.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 871.00 ns (0.0%)
LB compute : 3.22 ms (99.4%)
LB move op cnt : 0
LB apply : 3.94 us (0.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.25 us (74.0%)
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 | 6.0235e+05 | 262144 | 1 | 4.352e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.24574457104534 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5025519718494613, dt = 0.0016012517558991073
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.39 us (0.4%)
patch tree reduce : 1844.00 ns (0.1%)
gen split merge : 962.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.1%)
LB compute : 1779.69 us (98.8%)
LB move op cnt : 0
LB apply : 3.48 us (0.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.96 us (73.6%)
Info: cfl dt = 0.0016012404499445364 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 6.1206e+05 | 262144 | 1 | 4.283e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.459026709109278 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5041532236053604, dt = 0.0016012404499445364
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (0.1%)
patch tree reduce : 2.00 us (0.0%)
gen split merge : 942.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 862.00 ns (0.0%)
LB compute : 5.33 ms (99.6%)
LB move op cnt : 0
LB apply : 3.90 us (0.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.98 us (73.5%)
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.1495e+05 | 262144 | 1 | 4.263e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.52248613853118 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.505754464055305, dt = 0.0016012297158308987
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (0.2%)
patch tree reduce : 1894.00 ns (0.1%)
gen split merge : 921.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 942.00 ns (0.0%)
LB compute : 2.88 ms (99.3%)
LB move op cnt : 0
LB apply : 3.72 us (0.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.04 us (75.6%)
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 | 6.1590e+05 | 262144 | 1 | 4.256e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.543314093527938 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5073556937711359, dt = 0.0016012197469160465
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.3%)
patch tree reduce : 1803.00 ns (0.1%)
gen split merge : 922.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 971.00 ns (0.0%)
LB compute : 2.49 ms (99.2%)
LB move op cnt : 0
LB apply : 4.03 us (0.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.06 us (73.1%)
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 | 6.0991e+05 | 262144 | 1 | 4.298e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.411653086814358 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.508956913518052, dt = 0.0016012107173187025
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.4%)
patch tree reduce : 1963.00 ns (0.4%)
gen split merge : 942.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 862.00 ns (0.2%)
LB compute : 473.26 us (95.7%)
LB move op cnt : 0
LB apply : 4.06 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.08 us (76.0%)
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 | 6.2795e+05 | 262144 | 1 | 4.175e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.80824658046135 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5105581242353706, dt = 0.0016012027761832138
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.25 us (0.1%)
patch tree reduce : 2.03 us (0.0%)
gen split merge : 992.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 862.00 ns (0.0%)
LB compute : 6.22 ms (99.7%)
LB move op cnt : 0
LB apply : 4.08 us (0.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.39 us (78.4%)
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 | 5.9306e+05 | 262144 | 1 | 4.420e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.040808886965296 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5121593270115539, dt = 0.0016011960365732852
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.94 us (1.2%)
patch tree reduce : 2.00 us (0.3%)
gen split merge : 952.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 952.00 ns (0.2%)
LB compute : 567.56 us (96.4%)
LB move op cnt : 0
LB apply : 3.66 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.11 us (75.4%)
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 | 6.2755e+05 | 262144 | 1 | 4.177e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.799228804937382 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5137605230481271, dt = 0.0016011905706491546
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (0.8%)
patch tree reduce : 1773.00 ns (0.2%)
gen split merge : 962.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 961.00 ns (0.1%)
LB compute : 779.67 us (97.4%)
LB move op cnt : 0
LB apply : 4.37 us (0.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.69 us (76.2%)
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 | 6.2739e+05 | 262144 | 1 | 4.178e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.79570485519963 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5153617136187763, dt = 0.0016011864153082098
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.9%)
patch tree reduce : 1854.00 ns (0.5%)
gen split merge : 962.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.3%)
LB compute : 344.43 us (94.2%)
LB move op cnt : 0
LB apply : 4.05 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.60 us (71.4%)
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 | 6.2485e+05 | 262144 | 1 | 4.195e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.739885828848282 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5169629000340845, dt = 0.0016011835830801848
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (0.1%)
patch tree reduce : 1793.00 ns (0.0%)
gen split merge : 1002.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.0%)
LB compute : 5.84 ms (99.6%)
LB move op cnt : 0
LB apply : 3.85 us (0.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.41 us (74.4%)
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 | 5.9921e+05 | 262144 | 1 | 4.375e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.176054341825916 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5185640836171647, dt = 0.001601182071960027
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.0%)
patch tree reduce : 1643.00 ns (0.3%)
gen split merge : 962.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.2%)
LB compute : 624.83 us (96.8%)
LB move op cnt : 0
LB apply : 4.21 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.44 us (78.0%)
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 | 6.2299e+05 | 262144 | 1 | 4.208e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.69889733363683 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5201652656891247, dt = 0.0016011818708778752
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (0.3%)
patch tree reduce : 1883.00 ns (0.1%)
gen split merge : 1202.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 1052.00 ns (0.0%)
LB compute : 2.10 ms (99.0%)
LB move op cnt : 0
LB apply : 3.78 us (0.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.94 us (75.0%)
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 | 6.1316e+05 | 262144 | 1 | 4.275e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.482668609863618 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5217664475600026, dt = 0.0016011829579180375
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (0.7%)
patch tree reduce : 1733.00 ns (0.2%)
gen split merge : 962.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 882.00 ns (0.1%)
LB compute : 911.21 us (97.8%)
LB move op cnt : 0
LB apply : 3.41 us (0.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.24 us (72.6%)
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 | 5.8838e+05 | 262144 | 1 | 4.455e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12.937725949618141 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5233676305179206, dt = 0.0016011853094775013
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.5%)
patch tree reduce : 2.09 us (0.5%)
gen split merge : 952.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 922.00 ns (0.2%)
LB compute : 428.95 us (95.5%)
LB move op cnt : 0
LB apply : 3.50 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.13 us (76.9%)
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 | 6.2363e+05 | 262144 | 1 | 4.204e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.712945833431238 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5249688158273981, dt = 0.0016011889050692066
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.8%)
patch tree reduce : 2.03 us (0.5%)
gen split merge : 1252.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 861.00 ns (0.2%)
LB compute : 362.83 us (94.6%)
LB move op cnt : 0
LB apply : 3.61 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.25 us (74.1%)
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 | 6.2574e+05 | 262144 | 1 | 4.189e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.759323913634788 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5265700047324673, dt = 0.0016011937330047523
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.6%)
patch tree reduce : 1864.00 ns (0.2%)
gen split merge : 952.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.1%)
LB compute : 984.46 us (98.0%)
LB move op cnt : 0
LB apply : 4.08 us (0.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.30 us (74.3%)
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 | 6.2500e+05 | 262144 | 1 | 4.194e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.743105163037274 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.528171198465472, dt = 0.0009954682011946714
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1743.00 ns (0.5%)
gen split merge : 1142.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1163.00 ns (0.3%)
LB compute : 334.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 : 3.26 us (72.5%)
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 | 6.2449e+05 | 262144 | 1 | 4.198e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8.5371557407303 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 155.511938597 (s) [Godunov][rank=0]
Info: dump to _to_trash/ramses_kh/periodic_0005.vtk [VTK Dump][rank=0]
- took 52.41 ms, bandwidth = 744.15 MB/s
amr::Godunov: t = 0.5291666666666667, dt = 0.0016012077682784418
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.6%)
patch tree reduce : 1723.00 ns (0.4%)
gen split merge : 972.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1152.00 ns (0.3%)
LB compute : 394.86 us (94.9%)
LB move op cnt : 0
LB apply : 4.09 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.33 us (71.3%)
Info: cfl dt = 0.0016012143913672922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 6.2421e+05 | 262144 | 1 | 4.200e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.725945933058519 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5307678744349451, dt = 0.0016012143913672922
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (0.7%)
patch tree reduce : 1884.00 ns (0.2%)
gen split merge : 952.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 892.00 ns (0.1%)
LB compute : 975.40 us (97.9%)
LB move op cnt : 0
LB apply : 3.82 us (0.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.15 us (78.1%)
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.2209e+05 | 262144 | 1 | 4.214e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.679273244884055 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5323690888263124, dt = 0.0016012221111951397
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (0.1%)
patch tree reduce : 1894.00 ns (0.0%)
gen split merge : 912.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.0%)
LB compute : 4.79 ms (99.6%)
LB move op cnt : 0
LB apply : 4.02 us (0.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.24 us (76.0%)
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.2227e+05 | 262144 | 1 | 4.213e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.68340458944494 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5339703109375076, dt = 0.0016012316389787484
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1883.00 ns (0.5%)
gen split merge : 952.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 902.00 ns (0.2%)
LB compute : 376.31 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.91 us (74.2%)
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.1346e+05 | 262144 | 1 | 4.273e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.489669502989651 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5355715425764863, dt = 0.0016012430446411172
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1784.00 ns (0.4%)
gen split merge : 932.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 881.00 ns (0.2%)
LB compute : 419.94 us (95.3%)
LB move op cnt : 0
LB apply : 3.72 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.01 us (75.9%)
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 | 6.2301e+05 | 262144 | 1 | 4.208e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.699801507819897 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5371727856211275, dt = 0.0016012557310018437
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (0.1%)
patch tree reduce : 1753.00 ns (0.0%)
gen split merge : 932.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 942.00 ns (0.0%)
LB compute : 6.11 ms (99.7%)
LB move op cnt : 0
LB apply : 4.08 us (0.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.34 us (73.5%)
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.1737e+05 | 262144 | 1 | 4.246e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.575850461652475 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5387740413521294, dt = 0.001601269460791612
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.2%)
patch tree reduce : 1764.00 ns (0.3%)
gen split merge : 951.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1232.00 ns (0.2%)
LB compute : 552.61 us (96.3%)
LB move op cnt : 0
LB apply : 3.88 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.69 us (71.3%)
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 | 6.2758e+05 | 262144 | 1 | 4.177e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.800459022538051 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.540375310812921, dt = 0.001601284033974662
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1733.00 ns (0.4%)
gen split merge : 1091.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 882.00 ns (0.2%)
LB compute : 367.70 us (94.6%)
LB move op cnt : 0
LB apply : 3.78 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.09 us (71.1%)
Info: cfl dt = 0.001601299300243217 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 6.3100e+05 | 262144 | 1 | 4.154e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.875952517277735 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5419765948468956, dt = 0.001601299300243217
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.0%)
patch tree reduce : 1803.00 ns (0.5%)
gen split merge : 932.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 871.00 ns (0.2%)
LB compute : 339.35 us (94.3%)
LB move op cnt : 0
LB apply : 3.37 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.21 us (66.7%)
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 | 6.2772e+05 | 262144 | 1 | 4.176e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.803938091583966 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5435778941471389, dt = 0.0016013151624374826
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1743.00 ns (0.4%)
gen split merge : 941.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 942.00 ns (0.2%)
LB compute : 386.75 us (95.0%)
LB move op cnt : 0
LB apply : 3.52 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.21 us (73.4%)
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 | 6.3080e+05 | 262144 | 1 | 4.156e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.871721495732304 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5451792093095763, dt = 0.0016013315752040369
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1894.00 ns (0.5%)
gen split merge : 951.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 941.00 ns (0.2%)
LB compute : 397.80 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.09 us (73.2%)
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 | 6.2905e+05 | 262144 | 1 | 4.167e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.833353867103424 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5467805408847803, dt = 0.0016013485377537047
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (0.2%)
patch tree reduce : 1793.00 ns (0.0%)
gen split merge : 921.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.0%)
LB compute : 4.66 ms (99.5%)
LB move op cnt : 0
LB apply : 3.87 us (0.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.96 us (73.9%)
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 | 6.1395e+05 | 262144 | 1 | 4.270e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.501591089397357 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5483818894225341, dt = 0.001601366083791967
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1754.00 ns (0.5%)
gen split merge : 931.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 852.00 ns (0.2%)
LB compute : 365.49 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.73 us (73.3%)
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 | 6.2373e+05 | 262144 | 1 | 4.203e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.716709216356481 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5499832555063261, dt = 0.0016013842641428686
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1933.00 ns (0.5%)
gen split merge : 992.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 881.00 ns (0.2%)
LB compute : 339.81 us (94.2%)
LB move op cnt : 0
LB apply : 3.86 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.29 us (73.4%)
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 | 6.1434e+05 | 262144 | 1 | 4.267e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.510319017926674 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.551584639770469, dt = 0.0016014031352060817
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1793.00 ns (0.5%)
gen split merge : 1082.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1202.00 ns (0.3%)
LB compute : 357.11 us (94.6%)
LB move op cnt : 0
LB apply : 3.69 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.43 us (76.5%)
Info: cfl dt = 0.0016014227432943184 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 6.2719e+05 | 262144 | 1 | 4.180e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.793168535142822 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5531860429056751, dt = 0.0016014227432943184
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1613.00 ns (0.4%)
gen split merge : 932.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.2%)
LB compute : 400.93 us (95.2%)
LB move op cnt : 0
LB apply : 3.94 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.31 us (75.2%)
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 | 6.2925e+05 | 262144 | 1 | 4.166e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.838578048400798 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5547874656489694, dt = 0.0016014431158075549
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1623.00 ns (0.4%)
gen split merge : 1253.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 942.00 ns (0.2%)
LB compute : 370.68 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.92 us (74.4%)
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.2338e+05 | 262144 | 1 | 4.205e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.709728268563797 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.556388908764777, dt = 0.0016014643107885595
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.5%)
patch tree reduce : 1633.00 ns (0.4%)
gen split merge : 932.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 862.00 ns (0.2%)
LB compute : 443.45 us (95.6%)
LB move op cnt : 0
LB apply : 3.87 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.05 us (74.3%)
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 | 6.1282e+05 | 262144 | 1 | 4.278e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.477573495711317 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5579903730755655, dt = 0.0016014863565693936
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (0.2%)
patch tree reduce : 1733.00 ns (0.0%)
gen split merge : 932.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 922.00 ns (0.0%)
LB compute : 3.94 ms (99.5%)
LB move op cnt : 0
LB apply : 3.83 us (0.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.69 us (73.1%)
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 | 6.1052e+05 | 262144 | 1 | 4.294e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.427133664392569 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.559591859432135, dt = 0.0016015092091254195
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.7%)
patch tree reduce : 1723.00 ns (0.4%)
gen split merge : 1263.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 941.00 ns (0.2%)
LB compute : 377.95 us (94.9%)
LB move op cnt : 0
LB apply : 3.56 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.78 us (75.6%)
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 | 6.2673e+05 | 262144 | 1 | 4.183e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.78396512589256 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5611933686412603, dt = 0.00160153280770994
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.19 us (0.1%)
patch tree reduce : 1734.00 ns (0.0%)
gen split merge : 921.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 961.00 ns (0.0%)
LB compute : 6.16 ms (99.7%)
LB move op cnt : 0
LB apply : 3.67 us (0.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.72 us (78.9%)
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 | 6.1228e+05 | 262144 | 1 | 4.281e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.466404900218604 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5627949014489703, dt = 0.001601557080136669
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.2%)
patch tree reduce : 1764.00 ns (0.0%)
gen split merge : 932.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.0%)
LB compute : 4.02 ms (99.5%)
LB move op cnt : 0
LB apply : 4.33 us (0.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.08 us (77.0%)
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 | 6.1615e+05 | 262144 | 1 | 4.255e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.551558426894136 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5643964585291069, dt = 0.0016015819505895972
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (0.1%)
patch tree reduce : 1613.00 ns (0.0%)
gen split merge : 1213.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 951.00 ns (0.0%)
LB compute : 5.32 ms (99.6%)
LB move op cnt : 0
LB apply : 4.15 us (0.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.07 us (75.6%)
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 | 6.1607e+05 | 262144 | 1 | 4.255e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.55001107400105 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5659980404796965, dt = 0.0016016073437809676
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1983.00 ns (0.5%)
gen split merge : 951.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 871.00 ns (0.2%)
LB compute : 369.10 us (94.7%)
LB move op cnt : 0
LB apply : 3.66 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.71 us (72.7%)
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 | 6.2046e+05 | 262144 | 1 | 4.225e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.646826055565551 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5675996478234775, dt = 0.0016016331826009512
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.7%)
patch tree reduce : 1633.00 ns (0.4%)
gen split merge : 991.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 852.00 ns (0.2%)
LB compute : 372.52 us (94.8%)
LB move op cnt : 0
LB apply : 3.63 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.30 us (76.0%)
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 | 6.3178e+05 | 262144 | 1 | 4.149e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.89603095551758 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5692012810060785, dt = 0.001601659387071101
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.1%)
patch tree reduce : 2.06 us (0.4%)
gen split merge : 951.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 871.00 ns (0.2%)
LB compute : 538.27 us (96.4%)
LB move op cnt : 0
LB apply : 3.59 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.02 us (72.7%)
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 | 6.2749e+05 | 262144 | 1 | 4.178e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.80189052926427 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5708029403931496, dt = 0.0016016858851279777
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (0.1%)
patch tree reduce : 2.06 us (0.0%)
gen split merge : 952.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 902.00 ns (0.0%)
LB compute : 5.89 ms (99.6%)
LB move op cnt : 0
LB apply : 3.75 us (0.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.11 us (76.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 | 6.0775e+05 | 262144 | 1 | 4.313e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.368010206037374 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5724046262782776, dt = 0.0016017126050077656
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (0.4%)
patch tree reduce : 2.04 us (0.1%)
gen split merge : 1182.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 942.00 ns (0.0%)
LB compute : 1971.02 us (98.9%)
LB move op cnt : 0
LB apply : 4.26 us (0.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.38 us (78.0%)
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 | 6.1731e+05 | 262144 | 1 | 4.247e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.578486586959286 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5740063388832853, dt = 0.001601739482801048
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (0.2%)
patch tree reduce : 1773.00 ns (0.1%)
gen split merge : 1032.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 1072.00 ns (0.0%)
LB compute : 2.92 ms (99.2%)
LB move op cnt : 0
LB apply : 4.69 us (0.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.30 us (76.0%)
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 | 6.1100e+05 | 262144 | 1 | 4.290e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.43996671515783 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5756080783660864, dt = 0.001601766460889083
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.75 us (1.8%)
patch tree reduce : 1853.00 ns (0.4%)
gen split merge : 1283.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1433.00 ns (0.3%)
LB compute : 407.42 us (94.6%)
LB move op cnt : 0
LB apply : 4.06 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.39 us (77.7%)
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.2643e+05 | 262144 | 1 | 4.185e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.779624470369303 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5772098448269755, dt = 0.001601793488861083
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.37 us (0.2%)
patch tree reduce : 2.05 us (0.0%)
gen split merge : 952.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 1223.00 ns (0.0%)
LB compute : 4.28 ms (99.5%)
LB move op cnt : 0
LB apply : 3.88 us (0.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.38 us (75.6%)
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 | 6.1197e+05 | 262144 | 1 | 4.284e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.461788437687275 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5788116383158366, dt = 0.0016018205227417807
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.7%)
patch tree reduce : 1754.00 ns (0.4%)
gen split merge : 971.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.2%)
LB compute : 402.60 us (95.2%)
LB move op cnt : 0
LB apply : 3.63 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.92 us (74.6%)
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 | 6.1603e+05 | 262144 | 1 | 4.255e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.55124793294972 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5804134588385784, dt = 0.001601847523311459
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (0.2%)
patch tree reduce : 1833.00 ns (0.0%)
gen split merge : 951.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 881.00 ns (0.0%)
LB compute : 4.29 ms (99.5%)
LB move op cnt : 0
LB apply : 3.81 us (0.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.48 us (76.9%)
Info: cfl dt = 0.0016018744645912198 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 6.1665e+05 | 262144 | 1 | 4.251e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.56505617890575 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5820153063618899, dt = 0.0016018744645912198
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1723.00 ns (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 : 399.58 us (95.2%)
LB move op cnt : 0
LB apply : 3.97 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.16 us (75.7%)
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 | 6.2125e+05 | 262144 | 1 | 4.220e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.666396389122017 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5836171808264812, dt = 0.001601901324320236
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (0.2%)
patch tree reduce : 1754.00 ns (0.1%)
gen split merge : 932.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 1173.00 ns (0.0%)
LB compute : 3.45 ms (99.4%)
LB move op cnt : 0
LB apply : 3.88 us (0.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.96 us (75.9%)
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 | 5.9677e+05 | 262144 | 1 | 4.393e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.128173203071054 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5852190821508014, dt = 0.0016019280742788015
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.5%)
patch tree reduce : 1903.00 ns (0.4%)
gen split merge : 1052.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.2%)
LB compute : 426.45 us (95.4%)
LB move op cnt : 0
LB apply : 3.86 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.42 us (75.8%)
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 | 5.9007e+05 | 262144 | 1 | 4.443e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12.981131507228234 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5868210102250803, dt = 0.001601954678714643
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.7%)
patch tree reduce : 1723.00 ns (0.4%)
gen split merge : 992.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 891.00 ns (0.2%)
LB compute : 420.62 us (95.2%)
LB move op cnt : 0
LB apply : 3.62 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.44 us (71.3%)
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 | 6.1431e+05 | 262144 | 1 | 4.267e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.514608760218218 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5884229649037949, dt = 0.0016019811072902513
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.37 us (1.8%)
patch tree reduce : 1804.00 ns (0.5%)
gen split merge : 951.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 882.00 ns (0.2%)
LB compute : 377.73 us (94.7%)
LB move op cnt : 0
LB apply : 3.74 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.10 us (73.2%)
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 | 6.3128e+05 | 262144 | 1 | 4.153e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.888180823060608 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5900249460110851, dt = 0.0016020073390729252
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1663.00 ns (0.4%)
gen split merge : 972.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 882.00 ns (0.2%)
LB compute : 361.74 us (94.6%)
LB move op cnt : 0
LB apply : 3.87 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.26 us (77.0%)
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 | 6.2736e+05 | 262144 | 1 | 4.179e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.802052103078847 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.591626953350158, dt = 0.0016020333621486543
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 2.14 us (0.6%)
gen split merge : 971.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.3%)
LB compute : 345.02 us (94.3%)
LB move op cnt : 0
LB apply : 3.75 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.92 us (74.9%)
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 | 6.3279e+05 | 262144 | 1 | 4.143e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.92185653112815 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5932289867123067, dt = 0.001602059169603222
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (0.5%)
patch tree reduce : 1784.00 ns (0.1%)
gen split merge : 961.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 891.00 ns (0.1%)
LB compute : 1363.47 us (98.5%)
LB move op cnt : 0
LB apply : 3.83 us (0.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.41 us (78.2%)
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 | 6.1683e+05 | 262144 | 1 | 4.250e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.570758362666494 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5948310458819099, dt = 0.0016020847587428359
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.6%)
patch tree reduce : 2.04 us (0.5%)
gen split merge : 921.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 941.00 ns (0.2%)
LB compute : 398.03 us (95.0%)
LB move op cnt : 0
LB apply : 3.53 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.48 us (71.2%)
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 | 6.2008e+05 | 262144 | 1 | 4.228e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.642532923546169 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5964331306406527, dt = 0.001602110125633281
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (0.5%)
patch tree reduce : 2.02 us (0.1%)
gen split merge : 952.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.1%)
LB compute : 1389.54 us (98.5%)
LB move op cnt : 0
LB apply : 3.66 us (0.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.14 us (76.0%)
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 | 6.2234e+05 | 262144 | 1 | 4.212e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.692456191935221 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.598035240766286, dt = 0.0016021352616888496
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.6%)
patch tree reduce : 1773.00 ns (0.4%)
gen split merge : 1012.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 861.00 ns (0.2%)
LB compute : 438.08 us (95.3%)
LB move op cnt : 0
LB apply : 4.06 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.20 us (76.0%)
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 | 6.3211e+05 | 262144 | 1 | 4.147e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.907730356784686 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.5996373760279748, dt = 0.0016021601485518822
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (0.3%)
patch tree reduce : 1763.00 ns (0.1%)
gen split merge : 942.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.1%)
LB compute : 1911.84 us (98.9%)
LB move op cnt : 0
LB apply : 3.61 us (0.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.79 us (73.0%)
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 | 6.2191e+05 | 262144 | 1 | 4.215e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.683430511209107 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6012395361765267, dt = 0.0016021847561906654
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.8%)
patch tree reduce : 1793.00 ns (0.4%)
gen split merge : 1072.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 871.00 ns (0.2%)
LB compute : 394.67 us (94.8%)
LB move op cnt : 0
LB apply : 4.13 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.02 us (73.7%)
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 | 6.2244e+05 | 262144 | 1 | 4.212e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.69524693295548 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6028417209327174, dt = 0.0016022090482169231
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.3%)
patch tree reduce : 1763.00 ns (0.3%)
gen split merge : 1222.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 872.00 ns (0.2%)
LB compute : 548.45 us (96.3%)
LB move op cnt : 0
LB apply : 3.88 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.02 us (72.2%)
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 | 6.2691e+05 | 262144 | 1 | 4.182e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.793835551598875 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6044439299809343, dt = 0.0016022329836562835
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.5%)
patch tree reduce : 1753.00 ns (0.4%)
gen split merge : 1272.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 961.00 ns (0.2%)
LB compute : 428.13 us (95.3%)
LB move op cnt : 0
LB apply : 3.66 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.99 us (73.8%)
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 | 6.3061e+05 | 262144 | 1 | 4.157e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.875515043938094 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6060461629645906, dt = 0.0016022565066324348
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.9%)
patch tree reduce : 1823.00 ns (0.5%)
gen split merge : 952.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.3%)
LB compute : 369.63 us (94.6%)
LB move op cnt : 0
LB apply : 3.60 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.19 us (76.5%)
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 | 6.2284e+05 | 262144 | 1 | 4.209e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.70479694047042 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6076484194712231, dt = 0.0016022795501331438
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.07 us (2.0%)
patch tree reduce : 1904.00 ns (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 : 331.21 us (94.0%)
LB move op cnt : 0
LB apply : 4.04 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.67 us (72.7%)
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 | 6.1135e+05 | 262144 | 1 | 4.288e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.452169939350766 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6092506990213562, dt = 0.0016023020390646852
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.0%)
patch tree reduce : 1753.00 ns (0.3%)
gen split merge : 992.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.1%)
LB compute : 635.04 us (96.9%)
LB move op cnt : 0
LB apply : 3.53 us (0.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.98 us (73.9%)
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 | 6.1889e+05 | 262144 | 1 | 4.236e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.618275462719462 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6108530010604208, dt = 0.0016023238938032746
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.9%)
patch tree reduce : 1844.00 ns (0.5%)
gen split merge : 1192.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 882.00 ns (0.2%)
LB compute : 347.45 us (94.3%)
LB move op cnt : 0
LB apply : 3.72 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.14 us (76.5%)
Info: cfl dt = 0.0016023450369798886 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 6.0957e+05 | 262144 | 1 | 4.300e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.413360478903106 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6124553249542242, dt = 0.0016023450369798886
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1883.00 ns (0.5%)
gen split merge : 962.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 932.00 ns (0.2%)
LB compute : 382.48 us (94.9%)
LB move op cnt : 0
LB apply : 3.70 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.52 us (73.1%)
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 | 6.2073e+05 | 262144 | 1 | 4.223e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.659173127823301 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.614057669991204, dt = 0.0016023653952557167
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.27 us (1.7%)
patch tree reduce : 1984.00 ns (0.5%)
gen split merge : 1062.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 901.00 ns (0.2%)
LB compute : 413.76 us (95.0%)
LB move op cnt : 0
LB apply : 3.71 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.00 us (76.7%)
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 | 6.1615e+05 | 262144 | 1 | 4.255e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.55849597112333 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6156600353864597, dt = 0.0016023849175936225
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (1.8%)
patch tree reduce : 2.18 us (0.6%)
gen split merge : 962.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 891.00 ns (0.2%)
LB compute : 373.51 us (94.6%)
LB move op cnt : 0
LB apply : 3.58 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.10 us (77.6%)
Info: cfl dt = 0.0016024035581971813 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 6.3022e+05 | 262144 | 1 | 4.160e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.868197744567718 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6172624203040533, dt = 0.0016024035581971813
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1763.00 ns (0.5%)
gen split merge : 1312.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 852.00 ns (0.2%)
LB compute : 361.12 us (94.5%)
LB move op cnt : 0
LB apply : 3.78 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.36 us (74.9%)
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 | 6.2876e+05 | 262144 | 1 | 4.169e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.83618913573084 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6188648238622505, dt = 0.0016024212779739639
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.1%)
patch tree reduce : 1793.00 ns (0.3%)
gen split merge : 942.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 871.00 ns (0.1%)
LB compute : 612.14 us (96.7%)
LB move op cnt : 0
LB apply : 3.83 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.90 us (74.9%)
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 | 6.2553e+05 | 262144 | 1 | 4.191e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.76527833512486 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6204672451402244, dt = 0.0016024380537837026
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (0.1%)
patch tree reduce : 1963.00 ns (0.0%)
gen split merge : 922.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 952.00 ns (0.0%)
LB compute : 6.15 ms (99.7%)
LB move op cnt : 0
LB apply : 3.80 us (0.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.75 us (72.3%)
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 | 6.1968e+05 | 262144 | 1 | 4.230e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.63684681442593 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6220696831940081, dt = 0.001602453865174651
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.1%)
patch tree reduce : 1944.00 ns (0.3%)
gen split merge : 942.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 952.00 ns (0.2%)
LB compute : 537.75 us (96.3%)
LB move op cnt : 0
LB apply : 4.03 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.87 us (74.3%)
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 | 6.2033e+05 | 262144 | 1 | 4.226e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.651234326543321 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6236721370591828, dt = 0.001602468708335979
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.1%)
patch tree reduce : 1874.00 ns (0.0%)
gen split merge : 971.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 1332.00 ns (0.0%)
LB compute : 6.13 ms (99.7%)
LB move op cnt : 0
LB apply : 3.89 us (0.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.00 us (75.5%)
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 | 6.1588e+05 | 262144 | 1 | 4.256e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.553309024570618 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6252746057675188, dt = 0.0016024826128339647
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (0.1%)
patch tree reduce : 1814.00 ns (0.0%)
gen split merge : 941.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 871.00 ns (0.0%)
LB compute : 6.12 ms (99.7%)
LB move op cnt : 0
LB apply : 3.67 us (0.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.09 us (72.8%)
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 | 6.1872e+05 | 262144 | 1 | 4.237e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.61599657346689 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6268770883803527, dt = 0.0016024956271667396
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.2%)
patch tree reduce : 1793.00 ns (0.3%)
gen split merge : 922.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 852.00 ns (0.1%)
LB compute : 564.54 us (96.5%)
LB move op cnt : 0
LB apply : 3.64 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.00 us (72.6%)
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 | 6.2760e+05 | 262144 | 1 | 4.177e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.811642581381692 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6284795840075195, dt = 0.0016025078067542998
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.4%)
patch tree reduce : 1913.00 ns (0.1%)
gen split merge : 951.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 1283.00 ns (0.1%)
LB compute : 739.14 us (47.1%)
LB move op cnt : 0
LB apply : 4.93 us (0.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.87 us (74.5%)
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 | 6.1308e+05 | 262144 | 1 | 4.276e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.492075795225375 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6300820918142738, dt = 0.0016025190550443588
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (0.2%)
patch tree reduce : 1764.00 ns (0.1%)
gen split merge : 972.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 952.00 ns (0.0%)
LB compute : 2.90 ms (99.3%)
LB move op cnt : 0
LB apply : 3.69 us (0.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 9.79 us (73.1%)
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 | 6.2203e+05 | 262144 | 1 | 4.214e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.689090617045046 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6316846108693182, dt = 0.0016025284692910292
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (0.1%)
patch tree reduce : 2.14 us (0.0%)
gen split merge : 982.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 872.00 ns (0.0%)
LB compute : 6.17 ms (99.7%)
LB move op cnt : 0
LB apply : 4.06 us (0.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.08 us (75.4%)
Info: cfl dt = 0.0016025363285416688 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 6.1414e+05 | 262144 | 1 | 4.268e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.51559496348604 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6332871393386091, dt = 0.0016025363285416688
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (0.2%)
patch tree reduce : 1634.00 ns (0.1%)
gen split merge : 1253.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 952.00 ns (0.0%)
LB compute : 3.10 ms (99.3%)
LB move op cnt : 0
LB apply : 4.13 us (0.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.99 us (76.6%)
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 | 6.2007e+05 | 262144 | 1 | 4.228e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.646265090205956 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6348896756671508, dt = 0.0016025428741948675
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1723.00 ns (0.4%)
gen split merge : 982.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 942.00 ns (0.2%)
LB compute : 369.80 us (94.8%)
LB move op cnt : 0
LB apply : 3.44 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.98 us (72.2%)
Info: cfl dt = 0.0016025483125191365 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 6.2795e+05 | 262144 | 1 | 4.175e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.819642411171854 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6364922185413456, dt = 0.0016025483125191365
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1713.00 ns (0.5%)
gen split merge : 942.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.3%)
LB compute : 354.28 us (94.7%)
LB move op cnt : 0
LB apply : 3.53 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.62 us (73.0%)
Info: cfl dt = 0.0016025527673833842 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 6.3131e+05 | 262144 | 1 | 4.152e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.893714709487586 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6380947668538648, dt = 0.0016025527673833842
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.48 us (0.3%)
patch tree reduce : 2.20 us (0.1%)
gen split merge : 1032.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 871.00 ns (0.0%)
LB compute : 2.76 ms (99.2%)
LB move op cnt : 0
LB apply : 3.61 us (0.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.02 us (73.6%)
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 | 6.1991e+05 | 262144 | 1 | 4.229e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.642728440001521 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6396973196212482, dt = 0.0016025563147660084
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1733.00 ns (0.4%)
gen split merge : 922.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 912.00 ns (0.2%)
LB compute : 398.08 us (95.2%)
LB move op cnt : 0
LB apply : 3.97 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.87 us (74.9%)
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 | 6.3052e+05 | 262144 | 1 | 4.158e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.87638741657889 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6412998759360142, dt = 0.001602559029244346
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.41 us (2.0%)
patch tree reduce : 1633.00 ns (0.4%)
gen split merge : 922.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1252.00 ns (0.3%)
LB compute : 343.74 us (94.1%)
LB move op cnt : 0
LB apply : 3.57 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.58 us (73.7%)
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 | 6.2458e+05 | 262144 | 1 | 4.197e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.745649537154152 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6429024349652586, dt = 0.0016025610427657059
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1734.00 ns (0.5%)
gen split merge : 1091.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1372.00 ns (0.4%)
LB compute : 364.66 us (94.7%)
LB move op cnt : 0
LB apply : 3.70 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.23 us (72.7%)
Info: cfl dt = 0.0016025623785240215 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 6.3452e+05 | 262144 | 1 | 4.131e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.964469169412984 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6445049960080242, dt = 0.0016025623785240215
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (0.1%)
patch tree reduce : 1614.00 ns (0.0%)
gen split merge : 1192.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 1162.00 ns (0.0%)
LB compute : 6.25 ms (99.7%)
LB move op cnt : 0
LB apply : 3.75 us (0.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.86 us (75.2%)
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 | 6.0596e+05 | 262144 | 1 | 4.326e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.335874600461981 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6461075583865483, dt = 0.0016025630492267648
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1964.00 ns (0.5%)
gen split merge : 961.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.2%)
LB compute : 391.17 us (94.9%)
LB move op cnt : 0
LB apply : 3.84 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.97 us (74.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 | 6.3157e+05 | 262144 | 1 | 4.151e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.899468722724984 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6477101214357751, dt = 0.0016025630629432446
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.05 us (1.8%)
patch tree reduce : 1653.00 ns (0.4%)
gen split merge : 1162.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 942.00 ns (0.2%)
LB compute : 376.96 us (94.8%)
LB move op cnt : 0
LB apply : 3.77 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.10 us (75.4%)
Info: cfl dt = 0.0016025624280042769 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 6.3270e+05 | 262144 | 1 | 4.143e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.924379256027706 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6493126844987184, dt = 0.0016025624280042769
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1723.00 ns (0.4%)
gen split merge : 932.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 942.00 ns (0.2%)
LB compute : 370.99 us (91.0%)
LB move op cnt : 0
LB apply : 3.74 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.79 us (74.4%)
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 | 6.2326e+05 | 262144 | 1 | 4.206e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.716534672925237 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6509152469267226, dt = 0.0016025611468479378
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.1%)
patch tree reduce : 1804.00 ns (0.3%)
gen split merge : 1242.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 872.00 ns (0.1%)
LB compute : 561.33 us (96.5%)
LB move op cnt : 0
LB apply : 3.64 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.71 us (73.4%)
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.2891e+05 | 262144 | 1 | 4.168e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.841004756353513 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6525178080735706, dt = 0.0016025592173195252
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (0.1%)
patch tree reduce : 1743.00 ns (0.0%)
gen split merge : 952.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 1122.00 ns (0.0%)
LB compute : 6.14 ms (99.7%)
LB move op cnt : 0
LB apply : 4.09 us (0.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.00 us (74.4%)
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 | 6.0557e+05 | 262144 | 1 | 4.329e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.32722983626991 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6541203672908902, dt = 0.0016025566693805074
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1693.00 ns (0.4%)
gen split merge : 932.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 942.00 ns (0.2%)
LB compute : 381.93 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.79 us (72.8%)
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 | 6.2406e+05 | 262144 | 1 | 4.201e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.734062479937233 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6557229239602707, dt = 0.0016025535456294182
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 2.05 us (0.5%)
gen split merge : 942.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 952.00 ns (0.2%)
LB compute : 393.82 us (95.1%)
LB move op cnt : 0
LB apply : 3.82 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.32 us (72.0%)
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 | 6.0846e+05 | 262144 | 1 | 4.308e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.390753345634678 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6573254775059001, dt = 0.0016025498369028094
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1794.00 ns (0.4%)
gen split merge : 1213.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1182.00 ns (0.3%)
LB compute : 409.06 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.73 us (72.9%)
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 | 6.2962e+05 | 262144 | 1 | 4.164e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.856362160509304 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6589280273428029, dt = 0.001602545530883242
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.22 us (1.7%)
patch tree reduce : 1833.00 ns (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 : 409.06 us (95.0%)
LB move op cnt : 0
LB apply : 4.06 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.49 us (78.0%)
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 | 6.2343e+05 | 262144 | 1 | 4.205e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.720164430725115 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6605305728736861, dt = 0.0009277604596472644
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1733.00 ns (0.4%)
gen split merge : 992.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 952.00 ns (0.2%)
LB compute : 372.48 us (94.7%)
LB move op cnt : 0
LB apply : 4.14 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.48 us (75.9%)
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 | 6.2308e+05 | 262144 | 1 | 4.207e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7.938560023839873 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 191.059795255 (s) [Godunov][rank=0]
Info: dump to _to_trash/ramses_kh/periodic_0006.vtk [VTK Dump][rank=0]
- took 54.90 ms, bandwidth = 710.39 MB/s
amr::Godunov: t = 0.6614583333333334, dt = 0.001602540511084447
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1763.00 ns (0.4%)
gen split merge : 971.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 971.00 ns (0.2%)
LB compute : 397.15 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.56 us (69.7%)
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 | 6.2563e+05 | 262144 | 1 | 4.190e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.768627671834441 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6630608738444178, dt = 0.001602533270241182
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.2%)
patch tree reduce : 1734.00 ns (0.3%)
gen split merge : 931.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 861.00 ns (0.2%)
LB compute : 535.38 us (96.4%)
LB move op cnt : 0
LB apply : 3.55 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.67 us (72.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 | 5.3645e+05 | 262144 | 1 | 4.887e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11.80599971369102 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.664663407114659, dt = 0.0016025263644908266
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 2.01 us (0.5%)
gen split merge : 951.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 882.00 ns (0.2%)
LB compute : 358.18 us (94.5%)
LB move op cnt : 0
LB apply : 3.44 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.52 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 | 6.2198e+05 | 262144 | 1 | 4.215e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.688115977873428 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6662659334791499, dt = 0.00160252027340078
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1774.00 ns (0.5%)
gen split merge : 941.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 841.00 ns (0.2%)
LB compute : 344.39 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.75 us (74.3%)
Info: cfl dt = 0.0016025152345840814 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 6.2946e+05 | 262144 | 1 | 4.165e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.852734687432202 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6678684537525507, dt = 0.0016025152345840814
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1753.00 ns (0.5%)
gen split merge : 1282.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 881.00 ns (0.2%)
LB compute : 366.18 us (94.5%)
LB move op cnt : 0
LB apply : 3.70 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.05 us (76.6%)
Info: cfl dt = 0.001602511311639814 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 6.2341e+05 | 262144 | 1 | 4.205e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.719503632417952 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6694709689871348, dt = 0.001602511311639814
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1794.00 ns (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 : 396.28 us (94.9%)
LB move op cnt : 0
LB apply : 4.04 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.44 us (78.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 | 6.2187e+05 | 262144 | 1 | 4.215e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.685572580977198 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6710734802987746, dt = 0.0016025084820613022
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.3%)
patch tree reduce : 1833.00 ns (0.3%)
gen split merge : 921.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 942.00 ns (0.2%)
LB compute : 544.71 us (96.3%)
LB move op cnt : 0
LB apply : 3.92 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.01 us (76.3%)
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 | 6.2428e+05 | 262144 | 1 | 4.199e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.738505708533683 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6726759887808359, dt = 0.001602506704212331
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1803.00 ns (0.4%)
gen split merge : 932.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.2%)
LB compute : 403.03 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.99 us (75.8%)
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 | 6.2608e+05 | 262144 | 1 | 4.187e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.778173488810074 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6742784954850483, dt = 0.0016025059655813416
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1783.00 ns (0.5%)
gen split merge : 1253.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 952.00 ns (0.3%)
LB compute : 359.87 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.02 us (75.4%)
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.1797e+05 | 262144 | 1 | 4.242e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.599620749249633 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6758810014506296, dt = 0.0016025063028471153
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.2%)
patch tree reduce : 1933.00 ns (0.3%)
gen split merge : 1062.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 961.00 ns (0.2%)
LB compute : 558.15 us (96.3%)
LB move op cnt : 0
LB apply : 4.32 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.98 us (74.0%)
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 | 6.2047e+05 | 262144 | 1 | 4.225e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.654788424807803 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6774835077534767, dt = 0.0016025078022431569
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 2.05 us (0.5%)
gen split merge : 912.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 871.00 ns (0.2%)
LB compute : 353.82 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.87 us (72.8%)
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 | 6.2584e+05 | 262144 | 1 | 4.189e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.772968011752026 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6790860155557198, dt = 0.001602510586708291
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1894.00 ns (0.5%)
gen split merge : 1093.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.3%)
LB compute : 345.00 us (94.3%)
LB move op cnt : 0
LB apply : 3.61 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.32 us (73.6%)
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 | 6.2922e+05 | 262144 | 1 | 4.166e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.847335192158416 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.680688526142428, dt = 0.0016025147984676075
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 2.33 us (0.6%)
gen split merge : 961.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 851.00 ns (0.2%)
LB compute : 344.57 us (94.3%)
LB move op cnt : 0
LB apply : 3.69 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.29 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 | 6.2837e+05 | 262144 | 1 | 4.172e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.828618118888723 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6822910409408957, dt = 0.0016025205706338686
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1633.00 ns (0.5%)
gen split merge : 1243.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.3%)
LB compute : 336.65 us (94.3%)
LB move op cnt : 0
LB apply : 3.34 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.65 us (72.6%)
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 | 6.2290e+05 | 262144 | 1 | 4.208e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.708237532715644 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6838935615115295, dt = 0.0016025280301967143
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.8%)
patch tree reduce : 1813.00 ns (0.5%)
gen split merge : 1202.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 871.00 ns (0.2%)
LB compute : 376.64 us (94.7%)
LB move op cnt : 0
LB apply : 3.82 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.56 us (78.5%)
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 | 6.1209e+05 | 262144 | 1 | 4.283e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.470588662596152 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6854960895417261, dt = 0.0016025372763557877
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.5%)
patch tree reduce : 1844.00 ns (0.4%)
gen split merge : 932.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.2%)
LB compute : 430.74 us (95.4%)
LB move op cnt : 0
LB apply : 4.14 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.14 us (74.7%)
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 | 6.1817e+05 | 262144 | 1 | 4.241e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.604272210134011 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.687098626818082, dt = 0.0016025484102763245
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.2%)
patch tree reduce : 1914.00 ns (0.3%)
gen split merge : 971.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1032.00 ns (0.2%)
LB compute : 533.59 us (96.3%)
LB move op cnt : 0
LB apply : 3.37 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.50 us (74.4%)
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 | 6.2297e+05 | 262144 | 1 | 4.208e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.71018658737618 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6887011752283583, dt = 0.0016025615556484623
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1943.00 ns (0.5%)
gen split merge : 931.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 862.00 ns (0.2%)
LB compute : 368.25 us (94.7%)
LB move op cnt : 0
LB apply : 3.78 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.24 us (73.6%)
Info: cfl dt = 0.0016025766519705985 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 6.2201e+05 | 262144 | 1 | 4.214e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.689084313819455 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6903037367840067, dt = 0.0016025766519705985
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (0.9%)
patch tree reduce : 1633.00 ns (0.2%)
gen split merge : 932.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 1031.00 ns (0.1%)
LB compute : 743.90 us (97.2%)
LB move op cnt : 0
LB apply : 4.31 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.87 us (74.1%)
Info: cfl dt = 0.001602593674379365 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 6.1391e+05 | 262144 | 1 | 4.270e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.511022818817978 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6919063134359773, dt = 0.001602593674379365
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (0.3%)
patch tree reduce : 1774.00 ns (0.1%)
gen split merge : 972.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 942.00 ns (0.0%)
LB compute : 2.55 ms (99.2%)
LB move op cnt : 0
LB apply : 3.86 us (0.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.94 us (74.8%)
Info: cfl dt = 0.0016026125563650515 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 6.1961e+05 | 262144 | 1 | 4.231e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.636631480822576 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6935089071103566, dt = 0.0016026125563650515
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (0.2%)
patch tree reduce : 1723.00 ns (0.0%)
gen split merge : 1192.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 852.00 ns (0.0%)
LB compute : 4.03 ms (99.5%)
LB move op cnt : 0
LB apply : 4.10 us (0.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.31 us (76.2%)
Info: cfl dt = 0.0016026331731211676 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 6.1781e+05 | 262144 | 1 | 4.243e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.597136082202235 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6951115196667217, dt = 0.0016026331731211676
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.1%)
patch tree reduce : 1964.00 ns (0.0%)
gen split merge : 942.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 952.00 ns (0.0%)
LB compute : 5.69 ms (99.6%)
LB move op cnt : 0
LB apply : 3.88 us (0.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.26 us (80.0%)
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 | 6.1496e+05 | 262144 | 1 | 4.263e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.534568082819032 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6967141528398428, dt = 0.0016026553489817273
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (0.1%)
patch tree reduce : 1623.00 ns (0.0%)
gen split merge : 932.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 882.00 ns (0.0%)
LB compute : 6.18 ms (99.7%)
LB move op cnt : 0
LB apply : 4.13 us (0.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.49 us (76.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 | 6.1258e+05 | 262144 | 1 | 4.279e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.48229524745647 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6983168081888246, dt = 0.0016026788824123177
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.2%)
patch tree reduce : 1733.00 ns (0.1%)
gen split merge : 942.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.0%)
LB compute : 2.73 ms (99.3%)
LB move op cnt : 0
LB apply : 4.02 us (0.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.50 us (76.7%)
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 | 6.2291e+05 | 262144 | 1 | 4.208e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.709989330105206 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.6999194870712369, dt = 0.0016027035549316157
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (0.1%)
patch tree reduce : 1784.00 ns (0.0%)
gen split merge : 1122.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.0%)
LB compute : 4.81 ms (99.6%)
LB move op cnt : 0
LB apply : 3.83 us (0.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.22 us (74.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 | 6.1549e+05 | 262144 | 1 | 4.259e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.546732689738757 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7015221906261685, dt = 0.0016027291326007288
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (0.2%)
patch tree reduce : 1713.00 ns (0.0%)
gen split merge : 922.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 951.00 ns (0.0%)
LB compute : 3.56 ms (99.4%)
LB move op cnt : 0
LB apply : 4.17 us (0.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.17 us (77.6%)
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 | 6.1678e+05 | 262144 | 1 | 4.250e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.575372675201276 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7031249197587692, dt = 0.0016027553661710615
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (0.9%)
patch tree reduce : 1794.00 ns (0.2%)
gen split merge : 921.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 862.00 ns (0.1%)
LB compute : 770.58 us (97.4%)
LB move op cnt : 0
LB apply : 3.70 us (0.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.00 us (74.2%)
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.2409e+05 | 262144 | 1 | 4.200e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.736473040941984 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7047276751249403, dt = 0.0016027820020151169
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (0.1%)
patch tree reduce : 1813.00 ns (0.0%)
gen split merge : 992.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.0%)
LB compute : 6.15 ms (99.7%)
LB move op cnt : 0
LB apply : 3.68 us (0.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.43 us (75.6%)
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 | 6.1843e+05 | 262144 | 1 | 4.239e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.612196652830578 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7063304571269554, dt = 0.0016028087969288919
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.25 us (1.2%)
patch tree reduce : 1844.00 ns (0.3%)
gen split merge : 1082.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 872.00 ns (0.1%)
LB compute : 601.17 us (96.6%)
LB move op cnt : 0
LB apply : 3.77 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.84 us (73.3%)
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 | 6.2388e+05 | 262144 | 1 | 4.202e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.732404032360321 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7079332659238843, dt = 0.001602835530867807
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (0.2%)
patch tree reduce : 1763.00 ns (0.0%)
gen split merge : 942.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 1283.00 ns (0.0%)
LB compute : 4.11 ms (99.5%)
LB move op cnt : 0
LB apply : 4.07 us (0.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.98 us (75.6%)
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 | 6.1711e+05 | 262144 | 1 | 4.248e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.583640800733187 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7095361014547521, dt = 0.001602861810216569
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1763.00 ns (0.4%)
gen split merge : 962.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 912.00 ns (0.2%)
LB compute : 395.80 us (95.0%)
LB move op cnt : 0
LB apply : 3.59 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.17 us (77.7%)
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 | 6.2174e+05 | 262144 | 1 | 4.216e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.68568991625048 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7111389632649686, dt = 0.0016028874992043646
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (0.3%)
patch tree reduce : 1734.00 ns (0.1%)
gen split merge : 941.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 941.00 ns (0.0%)
LB compute : 2.25 ms (99.1%)
LB move op cnt : 0
LB apply : 3.85 us (0.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.01 us (75.0%)
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 | 6.2119e+05 | 262144 | 1 | 4.220e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.673821411462036 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.712741850764173, dt = 0.001602912579695846
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1743.00 ns (0.4%)
gen split merge : 932.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 871.00 ns (0.2%)
LB compute : 392.38 us (95.1%)
LB move op cnt : 0
LB apply : 3.59 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.84 us (75.3%)
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 | 6.2362e+05 | 262144 | 1 | 4.204e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.727555688146673 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7143447633438688, dt = 0.0016029370412804006
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.6%)
patch tree reduce : 1714.00 ns (0.4%)
gen split merge : 941.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 872.00 ns (0.2%)
LB compute : 401.50 us (95.2%)
LB move op cnt : 0
LB apply : 3.71 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.29 us (75.4%)
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 | 6.3261e+05 | 262144 | 1 | 4.144e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.925596239151353 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7159477003851492, dt = 0.0016029608931723534
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 2.07 us (0.6%)
gen split merge : 1233.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 871.00 ns (0.2%)
LB compute : 346.48 us (94.4%)
LB move op cnt : 0
LB apply : 3.93 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.23 us (72.7%)
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.2695e+05 | 262144 | 1 | 4.181e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.801216053456063 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7175506612783216, dt = 0.001602984063123024
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (0.1%)
patch tree reduce : 1783.00 ns (0.0%)
gen split merge : 972.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 872.00 ns (0.0%)
LB compute : 5.87 ms (99.6%)
LB move op cnt : 0
LB apply : 3.56 us (0.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.34 us (73.0%)
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 | 6.1034e+05 | 262144 | 1 | 4.295e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.435723249621008 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7191536453414445, dt = 0.0016030065282423935
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (0.8%)
patch tree reduce : 1723.00 ns (0.2%)
gen split merge : 1263.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 861.00 ns (0.1%)
LB compute : 781.05 us (97.4%)
LB move op cnt : 0
LB apply : 3.75 us (0.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.00 us (75.9%)
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 | 6.1890e+05 | 262144 | 1 | 4.236e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.624409277969185 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.720756651869687, dt = 0.0016030282236919992
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.4%)
patch tree reduce : 1793.00 ns (0.4%)
gen split merge : 952.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 872.00 ns (0.2%)
LB compute : 424.57 us (95.5%)
LB move op cnt : 0
LB apply : 3.75 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.75 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 | 6.1271e+05 | 262144 | 1 | 4.278e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.488292275393958 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7223596800933789, dt = 0.0016030490402747643
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (0.8%)
patch tree reduce : 1623.00 ns (0.2%)
gen split merge : 1283.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1002.00 ns (0.1%)
LB compute : 808.17 us (97.5%)
LB move op cnt : 0
LB apply : 3.71 us (0.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.25 us (73.1%)
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 | 6.2153e+05 | 262144 | 1 | 4.218e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.682641157820154 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7239627291336537, dt = 0.0016030688914240292
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.37 us (1.9%)
patch tree reduce : 1803.00 ns (0.5%)
gen split merge : 1243.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1052.00 ns (0.3%)
LB compute : 376.72 us (94.5%)
LB move op cnt : 0
LB apply : 3.62 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.97 us (75.1%)
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 | 6.2276e+05 | 262144 | 1 | 4.209e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.709964168035762 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7255657980250777, dt = 0.0016030876670731196
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1703.00 ns (0.4%)
gen split merge : 951.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.2%)
LB compute : 427.40 us (95.5%)
LB move op cnt : 0
LB apply : 3.88 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.64 us (75.5%)
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 | 6.3068e+05 | 262144 | 1 | 4.157e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.884435437812543 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7271688856921508, dt = 0.0016031052505175167
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.27 us (0.5%)
patch tree reduce : 1834.00 ns (0.1%)
gen split merge : 932.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 882.00 ns (0.1%)
LB compute : 1437.61 us (98.5%)
LB move op cnt : 0
LB apply : 4.25 us (0.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.35 us (72.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 | 6.0424e+05 | 262144 | 1 | 4.338e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.302544966643504 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7287719909426683, dt = 0.0016031215299859456
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.2%)
patch tree reduce : 2.06 us (0.4%)
gen split merge : 952.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 872.00 ns (0.1%)
LB compute : 560.96 us (96.2%)
LB move op cnt : 0
LB apply : 4.24 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.61 us (75.4%)
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 | 6.0139e+05 | 262144 | 1 | 4.359e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.239869956446942 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7303751124726543, dt = 0.0016031364287506119
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.55 us (0.6%)
patch tree reduce : 2.24 us (0.2%)
gen split merge : 961.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 993.00 ns (0.1%)
LB compute : 1231.03 us (98.2%)
LB move op cnt : 0
LB apply : 4.07 us (0.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.43 us (76.8%)
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 | 6.1771e+05 | 262144 | 1 | 4.244e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.599426164512305 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.731978248901405, dt = 0.0016031499038894003
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (0.3%)
patch tree reduce : 1844.00 ns (0.1%)
gen split merge : 942.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 951.00 ns (0.0%)
LB compute : 2.07 ms (99.0%)
LB move op cnt : 0
LB apply : 3.91 us (0.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.80 us (71.2%)
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 | 6.2035e+05 | 262144 | 1 | 4.226e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.657660336966881 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7335813988052944, dt = 0.0016031619678276005
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1874.00 ns (0.5%)
gen split merge : 1012.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.3%)
LB compute : 360.98 us (94.6%)
LB move op cnt : 0
LB apply : 3.71 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.11 us (75.1%)
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 | 6.2319e+05 | 262144 | 1 | 4.206e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.720255998036933 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.735184560773122, dt = 0.0016031726918133717
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1973.00 ns (0.5%)
gen split merge : 932.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1002.00 ns (0.2%)
LB compute : 408.92 us (95.2%)
LB move op cnt : 0
LB apply : 3.77 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.01 us (75.9%)
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 | 6.2606e+05 | 262144 | 1 | 4.187e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.783503426425401 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7367877334649354, dt = 0.001603182198162931
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1733.00 ns (0.4%)
gen split merge : 932.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 852.00 ns (0.2%)
LB compute : 403.13 us (95.2%)
LB move op cnt : 0
LB apply : 4.06 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.34 us (75.3%)
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 | 6.2987e+05 | 262144 | 1 | 4.162e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.86735335227057 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7383909156630983, dt = 0.0016031906312606297
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1693.00 ns (0.5%)
gen split merge : 1112.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 852.00 ns (0.2%)
LB compute : 340.14 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.77 us (74.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 | 6.2160e+05 | 262144 | 1 | 4.217e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.685548875954376 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7399941062943589, dt = 0.001603198125524976
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1984.00 ns (0.5%)
gen split merge : 922.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 852.00 ns (0.2%)
LB compute : 371.13 us (94.9%)
LB move op cnt : 0
LB apply : 3.32 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.75 us (74.2%)
Info: cfl dt = 0.0016032048217145083 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 6.2978e+05 | 262144 | 1 | 4.162e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.865660325361072 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7415973044198839, dt = 0.0016032048217145083
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1743.00 ns (0.5%)
gen split merge : 942.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 952.00 ns (0.2%)
LB compute : 365.11 us (94.6%)
LB move op cnt : 0
LB apply : 3.99 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.05 us (76.4%)
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 | 6.2864e+05 | 262144 | 1 | 4.170e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.84050484869022 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7432005092415984, dt = 0.001603210829198019
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.34 us (2.0%)
patch tree reduce : 1964.00 ns (0.5%)
gen split merge : 942.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 961.00 ns (0.3%)
LB compute : 339.83 us (94.2%)
LB move op cnt : 0
LB apply : 3.39 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.71 us (72.6%)
Info: cfl dt = 0.001603216226446468 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 6.2220e+05 | 262144 | 1 | 4.213e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.698722179955242 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7448037200707964, dt = 0.001603216226446468
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (1.6%)
patch tree reduce : 1934.00 ns (0.4%)
gen split merge : 972.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.2%)
LB compute : 413.23 us (95.2%)
LB move op cnt : 0
LB apply : 3.37 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.88 us (73.6%)
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 | 6.1790e+05 | 262144 | 1 | 4.242e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.60426447061351 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7464069362972429, dt = 0.0016032210510216135
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (0.9%)
patch tree reduce : 2.15 us (0.3%)
gen split merge : 932.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 852.00 ns (0.1%)
LB compute : 770.60 us (97.3%)
LB move op cnt : 0
LB apply : 3.89 us (0.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.62 us (76.6%)
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 | 6.1650e+05 | 262144 | 1 | 4.252e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.573305606349862 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7480101573482645, dt = 0.0016032252982541293
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.27 us (1.0%)
patch tree reduce : 2.20 us (0.3%)
gen split merge : 942.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 872.00 ns (0.1%)
LB compute : 704.47 us (97.1%)
LB move op cnt : 0
LB apply : 4.09 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.06 us (76.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 | 6.2244e+05 | 262144 | 1 | 4.212e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.704178432968442 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7496133826465186, dt = 0.0016032289448794897
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 2.08 us (0.5%)
gen split merge : 932.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 952.00 ns (0.2%)
LB compute : 379.18 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.99 us (75.3%)
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 | 6.1596e+05 | 262144 | 1 | 4.256e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.561659348688563 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7512166115913981, dt = 0.0016032319622380992
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (0.2%)
patch tree reduce : 1843.00 ns (0.0%)
gen split merge : 932.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 902.00 ns (0.0%)
LB compute : 3.78 ms (99.4%)
LB move op cnt : 0
LB apply : 4.14 us (0.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.17 us (77.8%)
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 | 6.2036e+05 | 262144 | 1 | 4.226e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.658596079636519 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7528198435536362, dt = 0.001603234323273067
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (0.2%)
patch tree reduce : 1904.00 ns (0.1%)
gen split merge : 961.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 1002.00 ns (0.0%)
LB compute : 3.41 ms (99.4%)
LB move op cnt : 0
LB apply : 4.25 us (0.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.17 us (76.9%)
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 | 6.1919e+05 | 262144 | 1 | 4.234e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.632824041386973 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7544230778769092, dt = 0.0016032360115701646
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.2%)
patch tree reduce : 1904.00 ns (0.3%)
gen split merge : 1242.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 952.00 ns (0.2%)
LB compute : 528.66 us (96.1%)
LB move op cnt : 0
LB apply : 4.04 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.40 us (75.3%)
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 | 6.2208e+05 | 262144 | 1 | 4.214e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.696385588610747 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7560263138884794, dt = 0.0016032370219987802
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1824.00 ns (0.5%)
gen split merge : 992.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1052.00 ns (0.3%)
LB compute : 371.00 us (94.9%)
LB move op cnt : 0
LB apply : 3.44 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.69 us (73.7%)
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 | 6.2604e+05 | 262144 | 1 | 4.187e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.78352320531791 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7576295509104782, dt = 0.0016032373706524512
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.7%)
patch tree reduce : 1914.00 ns (0.5%)
gen split merge : 941.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 942.00 ns (0.2%)
LB compute : 367.76 us (94.7%)
LB move op cnt : 0
LB apply : 3.62 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.01 us (75.8%)
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 | 6.2320e+05 | 262144 | 1 | 4.206e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.721098039463955 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7592327882811307, dt = 0.0016032370915759011
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 2.06 us (0.5%)
gen split merge : 972.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 942.00 ns (0.2%)
LB compute : 381.33 us (94.9%)
LB move op cnt : 0
LB apply : 3.46 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.71 us (74.0%)
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 | 6.1016e+05 | 262144 | 1 | 4.296e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.433886524055053 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7608360253727067, dt = 0.0016032361948571062
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 2.08 us (0.5%)
gen split merge : 942.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.2%)
LB compute : 374.27 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.77 us (73.6%)
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 | 6.2005e+05 | 262144 | 1 | 4.228e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.651694353691495 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7624392615675638, dt = 0.0016032347915598984
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 2.14 us (0.6%)
gen split merge : 912.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 881.00 ns (0.2%)
LB compute : 348.11 us (94.4%)
LB move op cnt : 0
LB apply : 3.74 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.50 us (73.3%)
Info: cfl dt = 0.0016032330193053131 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 6.2427e+05 | 262144 | 1 | 4.199e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.744589576905298 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7640424963591237, dt = 0.0016032330193053131
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1844.00 ns (0.4%)
gen split merge : 1042.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 882.00 ns (0.2%)
LB compute : 397.13 us (95.0%)
LB move op cnt : 0
LB apply : 4.08 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.98 us (74.1%)
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 | 6.3012e+05 | 262144 | 1 | 4.160e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.873482078607752 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.765645729378429, dt = 0.0016032309893989941
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.9%)
patch tree reduce : 2.06 us (0.6%)
gen split merge : 1042.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 941.00 ns (0.3%)
LB compute : 351.70 us (94.4%)
LB move op cnt : 0
LB apply : 3.44 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.03 us (75.7%)
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 | 6.2354e+05 | 262144 | 1 | 4.204e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.728501691103723 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.767248960367828, dt = 0.0016032287429485347
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1854.00 ns (0.5%)
gen split merge : 1112.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 862.00 ns (0.2%)
LB compute : 359.98 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.77 us (73.5%)
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 | 6.2297e+05 | 262144 | 1 | 4.208e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.715983136953936 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7688521891107765, dt = 0.0016032262742395774
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.53 us (1.9%)
patch tree reduce : 2.12 us (0.5%)
gen split merge : 982.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 892.00 ns (0.2%)
LB compute : 369.19 us (94.0%)
LB move op cnt : 0
LB apply : 4.71 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.13 us (72.4%)
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 | 6.2034e+05 | 262144 | 1 | 4.226e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.658067512195863 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.770455415385016, dt = 0.0016032235470422123
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.8%)
patch tree reduce : 1813.00 ns (0.5%)
gen split merge : 962.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 951.00 ns (0.2%)
LB compute : 375.42 us (94.7%)
LB move op cnt : 0
LB apply : 3.78 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.02 us (71.5%)
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 | 6.2597e+05 | 262144 | 1 | 4.188e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.781977174986148 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7720586389320583, dt = 0.0016032204991766718
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.23 us (1.9%)
patch tree reduce : 2.23 us (0.6%)
gen split merge : 932.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 952.00 ns (0.2%)
LB compute : 364.88 us (94.4%)
LB move op cnt : 0
LB apply : 3.53 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.17 us (76.5%)
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 | 6.1953e+05 | 262144 | 1 | 4.231e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.640113635522232 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.773661859431235, dt = 0.0016032170516318202
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.6%)
patch tree reduce : 1783.00 ns (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 : 407.65 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.89 us (75.2%)
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.2411e+05 | 262144 | 1 | 4.200e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.740937771303633 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7752650764828668, dt = 0.001603213119832898
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.7%)
patch tree reduce : 1723.00 ns (0.4%)
gen split merge : 942.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1002.00 ns (0.2%)
LB compute : 382.88 us (94.8%)
LB move op cnt : 0
LB apply : 3.81 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.01 us (72.1%)
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 | 6.2206e+05 | 262144 | 1 | 4.214e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.695745091830277 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7768682896026997, dt = 0.0016032088102497727
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.4%)
patch tree reduce : 2.14 us (0.5%)
gen split merge : 952.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.2%)
LB compute : 430.37 us (95.4%)
LB move op cnt : 0
LB apply : 4.08 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.91 us (72.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 | 6.0151e+05 | 262144 | 1 | 4.358e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.243299308893166 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7784714984129495, dt = 0.0016032039420970671
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.24 us (0.3%)
patch tree reduce : 1603.00 ns (0.1%)
gen split merge : 952.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 942.00 ns (0.0%)
LB compute : 2.06 ms (99.0%)
LB move op cnt : 0
LB apply : 3.84 us (0.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.40 us (78.3%)
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 | 6.1375e+05 | 262144 | 1 | 4.271e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.512643583950936 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7800747023550466, dt = 0.001603198316428017
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1873.00 ns (0.5%)
gen split merge : 932.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 892.00 ns (0.2%)
LB compute : 373.09 us (94.8%)
LB move op cnt : 0
LB apply : 3.56 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.48 us (68.0%)
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 | 6.3479e+05 | 262144 | 1 | 4.130e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.975939089948229 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7816779006714746, dt = 0.001603191803457339
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (0.4%)
patch tree reduce : 1843.00 ns (0.1%)
gen split merge : 942.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 892.00 ns (0.1%)
LB compute : 1674.63 us (98.8%)
LB move op cnt : 0
LB apply : 4.18 us (0.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.15 us (75.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 | 6.1702e+05 | 262144 | 1 | 4.249e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.584609565618335 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7832810924749319, dt = 0.00160318435159101
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (0.1%)
patch tree reduce : 1744.00 ns (0.0%)
gen split merge : 1232.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 862.00 ns (0.0%)
LB compute : 5.35 ms (99.6%)
LB move op cnt : 0
LB apply : 3.76 us (0.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.68 us (61.4%)
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 | 6.1716e+05 | 262144 | 1 | 4.248e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.58766376004812 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.784884276826523, dt = 0.0016031759954462403
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.3%)
patch tree reduce : 1863.00 ns (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 : 536.39 us (96.2%)
LB move op cnt : 0
LB apply : 3.75 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.25 us (73.1%)
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 | 6.2202e+05 | 262144 | 1 | 4.214e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.694544656587395 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7864874528219692, dt = 0.0016031668202079832
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.9%)
patch tree reduce : 1894.00 ns (0.5%)
gen split merge : 932.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 952.00 ns (0.3%)
LB compute : 339.64 us (94.4%)
LB move op cnt : 0
LB apply : 3.62 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.81 us (75.3%)
Info: cfl dt = 0.00160315689690988 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 6.2100e+05 | 262144 | 1 | 4.221e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.671928217226 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7880906196421772, dt = 0.00160315689690988
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (0.8%)
patch tree reduce : 1783.00 ns (0.2%)
gen split merge : 962.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 952.00 ns (0.1%)
LB compute : 751.82 us (97.4%)
LB move op cnt : 0
LB apply : 3.82 us (0.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.30 us (75.1%)
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 | 6.1332e+05 | 262144 | 1 | 4.274e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.502760188562062 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7896937765390871, dt = 0.0016031462920382588
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1823.00 ns (0.5%)
gen split merge : 1032.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1302.00 ns (0.3%)
LB compute : 377.79 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.22 us (76.1%)
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 | 6.2739e+05 | 262144 | 1 | 4.178e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.812520387093636 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7912969228311254, dt = 0.0016031350538593156
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1784.00 ns (0.4%)
gen split merge : 942.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 861.00 ns (0.2%)
LB compute : 452.89 us (95.4%)
LB move op cnt : 0
LB apply : 4.29 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.16 us (75.7%)
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 | 6.2723e+05 | 262144 | 1 | 4.179e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.809003176952949 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7929000578849847, dt = 0.000849942115015212
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1813.00 ns (0.5%)
gen split merge : 1132.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 861.00 ns (0.2%)
LB compute : 371.68 us (94.7%)
LB move op cnt : 0
LB apply : 4.21 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.27 us (77.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 | 6.2430e+05 | 262144 | 1 | 4.199e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7.286945447070434 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 226.677337584 (s) [Godunov][rank=0]
Info: dump to _to_trash/ramses_kh/periodic_0007.vtk [VTK Dump][rank=0]
- took 52.04 ms, bandwidth = 749.41 MB/s
amr::Godunov: t = 0.79375, dt = 0.00160311634300565
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.2%)
patch tree reduce : 1973.00 ns (0.3%)
gen split merge : 952.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 971.00 ns (0.2%)
LB compute : 568.46 us (96.5%)
LB move op cnt : 0
LB apply : 3.60 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.26 us (70.2%)
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 | 6.3689e+05 | 262144 | 1 | 4.116e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 14.021525792132147 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7953531163430057, dt = 0.001603101514112209
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1904.00 ns (0.5%)
gen split merge : 1102.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 862.00 ns (0.2%)
LB compute : 357.88 us (94.4%)
LB move op cnt : 0
LB apply : 3.49 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.92 us (75.8%)
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 | 6.2030e+05 | 262144 | 1 | 4.226e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.65606485273534 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.7969562178571179, dt = 0.0016030872099520538
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.24 us (1.9%)
patch tree reduce : 1673.00 ns (0.4%)
gen split merge : 1102.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.3%)
LB compute : 358.05 us (94.5%)
LB move op cnt : 0
LB apply : 3.53 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.16 us (77.4%)
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 | 6.2089e+05 | 262144 | 1 | 4.222e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.668868564366793 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.79855930506707, dt = 0.0016030731984946636
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1703.00 ns (0.5%)
gen split merge : 942.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1033.00 ns (0.3%)
LB compute : 356.60 us (94.6%)
LB move op cnt : 0
LB apply : 3.58 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.70 us (76.4%)
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 | 6.3120e+05 | 262144 | 1 | 4.153e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.895708986991904 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8001623782655646, dt = 0.0016030593012524197
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1753.00 ns (0.4%)
gen split merge : 1202.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1142.00 ns (0.3%)
LB compute : 381.32 us (94.9%)
LB move op cnt : 0
LB apply : 3.56 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.03 us (75.7%)
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 | 6.2623e+05 | 262144 | 1 | 4.186e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.78621732058388 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.801765437566817, dt = 0.001603045197728303
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1894.00 ns (0.4%)
gen split merge : 1032.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 882.00 ns (0.2%)
LB compute : 406.49 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.41 us (71.3%)
Info: cfl dt = 0.0016030305345388163 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 6.2464e+05 | 262144 | 1 | 4.197e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.751075334181264 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8033684827645452, dt = 0.0016030305345388163
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.2%)
patch tree reduce : 1723.00 ns (0.3%)
gen split merge : 962.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.2%)
LB compute : 559.31 us (96.6%)
LB move op cnt : 0
LB apply : 3.60 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.42 us (74.0%)
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 | 6.1666e+05 | 262144 | 1 | 4.251e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.575377931658414 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.804971513299084, dt = 0.0016030150630360867
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 2.04 us (0.5%)
gen split merge : 962.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 862.00 ns (0.2%)
LB compute : 401.82 us (95.1%)
LB move op cnt : 0
LB apply : 3.81 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.34 us (75.2%)
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 | 6.2704e+05 | 262144 | 1 | 4.181e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.80360905044185 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8065745283621201, dt = 0.001602998711726593
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1903.00 ns (0.5%)
gen split merge : 941.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1011.00 ns (0.3%)
LB compute : 361.31 us (94.6%)
LB move op cnt : 0
LB apply : 3.99 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.28 us (77.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 | 6.3125e+05 | 262144 | 1 | 4.153e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.896268778557673 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8081775270738467, dt = 0.0016029815862519006
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (0.2%)
patch tree reduce : 1713.00 ns (0.0%)
gen split merge : 1312.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 951.00 ns (0.0%)
LB compute : 3.97 ms (99.5%)
LB move op cnt : 0
LB apply : 3.75 us (0.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.95 us (75.2%)
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 | 6.1770e+05 | 262144 | 1 | 4.244e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.597821053288701 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8097805086600987, dt = 0.001602963925227425
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (0.2%)
patch tree reduce : 1973.00 ns (0.0%)
gen split merge : 932.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 951.00 ns (0.0%)
LB compute : 4.07 ms (99.5%)
LB move op cnt : 0
LB apply : 4.04 us (0.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.64 us (77.2%)
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 | 6.0459e+05 | 262144 | 1 | 4.336e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.309137373365676 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8113834725853261, dt = 0.0016029449389489685
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1963.00 ns (0.5%)
gen split merge : 1162.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 861.00 ns (0.2%)
LB compute : 351.03 us (94.3%)
LB move op cnt : 0
LB apply : 3.58 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.33 us (73.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 | 6.3185e+05 | 262144 | 1 | 4.149e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.90907624338871 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.812986417524275, dt = 0.0016029184652173961
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1734.00 ns (0.5%)
gen split merge : 1102.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.3%)
LB compute : 355.69 us (94.5%)
LB move op cnt : 0
LB apply : 4.05 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.32 us (76.6%)
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 | 6.2448e+05 | 262144 | 1 | 4.198e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.746438019217488 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8145893359894925, dt = 0.0016028913492318892
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.7%)
patch tree reduce : 1783.00 ns (0.4%)
gen split merge : 911.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.2%)
LB compute : 397.73 us (94.8%)
LB move op cnt : 0
LB apply : 4.35 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.05 us (74.9%)
Info: cfl dt = 0.001602863798196203 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 6.2707e+05 | 262144 | 1 | 4.180e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.803350516676625 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8161922273387243, dt = 0.001602863798196203
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 2.03 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 : 366.88 us (94.6%)
LB move op cnt : 0
LB apply : 3.56 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.88 us (71.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.2784e+05 | 262144 | 1 | 4.175e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.820075548229752 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8177950911369205, dt = 0.0016028360752132573
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (0.1%)
patch tree reduce : 1714.00 ns (0.0%)
gen split merge : 962.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 952.00 ns (0.0%)
LB compute : 6.10 ms (99.7%)
LB move op cnt : 0
LB apply : 3.89 us (0.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.33 us (75.8%)
Info: cfl dt = 0.0016028084811607203 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 6.0945e+05 | 262144 | 1 | 4.301e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.41505850264579 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8193979272121338, dt = 0.0016028084811607203
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1744.00 ns (0.4%)
gen split merge : 931.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1002.00 ns (0.2%)
LB compute : 394.90 us (95.2%)
LB move op cnt : 0
LB apply : 3.46 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.43 us (76.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 | 6.2366e+05 | 262144 | 1 | 4.203e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.727583270308223 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8210007356932945, dt = 0.0016027811701388704
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (0.3%)
patch tree reduce : 1763.00 ns (0.1%)
gen split merge : 902.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 1142.00 ns (0.0%)
LB compute : 2.47 ms (99.2%)
LB move op cnt : 0
LB apply : 4.04 us (0.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.43 us (71.9%)
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 | 6.2014e+05 | 262144 | 1 | 4.227e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.649845209071984 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8226035168634334, dt = 0.0016027543520720786
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.8%)
patch tree reduce : 1783.00 ns (0.4%)
gen split merge : 1222.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 901.00 ns (0.2%)
LB compute : 390.36 us (94.8%)
LB move op cnt : 0
LB apply : 3.83 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.92 us (76.3%)
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.2512e+05 | 262144 | 1 | 4.193e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.759290404993589 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8242062712155055, dt = 0.001602728247050656
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1634.00 ns (0.4%)
gen split merge : 1002.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.3%)
LB compute : 355.01 us (94.6%)
LB move op cnt : 0
LB apply : 3.52 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.06 us (76.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 | 6.3081e+05 | 262144 | 1 | 4.156e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.88413913383227 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8258089994625561, dt = 0.001602703059990877
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (0.2%)
patch tree reduce : 1813.00 ns (0.0%)
gen split merge : 1143.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.0%)
LB compute : 3.77 ms (99.4%)
LB move op cnt : 0
LB apply : 3.77 us (0.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.01 us (75.6%)
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 | 6.2145e+05 | 262144 | 1 | 4.218e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.677937210142895 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.827411702522547, dt = 0.0016026789716808148
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 2.05 us (0.6%)
gen split merge : 942.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 892.00 ns (0.2%)
LB compute : 346.13 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.92 us (75.4%)
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 | 6.2223e+05 | 262144 | 1 | 4.213e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.694932324695637 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8290143814942278, dt = 0.0016026561338230872
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1603.00 ns (0.4%)
gen split merge : 952.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 952.00 ns (0.2%)
LB compute : 411.74 us (95.3%)
LB move op cnt : 0
LB apply : 3.59 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.25 us (73.6%)
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 | 6.2994e+05 | 262144 | 1 | 4.161e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.864358315687667 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8306170376280508, dt = 0.0016026346713323247
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.3%)
patch tree reduce : 1613.00 ns (0.3%)
gen split merge : 932.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 932.00 ns (0.2%)
LB compute : 468.84 us (95.8%)
LB move op cnt : 0
LB apply : 4.22 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.30 us (71.8%)
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 | 6.2817e+05 | 262144 | 1 | 4.173e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.82526031448875 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8322196722993832, dt = 0.0016026146892086917
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1984.00 ns (0.5%)
gen split merge : 16.55 us (3.8%)
split / merge op : 0/0
apply split merge : 1012.00 ns (0.2%)
LB compute : 397.37 us (91.6%)
LB move op cnt : 0
LB apply : 3.90 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.86 us (73.9%)
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 | 6.3251e+05 | 262144 | 1 | 4.144e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.92071584225076 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8338222869885918, dt = 0.0016025962807035585
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1734.00 ns (0.5%)
gen split merge : 1062.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1152.00 ns (0.3%)
LB compute : 362.76 us (94.7%)
LB move op cnt : 0
LB apply : 3.94 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.06 us (75.7%)
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 | 6.2958e+05 | 262144 | 1 | 4.164e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.856064335168115 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8354248832692954, dt = 0.0016025794874560183
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1773.00 ns (0.5%)
gen split merge : 1112.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 862.00 ns (0.2%)
LB compute : 342.07 us (94.5%)
LB move op cnt : 0
LB apply : 3.51 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.52 us (74.8%)
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.3116e+05 | 262144 | 1 | 4.153e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.890694064826505 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8370274627567514, dt = 0.0016025643884444642
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1943.00 ns (0.5%)
gen split merge : 962.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.3%)
LB compute : 342.23 us (94.4%)
LB move op cnt : 0
LB apply : 3.33 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.81 us (73.4%)
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 | 6.2918e+05 | 262144 | 1 | 4.166e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.846925607036736 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8386300271451959, dt = 0.0016025510896023312
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (0.2%)
patch tree reduce : 1723.00 ns (0.1%)
gen split merge : 972.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 1112.00 ns (0.0%)
LB compute : 3.07 ms (99.3%)
LB move op cnt : 0
LB apply : 4.13 us (0.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.47 us (76.5%)
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 | 6.1952e+05 | 262144 | 1 | 4.231e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.634220685153666 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8402325782347981, dt = 0.001602539694808876
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.6%)
patch tree reduce : 1633.00 ns (0.4%)
gen split merge : 1032.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1002.00 ns (0.2%)
LB compute : 402.77 us (95.1%)
LB move op cnt : 0
LB apply : 4.03 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.30 us (76.7%)
Info: cfl dt = 0.0016025302765295306 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 6.3227e+05 | 262144 | 1 | 4.146e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.914799200412476 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.841835117929607, dt = 0.0016025302765295306
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 2.30 us (0.6%)
gen split merge : 932.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 861.00 ns (0.2%)
LB compute : 364.27 us (94.8%)
LB move op cnt : 0
LB apply : 3.30 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.77 us (71.1%)
Info: cfl dt = 0.0016025228857944017 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 6.3044e+05 | 262144 | 1 | 4.158e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.87434989174318 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8434376482061365, dt = 0.0016025228857944017
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1833.00 ns (0.5%)
gen split merge : 992.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 932.00 ns (0.2%)
LB compute : 371.93 us (94.7%)
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.0%)
Info: cfl dt = 0.001602517551199873 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 6.2449e+05 | 262144 | 1 | 4.198e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.743279072351404 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.845040171091931, dt = 0.001602517551199873
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.4%)
patch tree reduce : 1703.00 ns (0.4%)
gen split merge : 941.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1192.00 ns (0.3%)
LB compute : 445.61 us (95.6%)
LB move op cnt : 0
LB apply : 3.51 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.69 us (74.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 | 6.2426e+05 | 262144 | 1 | 4.199e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.738205158659165 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8466426886431309, dt = 0.0016025143393577164
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1793.00 ns (0.5%)
gen split merge : 922.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 971.00 ns (0.2%)
LB compute : 369.56 us (94.8%)
LB move op cnt : 0
LB apply : 3.43 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.00 us (76.1%)
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 | 6.2260e+05 | 262144 | 1 | 4.210e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.701633610774511 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8482452029824886, dt = 0.001602513429106726
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.4%)
patch tree reduce : 1944.00 ns (0.1%)
gen split merge : 931.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.1%)
LB compute : 1725.06 us (98.8%)
LB move op cnt : 0
LB apply : 4.14 us (0.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.40 us (77.0%)
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 | 6.1997e+05 | 262144 | 1 | 4.228e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.643759000165277 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8498477164115954, dt = 0.0016025147295762971
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1904.00 ns (0.4%)
gen split merge : 952.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1032.00 ns (0.2%)
LB compute : 406.05 us (95.0%)
LB move op cnt : 0
LB apply : 3.78 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.92 us (74.1%)
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 | 6.3044e+05 | 262144 | 1 | 4.158e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.874315623865755 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8514502311411717, dt = 0.001602518127916714
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 2.10 us (0.5%)
gen split merge : 952.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 872.00 ns (0.2%)
LB compute : 368.30 us (94.7%)
LB move op cnt : 0
LB apply : 4.00 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.25 us (77.0%)
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 | 6.3040e+05 | 262144 | 1 | 4.158e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.873262665847749 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8530527492690884, dt = 0.0016025234948604807
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 2.18 us (0.6%)
gen split merge : 1242.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 891.00 ns (0.2%)
LB compute : 366.21 us (94.5%)
LB move op cnt : 0
LB apply : 3.49 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.92 us (74.8%)
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 | 6.2708e+05 | 262144 | 1 | 4.180e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.800422096066344 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8546552727639488, dt = 0.0016025307371860121
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.6%)
patch tree reduce : 1833.00 ns (0.5%)
gen split merge : 1092.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1052.00 ns (0.3%)
LB compute : 383.12 us (94.9%)
LB move op cnt : 0
LB apply : 3.57 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.24 us (73.1%)
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 | 6.3162e+05 | 262144 | 1 | 4.150e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.900425339242044 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8562578035011348, dt = 0.0016025397566845896
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1643.00 ns (0.4%)
gen split merge : 941.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.3%)
LB compute : 369.68 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.12 us (74.9%)
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 | 6.2968e+05 | 262144 | 1 | 4.163e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.857658917809749 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8578603432578193, dt = 0.0016025504180879617
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.16 us (0.4%)
patch tree reduce : 1733.00 ns (0.1%)
gen split merge : 942.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 862.00 ns (0.0%)
LB compute : 1856.85 us (98.9%)
LB move op cnt : 0
LB apply : 3.75 us (0.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.15 us (77.0%)
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 | 6.2931e+05 | 262144 | 1 | 4.166e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.849722641122394 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8594628936759073, dt = 0.001602562578049507
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 2.02 us (0.5%)
gen split merge : 1162.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 952.00 ns (0.3%)
LB compute : 353.74 us (94.4%)
LB move op cnt : 0
LB apply : 3.44 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.66 us (20.0%)
Info: cfl dt = 0.0016025760760995662 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 6.2406e+05 | 262144 | 1 | 4.201e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.734198452742207 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8610654562539568, dt = 0.0016025760760995662
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (1.6%)
patch tree reduce : 2.08 us (0.5%)
gen split merge : 902.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 881.00 ns (0.2%)
LB compute : 423.13 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.1%)
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 | 6.3090e+05 | 262144 | 1 | 4.155e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.884791180857173 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8626680323300564, dt = 0.0016025907646564645
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1923.00 ns (0.4%)
gen split merge : 961.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 902.00 ns (0.2%)
LB compute : 411.75 us (95.2%)
LB move op cnt : 0
LB apply : 3.69 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.22 us (72.3%)
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 | 6.3037e+05 | 262144 | 1 | 4.159e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.873353795535396 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8642706230947129, dt = 0.0016026064700639091
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (0.9%)
patch tree reduce : 1803.00 ns (0.2%)
gen split merge : 921.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 882.00 ns (0.1%)
LB compute : 800.59 us (97.4%)
LB move op cnt : 0
LB apply : 3.74 us (0.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.01 us (74.5%)
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 | 6.2364e+05 | 262144 | 1 | 4.203e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.725453909264804 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8658732295647769, dt = 0.0016026229657631185
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.1%)
patch tree reduce : 1723.00 ns (0.3%)
gen split merge : 942.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 872.00 ns (0.1%)
LB compute : 562.27 us (96.5%)
LB move op cnt : 0
LB apply : 3.80 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.89 us (71.8%)
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 | 6.2216e+05 | 262144 | 1 | 4.213e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.692940695844085 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8674758525305399, dt = 0.001602639969674518
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.46 us (2.0%)
patch tree reduce : 1833.00 ns (0.5%)
gen split merge : 981.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 952.00 ns (0.3%)
LB compute : 354.04 us (94.2%)
LB move op cnt : 0
LB apply : 3.92 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.83 us (74.0%)
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 | 6.2813e+05 | 262144 | 1 | 4.173e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.824358855693365 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8690784925002144, dt = 0.001602657144806639
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.9%)
patch tree reduce : 1803.00 ns (0.5%)
gen split merge : 912.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 882.00 ns (0.2%)
LB compute : 350.37 us (94.5%)
LB move op cnt : 0
LB apply : 3.80 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.54 us (70.7%)
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 | 6.0501e+05 | 262144 | 1 | 4.333e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.31577964829382 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8706811496450211, dt = 0.001602674211409259
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.5%)
patch tree reduce : 1784.00 ns (0.4%)
gen split merge : 1302.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 961.00 ns (0.2%)
LB compute : 423.73 us (95.1%)
LB move op cnt : 0
LB apply : 4.32 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.02 us (74.5%)
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 | 6.2618e+05 | 262144 | 1 | 4.186e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.781893807590677 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8722838238564303, dt = 0.0016026909469064187
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.5%)
patch tree reduce : 1834.00 ns (0.4%)
gen split merge : 931.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 942.00 ns (0.2%)
LB compute : 439.12 us (95.6%)
LB move op cnt : 0
LB apply : 3.71 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.09 us (47.0%)
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 | 6.2188e+05 | 262144 | 1 | 4.215e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.687346534145508 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8738865148033368, dt = 0.0016027071779796274
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.5%)
patch tree reduce : 2.03 us (0.5%)
gen split merge : 942.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 882.00 ns (0.2%)
LB compute : 420.11 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.33 us (77.2%)
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 | 6.2099e+05 | 262144 | 1 | 4.221e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.667796732277797 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8754892219813164, dt = 0.0016027227944079652
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1744.00 ns (0.5%)
gen split merge : 962.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 942.00 ns (0.3%)
LB compute : 340.11 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.55 us (72.6%)
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 | 6.2514e+05 | 262144 | 1 | 4.193e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.759447221615881 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8770919447757244, dt = 0.0016027376907496672
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.1%)
patch tree reduce : 1592.00 ns (0.3%)
gen split merge : 1273.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 942.00 ns (0.2%)
LB compute : 576.68 us (96.6%)
LB move op cnt : 0
LB apply : 3.56 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.83 us (74.1%)
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 | 6.2052e+05 | 262144 | 1 | 4.225e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.657778157293402 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8786946824664741, dt = 0.0016027514997137694
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (0.7%)
patch tree reduce : 1744.00 ns (0.2%)
gen split merge : 1072.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 862.00 ns (0.1%)
LB compute : 875.26 us (97.7%)
LB move op cnt : 0
LB apply : 3.91 us (0.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.19 us (76.1%)
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 | 6.1462e+05 | 262144 | 1 | 4.265e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.528154453564486 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8802974339661879, dt = 0.0016027642108425455
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.1%)
patch tree reduce : 1844.00 ns (0.3%)
gen split merge : 992.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.2%)
LB compute : 559.68 us (96.4%)
LB move op cnt : 0
LB apply : 3.68 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.02 us (76.8%)
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 | 6.2114e+05 | 262144 | 1 | 4.220e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.671778214302282 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8819001981770305, dt = 0.0016027760008704834
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.7%)
patch tree reduce : 1773.00 ns (0.4%)
gen split merge : 1142.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.2%)
LB compute : 392.04 us (94.8%)
LB move op cnt : 0
LB apply : 4.14 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.07 us (74.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 | 6.3024e+05 | 262144 | 1 | 4.159e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.872175624336865 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8835029741779009, dt = 0.0016027869961241616
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1984.00 ns (0.5%)
gen split merge : 1262.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 861.00 ns (0.2%)
LB compute : 361.93 us (94.5%)
LB move op cnt : 0
LB apply : 4.20 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.62 us (69.2%)
Info: cfl dt = 0.0016027972909444538 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 6.1646e+05 | 262144 | 1 | 4.252e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.568761608654262 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8851057611740251, dt = 0.0016027972909444538
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (0.5%)
patch tree reduce : 1943.00 ns (0.1%)
gen split merge : 931.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 872.00 ns (0.1%)
LB compute : 1391.50 us (98.5%)
LB move op cnt : 0
LB apply : 4.26 us (0.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.10 us (73.4%)
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 | 6.2153e+05 | 262144 | 1 | 4.218e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.680526859458778 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8867085584649695, dt = 0.0016028065750849905
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1713.00 ns (0.4%)
gen split merge : 922.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.2%)
LB compute : 389.65 us (95.0%)
LB move op cnt : 0
LB apply : 3.88 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.79 us (74.7%)
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 | 6.2353e+05 | 262144 | 1 | 4.204e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.724570968357611 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8883113650400545, dt = 0.0016028148437606054
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.7%)
patch tree reduce : 2.15 us (0.5%)
gen split merge : 932.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 952.00 ns (0.2%)
LB compute : 394.72 us (94.8%)
LB move op cnt : 0
LB apply : 4.20 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.43 us (72.6%)
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 | 5.1060e+05 | 262144 | 1 | 5.134e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11.238937014945888 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.889914179883815, dt = 0.0016028221958903795
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1743.00 ns (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 : 369.34 us (93.5%)
LB move op cnt : 0
LB apply : 3.53 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.29 us (73.9%)
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 | 6.2143e+05 | 262144 | 1 | 4.218e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.67854148119746 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8915170020797054, dt = 0.0016028286808619089
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (0.7%)
patch tree reduce : 1753.00 ns (0.2%)
gen split merge : 972.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 922.00 ns (0.1%)
LB compute : 972.06 us (97.9%)
LB move op cnt : 0
LB apply : 3.89 us (0.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.04 us (75.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 | 6.1919e+05 | 262144 | 1 | 4.234e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.629236142027597 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8931198307605673, dt = 0.0016028343829208682
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (0.7%)
patch tree reduce : 1804.00 ns (0.2%)
gen split merge : 982.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 932.00 ns (0.1%)
LB compute : 952.59 us (97.8%)
LB move op cnt : 0
LB apply : 4.36 us (0.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.71 us (74.0%)
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 | 6.2262e+05 | 262144 | 1 | 4.210e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.704741395449775 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8947226651434882, dt = 0.0016028392989003507
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1893.00 ns (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 : 380.75 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.60 us (70.7%)
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 | 6.2442e+05 | 262144 | 1 | 4.198e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.74443246450511 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8963255044423886, dt = 0.0016028435321079903
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1974.00 ns (0.5%)
gen split merge : 1062.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 952.00 ns (0.2%)
LB compute : 376.14 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.98 us (71.7%)
Info: cfl dt = 0.0016028472419249542 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 6.2434e+05 | 262144 | 1 | 4.199e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.742682082260842 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8979283479744966, dt = 0.0016028472419249542
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1753.00 ns (0.5%)
gen split merge : 932.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 862.00 ns (0.2%)
LB compute : 335.66 us (94.4%)
LB move op cnt : 0
LB apply : 3.50 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.58 us (72.6%)
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 | 6.1915e+05 | 262144 | 1 | 4.234e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.628659275023866 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.8995311952164216, dt = 0.001602850563070733
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.6%)
patch tree reduce : 1743.00 ns (0.4%)
gen split merge : 942.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1062.00 ns (0.2%)
LB compute : 405.60 us (95.1%)
LB move op cnt : 0
LB apply : 3.59 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.50 us (79.2%)
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 | 6.2526e+05 | 262144 | 1 | 4.193e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.763047428359915 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9011340457794923, dt = 0.0016028536077947273
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.9%)
patch tree reduce : 2.24 us (0.6%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 882.00 ns (0.2%)
LB compute : 340.17 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.27 us (73.8%)
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 | 6.2907e+05 | 262144 | 1 | 4.167e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.846887721365157 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9027368993872871, dt = 0.0016028564584681926
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.2%)
patch tree reduce : 1923.00 ns (0.1%)
gen split merge : 962.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 862.00 ns (0.0%)
LB compute : 2.97 ms (99.3%)
LB move op cnt : 0
LB apply : 4.12 us (0.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.71 us (73.4%)
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 | 6.1237e+05 | 262144 | 1 | 4.281e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.479482931872582 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9043397558457552, dt = 0.0016028591644393906
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1623.00 ns (0.4%)
gen split merge : 1042.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1192.00 ns (0.3%)
LB compute : 368.17 us (94.6%)
LB move op cnt : 0
LB apply : 3.67 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.78 us (70.9%)
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 | 6.1663e+05 | 262144 | 1 | 4.251e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.573197150493602 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9059426150101946, dt = 0.0016028617553642231
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1913.00 ns (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 : 349.29 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.44 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 | 6.2770e+05 | 262144 | 1 | 4.176e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.816974214869015 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9075454767655587, dt = 0.0016028642864362901
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1833.00 ns (0.5%)
gen split merge : 1171.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1172.00 ns (0.3%)
LB compute : 346.23 us (94.3%)
LB move op cnt : 0
LB apply : 3.50 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.27 us (74.4%)
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 | 6.2219e+05 | 262144 | 1 | 4.213e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.69574633592847 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.909148341051995, dt = 0.0016028667897627503
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (0.7%)
patch tree reduce : 1864.00 ns (0.2%)
gen split merge : 982.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 872.00 ns (0.1%)
LB compute : 988.37 us (97.9%)
LB move op cnt : 0
LB apply : 3.67 us (0.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.98 us (74.1%)
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 | 6.0012e+05 | 262144 | 1 | 4.368e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.20986385311864 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9107512078417578, dt = 0.0016028692624403087
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.2%)
patch tree reduce : 1723.00 ns (0.3%)
gen split merge : 942.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 882.00 ns (0.2%)
LB compute : 554.59 us (96.4%)
LB move op cnt : 0
LB apply : 3.72 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.72 us (77.0%)
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 | 6.2325e+05 | 262144 | 1 | 4.206e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.719056890366717 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9123540771041981, dt = 0.0016028716892449795
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 2.01 us (0.6%)
gen split merge : 962.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 942.00 ns (0.3%)
LB compute : 338.49 us (94.3%)
LB move op cnt : 0
LB apply : 3.71 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.82 us (63.1%)
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.2735e+05 | 262144 | 1 | 4.179e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.809283712425602 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9139569487934431, dt = 0.0016028740469329094
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.3%)
patch tree reduce : 1904.00 ns (0.1%)
gen split merge : 1112.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.0%)
LB compute : 2.15 ms (99.1%)
LB move op cnt : 0
LB apply : 3.66 us (0.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.04 us (76.0%)
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 | 6.1982e+05 | 262144 | 1 | 4.229e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.643622621901516 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9155598228403761, dt = 0.001602876303702996
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (1.7%)
patch tree reduce : 1994.00 ns (0.5%)
gen split merge : 1092.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 941.00 ns (0.2%)
LB compute : 401.17 us (95.0%)
LB move op cnt : 0
LB apply : 3.79 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.88 us (74.4%)
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 | 6.2858e+05 | 262144 | 1 | 4.170e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.836457052809267 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9171626991440791, dt = 0.0016028784411982629
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1764.00 ns (0.4%)
gen split merge : 971.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 861.00 ns (0.2%)
LB compute : 373.44 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.37 us (70.5%)
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 | 6.2592e+05 | 262144 | 1 | 4.188e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.777768960035111 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9187655775852773, dt = 0.0016028804286573972
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1724.00 ns (0.4%)
gen split merge : 1172.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1292.00 ns (0.3%)
LB compute : 375.55 us (94.9%)
LB move op cnt : 0
LB apply : 3.50 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.22 us (74.0%)
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 | 6.2901e+05 | 262144 | 1 | 4.168e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.845961263061795 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9203684580139347, dt = 0.0016028821994531518
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1783.00 ns (0.5%)
gen split merge : 1183.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 872.00 ns (0.2%)
LB compute : 363.26 us (94.6%)
LB move op cnt : 0
LB apply : 3.66 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.23 us (74.4%)
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 | 6.2771e+05 | 262144 | 1 | 4.176e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.817220422224704 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9219713402133879, dt = 0.0016028837476931611
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.7%)
patch tree reduce : 1433.00 ns (0.4%)
gen split merge : 461.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 802.00 ns (0.2%)
LB compute : 340.38 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.22 us (77.5%)
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 | 6.2883e+05 | 262144 | 1 | 4.169e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.84187282410251 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.923574223961081, dt = 0.001602885099997432
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1813.00 ns (0.5%)
gen split merge : 952.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 852.00 ns (0.2%)
LB compute : 380.65 us (94.9%)
LB move op cnt : 0
LB apply : 3.67 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.00 us (73.9%)
Info: cfl dt = 0.0016028862521183533 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 6.2757e+05 | 262144 | 1 | 4.177e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.814163733070913 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9251771090610784, dt = 0.0008645576055882342
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1793.00 ns (0.4%)
gen split merge : 962.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1112.00 ns (0.3%)
LB compute : 401.14 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.35 us (76.3%)
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 | 6.3120e+05 | 262144 | 1 | 4.153e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7.494154776879788 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 262.131612005 (s) [Godunov][rank=0]
Info: dump to _to_trash/ramses_kh/periodic_0008.vtk [VTK Dump][rank=0]
- took 52.77 ms, bandwidth = 739.12 MB/s
amr::Godunov: t = 0.9260416666666667, dt = 0.0016028870518811085
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.6%)
patch tree reduce : 1623.00 ns (0.4%)
gen split merge : 972.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 851.00 ns (0.2%)
LB compute : 387.44 us (95.1%)
LB move op cnt : 0
LB apply : 3.49 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.42 us (70.3%)
Info: cfl dt = 0.0016028858332930332 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 6.3348e+05 | 262144 | 1 | 4.138e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.944444867729489 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9276445537185478, dt = 0.0016028858332930332
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1984.00 ns (0.5%)
gen split merge : 932.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 952.00 ns (0.2%)
LB compute : 377.44 us (94.8%)
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.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 | 6.2877e+05 | 262144 | 1 | 4.169e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.840698594366776 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9292474395518409, dt = 0.00160288493924326
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.5%)
patch tree reduce : 1763.00 ns (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 : 422.79 us (95.5%)
LB move op cnt : 0
LB apply : 3.78 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.29 us (77.5%)
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 | 6.2515e+05 | 262144 | 1 | 4.193e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.760892699705945 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9308503244910841, dt = 0.0016028844390159286
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1733.00 ns (0.5%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 942.00 ns (0.3%)
LB compute : 352.13 us (94.4%)
LB move op cnt : 0
LB apply : 3.76 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.68 us (72.5%)
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 | 6.3072e+05 | 262144 | 1 | 4.156e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.883546317922251 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9324532089301, dt = 0.0016028842360210622
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (0.6%)
patch tree reduce : 2.16 us (0.2%)
gen split merge : 962.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.1%)
LB compute : 1010.27 us (98.0%)
LB move op cnt : 0
LB apply : 3.70 us (0.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.85 us (74.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 | 6.2782e+05 | 262144 | 1 | 4.175e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.819775903999814 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.934056093166121, dt = 0.001602884006248181
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.0%)
patch tree reduce : 2.08 us (0.3%)
gen split merge : 982.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.2%)
LB compute : 626.15 us (96.8%)
LB move op cnt : 0
LB apply : 4.07 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.05 us (73.3%)
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 | 6.1857e+05 | 262144 | 1 | 4.238e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.616174291973124 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9356589771723692, dt = 0.0016028832838967412
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1743.00 ns (0.5%)
gen split merge : 1002.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.3%)
LB compute : 363.27 us (94.7%)
LB move op cnt : 0
LB apply : 3.38 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.32 us (75.2%)
Info: cfl dt = 0.0016028816034180566 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 6.2907e+05 | 262144 | 1 | 4.167e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.847267636331873 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.937261860456266, dt = 0.0016028816034180566
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (0.1%)
patch tree reduce : 1813.00 ns (0.0%)
gen split merge : 912.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 942.00 ns (0.0%)
LB compute : 5.71 ms (99.6%)
LB move op cnt : 0
LB apply : 4.13 us (0.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.45 us (75.8%)
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 | 6.1435e+05 | 262144 | 1 | 4.267e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.523297084022776 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9388647420596841, dt = 0.001602878798752913
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1944.00 ns (0.5%)
gen split merge : 1072.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.3%)
LB compute : 344.57 us (94.4%)
LB move op cnt : 0
LB apply : 3.60 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.55 us (76.5%)
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 | 6.3188e+05 | 262144 | 1 | 4.149e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.909134021974996 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9404676208584369, dt = 0.0016028747746079446
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.4%)
patch tree reduce : 1823.00 ns (0.4%)
gen split merge : 922.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 952.00 ns (0.2%)
LB compute : 416.78 us (95.6%)
LB move op cnt : 0
LB apply : 3.64 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.83 us (72.3%)
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 | 6.2889e+05 | 262144 | 1 | 4.168e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.843197625128445 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9420704956330449, dt = 0.001602869608687129
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.20 us (1.9%)
patch tree reduce : 1713.00 ns (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 : 350.62 us (94.3%)
LB move op cnt : 0
LB apply : 4.00 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.35 us (78.0%)
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 | 6.2349e+05 | 262144 | 1 | 4.204e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.724278812566899 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9436733652417321, dt = 0.001602863451838481
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.7%)
patch tree reduce : 1744.00 ns (0.4%)
gen split merge : 941.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1002.00 ns (0.3%)
LB compute : 370.08 us (94.7%)
LB move op cnt : 0
LB apply : 3.75 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.04 us (75.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.2798e+05 | 262144 | 1 | 4.174e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.82317792774317 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9452762286935705, dt = 0.0016028564644456186
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.7%)
patch tree reduce : 1723.00 ns (0.4%)
gen split merge : 962.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1262.00 ns (0.3%)
LB compute : 389.94 us (94.8%)
LB move op cnt : 0
LB apply : 3.82 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.49 us (78.7%)
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 | 6.1822e+05 | 262144 | 1 | 4.240e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.60812293459671 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9468790851580161, dt = 0.0016028487759151408
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.29 us (2.0%)
patch tree reduce : 1724.00 ns (0.5%)
gen split merge : 981.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 861.00 ns (0.2%)
LB compute : 352.03 us (94.1%)
LB move op cnt : 0
LB apply : 4.42 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.48 us (78.0%)
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 | 6.1383e+05 | 262144 | 1 | 4.271e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.511546926708478 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9484819339339312, dt = 0.0016028404656449667
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 2.19 us (0.6%)
gen split merge : 992.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1172.00 ns (0.3%)
LB compute : 368.83 us (94.5%)
LB move op cnt : 0
LB apply : 3.99 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.07 us (72.0%)
Info: cfl dt = 0.00160283171918674 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 6.3114e+05 | 262144 | 1 | 4.153e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.892505089024962 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9500847743995762, dt = 0.00160283171918674
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1603.00 ns (0.4%)
gen split merge : 972.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 871.00 ns (0.2%)
LB compute : 372.63 us (94.8%)
LB move op cnt : 0
LB apply : 3.75 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.02 us (75.1%)
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 | 6.3245e+05 | 262144 | 1 | 4.145e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.921198748756183 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9516876061187629, dt = 0.0016028225136038806
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 9.68 us (2.5%)
patch tree reduce : 4.43 us (1.2%)
gen split merge : 2.12 us (0.6%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.3%)
LB compute : 350.75 us (92.1%)
LB move op cnt : 0
LB apply : 3.45 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.81 us (73.7%)
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 | 6.3081e+05 | 262144 | 1 | 4.156e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.884931991778258 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9532904286323668, dt = 0.00160281267202228
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1983.00 ns (0.5%)
gen split merge : 1212.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 922.00 ns (0.2%)
LB compute : 369.97 us (94.5%)
LB move op cnt : 0
LB apply : 4.16 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.46 us (75.5%)
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 | 6.2154e+05 | 262144 | 1 | 4.218e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.68090741923264 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.954893241304389, dt = 0.0016028020047380708
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 2.01 us (0.6%)
gen split merge : 1122.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 872.00 ns (0.2%)
LB compute : 340.60 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.81 us (72.7%)
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 | 6.1241e+05 | 262144 | 1 | 4.281e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.479896334055223 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9564960433091271, dt = 0.0016027903626833302
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1723.00 ns (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 : 368.68 us (94.7%)
LB move op cnt : 0
LB apply : 3.56 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.45 us (73.4%)
Info: cfl dt = 0.00160277765601455 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 6.2150e+05 | 262144 | 1 | 4.218e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.679785052339499 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9580988336718104, dt = 0.00160277765601455
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1723.00 ns (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 : 379.11 us (94.9%)
LB move op cnt : 0
LB apply : 3.83 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.35 us (75.6%)
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 | 6.0108e+05 | 262144 | 1 | 4.361e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.230277978301705 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9597016113278249, dt = 0.0016027638578812223
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (0.4%)
patch tree reduce : 1753.00 ns (0.1%)
gen split merge : 942.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 1002.00 ns (0.1%)
LB compute : 1730.44 us (98.8%)
LB move op cnt : 0
LB apply : 3.77 us (0.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.13 us (74.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 | 6.1931e+05 | 262144 | 1 | 4.233e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.631463627526326 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9613043751857062, dt = 0.001602748993975467
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.6%)
patch tree reduce : 1704.00 ns (0.4%)
gen split merge : 952.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 993.00 ns (0.2%)
LB compute : 395.91 us (95.0%)
LB move op cnt : 0
LB apply : 4.55 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.41 us (76.6%)
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.3155e+05 | 262144 | 1 | 4.151e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.900749751273732 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9629071241796817, dt = 0.0016027331236708527
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (0.2%)
patch tree reduce : 1793.00 ns (0.1%)
gen split merge : 992.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 881.00 ns (0.0%)
LB compute : 2.97 ms (99.3%)
LB move op cnt : 0
LB apply : 4.65 us (0.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.45 us (76.1%)
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 | 6.1941e+05 | 262144 | 1 | 4.232e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.633235519070379 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9645098573033526, dt = 0.0016027163275012183
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.7%)
patch tree reduce : 1914.00 ns (0.5%)
gen split merge : 982.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 862.00 ns (0.2%)
LB compute : 401.66 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.64 us (78.7%)
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 | 6.2352e+05 | 262144 | 1 | 4.204e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.72368867679035 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9661125736308538, dt = 0.001602698699299728
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1933.00 ns (0.5%)
gen split merge : 912.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 862.00 ns (0.2%)
LB compute : 363.97 us (94.7%)
LB move op cnt : 0
LB apply : 3.73 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.31 us (75.0%)
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 | 6.3141e+05 | 262144 | 1 | 4.152e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.897093973498384 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9677152723301535, dt = 0.0016026791204757996
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1753.00 ns (0.5%)
gen split merge : 1002.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1202.00 ns (0.3%)
LB compute : 351.38 us (94.2%)
LB move op cnt : 0
LB apply : 3.86 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.58 us (70.5%)
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 | 6.2576e+05 | 262144 | 1 | 4.189e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.772726606583147 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9693179514506294, dt = 0.001602652570471514
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1863.00 ns (0.5%)
gen split merge : 932.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 952.00 ns (0.3%)
LB compute : 347.29 us (94.4%)
LB move op cnt : 0
LB apply : 3.53 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.91 us (75.3%)
Info: cfl dt = 0.0016026254967032533 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 6.2994e+05 | 262144 | 1 | 4.161e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.864371667071653 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9709206040211009, dt = 0.0016026254967032533
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1734.00 ns (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 : 370.66 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.60 us (72.2%)
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 | 6.2776e+05 | 262144 | 1 | 4.176e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.81628310796075 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9725232295178041, dt = 0.0016025979697262837
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.5%)
patch tree reduce : 1793.00 ns (0.4%)
gen split merge : 952.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 871.00 ns (0.2%)
LB compute : 417.06 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.57 us (77.7%)
Info: cfl dt = 0.001602570065202679 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 6.3266e+05 | 262144 | 1 | 4.144e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.923704998332083 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9741258274875304, dt = 0.001602570065202679
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1823.00 ns (0.5%)
gen split merge : 1292.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 921.00 ns (0.2%)
LB compute : 373.29 us (94.8%)
LB move op cnt : 0
LB apply : 3.38 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.47 us (73.4%)
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.2608e+05 | 262144 | 1 | 4.187e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.778740867178943 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9757283975527331, dt = 0.0016025418471118079
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1954.00 ns (0.5%)
gen split merge : 1132.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 961.00 ns (0.2%)
LB compute : 368.60 us (94.6%)
LB move op cnt : 0
LB apply : 3.74 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.16 us (73.1%)
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.2942e+05 | 262144 | 1 | 4.165e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.851946552970825 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.977330939399845, dt = 0.0016025133773233254
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1753.00 ns (0.5%)
gen split merge : 922.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 862.00 ns (0.2%)
LB compute : 342.64 us (94.4%)
LB move op cnt : 0
LB apply : 3.90 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 22.67 us (95.3%)
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 | 6.2154e+05 | 262144 | 1 | 4.218e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.67833863068111 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9789334527771683, dt = 0.0016024847155917614
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (0.1%)
patch tree reduce : 1753.00 ns (0.0%)
gen split merge : 1031.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 942.00 ns (0.0%)
LB compute : 6.15 ms (99.7%)
LB move op cnt : 0
LB apply : 3.73 us (0.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.06 us (75.5%)
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 | 6.1654e+05 | 262144 | 1 | 4.252e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.568113377587553 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.98053593749276, dt = 0.0016024559254115042
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 2.01 us (0.5%)
gen split merge : 942.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 882.00 ns (0.2%)
LB compute : 376.32 us (94.9%)
LB move op cnt : 0
LB apply : 3.52 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.81 us (71.4%)
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 | 6.3017e+05 | 262144 | 1 | 4.160e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.867824681704391 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9821383934181716, dt = 0.001602427080396128
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1843.00 ns (0.5%)
gen split merge : 1162.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.3%)
LB compute : 339.23 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.77 us (73.7%)
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 | 5.7528e+05 | 262144 | 1 | 4.557e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12.65970856798526 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9837408204985677, dt = 0.0016023982670283995
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1783.00 ns (0.5%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 912.00 ns (0.2%)
LB compute : 354.25 us (94.5%)
LB move op cnt : 0
LB apply : 3.70 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.75 us (74.6%)
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 | 6.2767e+05 | 262144 | 1 | 4.176e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.812252432734118 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.985343218765596, dt = 0.00160236957249952
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 2.01 us (0.5%)
gen split merge : 1152.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 952.00 ns (0.3%)
LB compute : 355.17 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.80 us (77.0%)
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 | 6.2428e+05 | 262144 | 1 | 4.199e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.737305757607892 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9869455883380955, dt = 0.0016023410766754305
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.1%)
patch tree reduce : 1953.00 ns (0.3%)
gen split merge : 942.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 872.00 ns (0.1%)
LB compute : 595.51 us (96.6%)
LB move op cnt : 0
LB apply : 4.27 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.26 us (75.9%)
Info: cfl dt = 0.0016023128485766994 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 6.2310e+05 | 262144 | 1 | 4.207e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.711249870299604 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.988547929414771, dt = 0.0016023128485766994
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.4%)
patch tree reduce : 2.09 us (0.4%)
gen split merge : 1112.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 882.00 ns (0.2%)
LB compute : 448.63 us (95.5%)
LB move op cnt : 0
LB apply : 4.24 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.63 us (79.2%)
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 | 6.2252e+05 | 262144 | 1 | 4.211e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.698210187545765 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9901502422633477, dt = 0.0016022849458883286
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1893.00 ns (0.5%)
gen split merge : 1212.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1012.00 ns (0.3%)
LB compute : 348.23 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.87 us (73.2%)
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 | 6.1136e+05 | 262144 | 1 | 4.288e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.452489062573813 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.991752527209236, dt = 0.0016022574166313947
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (0.1%)
patch tree reduce : 1683.00 ns (0.0%)
gen split merge : 952.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 872.00 ns (0.0%)
LB compute : 6.19 ms (99.7%)
LB move op cnt : 0
LB apply : 4.29 us (0.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.69 us (73.6%)
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 | 6.1295e+05 | 262144 | 1 | 4.277e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.487073064419366 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9933547846258675, dt = 0.0016022303019131473
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.0%)
patch tree reduce : 2.05 us (0.4%)
gen split merge : 912.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 862.00 ns (0.1%)
LB compute : 562.42 us (96.6%)
LB move op cnt : 0
LB apply : 3.51 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.09 us (74.2%)
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 | 6.1879e+05 | 262144 | 1 | 4.236e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.61532652130603 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9949570149277807, dt = 0.0016022036273958024
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (0.1%)
patch tree reduce : 1693.00 ns (0.0%)
gen split merge : 942.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 882.00 ns (0.0%)
LB compute : 5.87 ms (99.6%)
LB move op cnt : 0
LB apply : 4.14 us (0.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.90 us (78.4%)
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 | 6.0759e+05 | 262144 | 1 | 4.314e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.36883862409498 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9965592185551765, dt = 0.0016021774064056873
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (0.4%)
patch tree reduce : 1763.00 ns (0.1%)
gen split merge : 961.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 881.00 ns (0.1%)
LB compute : 1559.12 us (98.7%)
LB move op cnt : 0
LB apply : 3.77 us (0.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.09 us (75.9%)
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 | 6.2103e+05 | 262144 | 1 | 4.221e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.664193740234714 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9981613959615822, dt = 0.001602151652148265
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (0.5%)
patch tree reduce : 2.14 us (0.2%)
gen split merge : 941.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 951.00 ns (0.1%)
LB compute : 1206.92 us (98.3%)
LB move op cnt : 0
LB apply : 3.84 us (0.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.31 us (75.2%)
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.1961e+05 | 262144 | 1 | 4.231e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.632773406792309 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 0.9997635476137304, dt = 0.0016021263749164505
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (1.9%)
patch tree reduce : 1853.00 ns (0.5%)
gen split merge : 1183.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 971.00 ns (0.2%)
LB compute : 375.64 us (94.6%)
LB move op cnt : 0
LB apply : 3.63 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.50 us (77.9%)
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 | 6.2241e+05 | 262144 | 1 | 4.212e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.694166553600459 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.001365673988647, dt = 0.0016021015684047513
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.1%)
patch tree reduce : 1773.00 ns (0.3%)
gen split merge : 1223.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.2%)
LB compute : 569.20 us (96.4%)
LB move op cnt : 0
LB apply : 3.94 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.98 us (67.2%)
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 | 6.1692e+05 | 262144 | 1 | 4.249e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.573277610464947 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0029677755570516, dt = 0.0016020772298921456
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.32 us (1.7%)
patch tree reduce : 1793.00 ns (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 : 397.57 us (94.9%)
LB move op cnt : 0
LB apply : 3.69 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.77 us (78.2%)
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 | 6.2714e+05 | 262144 | 1 | 4.180e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.797719856353416 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0045698527869438, dt = 0.0016020533576286344
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.8%)
patch tree reduce : 1904.00 ns (0.5%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 942.00 ns (0.3%)
LB compute : 350.77 us (94.4%)
LB move op cnt : 0
LB apply : 3.65 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.00 us (74.7%)
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.3138e+05 | 262144 | 1 | 4.152e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.89096629381351 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0061719061445724, dt = 0.0016020299510646888
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1783.00 ns (0.5%)
gen split merge : 922.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 952.00 ns (0.2%)
LB compute : 373.57 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.15 us (76.0%)
Info: cfl dt = 0.0016020070223729077 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 6.2207e+05 | 262144 | 1 | 4.214e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.685976382134266 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.007773936095637, dt = 0.0016020070223729077
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.6%)
patch tree reduce : 1943.00 ns (0.4%)
gen split merge : 951.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1012.00 ns (0.2%)
LB compute : 410.67 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.84 us (75.1%)
Info: cfl dt = 0.001601984585704248 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 6.1906e+05 | 262144 | 1 | 4.235e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.619442967844192 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.00937594311801, dt = 0.001601984585704248
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 2.09 us (0.5%)
gen split merge : 932.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1012.00 ns (0.3%)
LB compute : 376.14 us (94.7%)
LB move op cnt : 0
LB apply : 4.07 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.69 us (74.8%)
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 | 6.2838e+05 | 262144 | 1 | 4.172e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.824230529841945 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0109779277037143, dt = 0.0016019626348712731
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1743.00 ns (0.5%)
gen split merge : 1042.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 872.00 ns (0.2%)
LB compute : 342.51 us (90.0%)
LB move op cnt : 0
LB apply : 3.72 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.81 us (74.3%)
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 | 6.2108e+05 | 262144 | 1 | 4.221e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.663539752499414 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0125798903385856, dt = 0.0016019411466588254
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.2%)
patch tree reduce : 1753.00 ns (0.3%)
gen split merge : 971.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1042.00 ns (0.2%)
LB compute : 551.59 us (93.7%)
LB move op cnt : 0
LB apply : 3.59 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.36 us (75.3%)
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 | 6.2199e+05 | 262144 | 1 | 4.215e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.68340179011953 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0141818314852444, dt = 0.0016019200947514627
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.8%)
patch tree reduce : 1733.00 ns (0.5%)
gen split merge : 1222.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 961.00 ns (0.3%)
LB compute : 356.31 us (94.4%)
LB move op cnt : 0
LB apply : 4.08 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.47 us (70.0%)
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 | 6.3015e+05 | 262144 | 1 | 4.160e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.86263375705096 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.015783751579996, dt = 0.0016018994381453273
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 2.11 us (0.6%)
gen split merge : 932.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 871.00 ns (0.2%)
LB compute : 344.64 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.69 us (76.8%)
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.2967e+05 | 262144 | 1 | 4.163e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.851923911718682 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0173856510181412, dt = 0.0016018791254272502
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1874.00 ns (0.5%)
gen split merge : 921.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 871.00 ns (0.2%)
LB compute : 376.60 us (94.8%)
LB move op cnt : 0
LB apply : 3.75 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.41 us (76.2%)
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 | 6.3099e+05 | 262144 | 1 | 4.154e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.880818871675352 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0189875301435685, dt = 0.0016018590992361039
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1773.00 ns (0.5%)
gen split merge : 972.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 942.00 ns (0.3%)
LB compute : 344.60 us (94.3%)
LB move op cnt : 0
LB apply : 3.71 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.97 us (75.9%)
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 | 6.2937e+05 | 262144 | 1 | 4.165e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.84495916964745 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0205893892428046, dt = 0.0016018393012528621
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.8%)
patch tree reduce : 1904.00 ns (0.5%)
gen split merge : 1042.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 852.00 ns (0.2%)
LB compute : 347.43 us (88.6%)
LB move op cnt : 0
LB apply : 4.22 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.42 us (74.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 | 6.2231e+05 | 262144 | 1 | 4.212e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.689531964252701 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0221912285440575, dt = 0.001601819673451749
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.21 us (0.5%)
gen split merge : 971.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1402.00 ns (0.3%)
LB compute : 423.39 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.85 us (75.1%)
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 | 6.1841e+05 | 262144 | 1 | 4.239e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.603599053422188 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0237930482175093, dt = 0.0016018001609326407
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 2.19 us (0.5%)
gen split merge : 942.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 871.00 ns (0.2%)
LB compute : 398.42 us (94.9%)
LB move op cnt : 0
LB apply : 4.11 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.57 us (74.0%)
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 | 6.2571e+05 | 262144 | 1 | 4.190e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.763878890617903 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0253948483784419, dt = 0.0016017807324694528
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1613.00 ns (0.5%)
gen split merge : 932.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1322.00 ns (0.4%)
LB compute : 335.81 us (94.1%)
LB move op cnt : 0
LB apply : 3.44 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.16 us (74.6%)
Info: cfl dt = 0.0016017613593983177 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 6.2057e+05 | 262144 | 1 | 4.224e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.650755641317005 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0269966291109114, dt = 0.0016017613593983177
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1814.00 ns (0.5%)
gen split merge : 942.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 872.00 ns (0.2%)
LB compute : 357.82 us (94.7%)
LB move op cnt : 0
LB apply : 3.71 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.49 us (75.3%)
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 | 6.2311e+05 | 262144 | 1 | 4.207e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.706457366256409 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0285983904703098, dt = 0.00160174200502092
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.75 us (1.4%)
patch tree reduce : 1824.00 ns (0.3%)
gen split merge : 951.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 882.00 ns (0.2%)
LB compute : 551.98 us (96.2%)
LB move op cnt : 0
LB apply : 3.83 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.89 us (72.8%)
Info: cfl dt = 0.0016017226241011344 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 6.1897e+05 | 262144 | 1 | 4.235e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.615166437687884 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0302001324753307, dt = 0.0016017226241011344
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1743.00 ns (0.4%)
gen split merge : 932.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1282.00 ns (0.3%)
LB compute : 393.64 us (95.0%)
LB move op cnt : 0
LB apply : 3.61 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.71 us (77.1%)
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 | 6.2184e+05 | 262144 | 1 | 4.216e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.678152476368451 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.031801855099432, dt = 0.0016017032152609014
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.6%)
patch tree reduce : 1633.00 ns (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 : 421.52 us (95.3%)
LB move op cnt : 0
LB apply : 4.16 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.47 us (75.2%)
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 | 6.1530e+05 | 262144 | 1 | 4.260e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.53423228004587 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0334035583146928, dt = 0.0016016837457569616
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1883.00 ns (0.5%)
gen split merge : 1092.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 952.00 ns (0.2%)
LB compute : 364.73 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.02 us (73.6%)
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 | 6.1316e+05 | 262144 | 1 | 4.275e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.486836387449898 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0350052420604496, dt = 0.0016016641642398065
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.61 us (1.7%)
patch tree reduce : 2.31 us (0.5%)
gen split merge : 1152.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 902.00 ns (0.2%)
LB compute : 417.11 us (95.1%)
LB move op cnt : 0
LB apply : 3.66 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.06 us (72.5%)
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 | 6.0785e+05 | 262144 | 1 | 4.313e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.369997895957182 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0366069062246894, dt = 0.0016016444371748097
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.63 us (1.7%)
patch tree reduce : 1873.00 ns (0.4%)
gen split merge : 1302.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 861.00 ns (0.2%)
LB compute : 422.34 us (94.9%)
LB move op cnt : 0
LB apply : 4.06 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.37 us (77.2%)
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 | 6.0521e+05 | 262144 | 1 | 4.331e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.311737545605979 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0382085506618643, dt = 0.0016016245532981623
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (0.2%)
patch tree reduce : 2.01 us (0.0%)
gen split merge : 1052.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 881.00 ns (0.0%)
LB compute : 4.61 ms (99.5%)
LB move op cnt : 0
LB apply : 4.61 us (0.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.33 us (74.6%)
Info: cfl dt = 0.0016016045224889908 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 5.9377e+05 | 262144 | 1 | 4.415e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.059890936473217 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0398101752151625, dt = 0.0016016045224889908
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.7%)
patch tree reduce : 1813.00 ns (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 : 399.85 us (95.0%)
LB move op cnt : 0
LB apply : 3.92 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.83 us (74.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 | 6.0602e+05 | 262144 | 1 | 4.326e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.329224741978912 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0414117797376514, dt = 0.001601584370255912
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.22 us (1.7%)
patch tree reduce : 2.17 us (0.5%)
gen split merge : 942.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 902.00 ns (0.2%)
LB compute : 397.56 us (94.7%)
LB move op cnt : 0
LB apply : 4.02 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.44 us (76.1%)
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.0333e+05 | 262144 | 1 | 4.345e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.269802434666854 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0430133641079073, dt = 0.001601564131410151
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (0.2%)
patch tree reduce : 1963.00 ns (0.1%)
gen split merge : 1073.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 1062.00 ns (0.0%)
LB compute : 2.89 ms (99.2%)
LB move op cnt : 0
LB apply : 4.12 us (0.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.74 us (79.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 | 5.8936e+05 | 262144 | 1 | 4.448e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12.96239092681501 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0446149282393176, dt = 0.0016015438337056355
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.54 us (1.8%)
patch tree reduce : 1834.00 ns (0.4%)
gen split merge : 962.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 952.00 ns (0.2%)
LB compute : 404.80 us (94.7%)
LB move op cnt : 0
LB apply : 4.04 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.63 us (78.7%)
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 | 6.1124e+05 | 262144 | 1 | 4.289e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.44348867496656 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0462164720730232, dt = 0.0016015234974430237
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.53 us (1.8%)
patch tree reduce : 1764.00 ns (0.4%)
gen split merge : 941.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 931.00 ns (0.2%)
LB compute : 398.00 us (94.9%)
LB move op cnt : 0
LB apply : 3.90 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.47 us (77.4%)
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 | 6.1119e+05 | 262144 | 1 | 4.289e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.442238043502133 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.047817995570466, dt = 0.0016015031396178177
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.4%)
patch tree reduce : 1974.00 ns (0.4%)
gen split merge : 1072.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.2%)
LB compute : 464.38 us (95.5%)
LB move op cnt : 0
LB apply : 3.97 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.91 us (74.7%)
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 | 5.9334e+05 | 262144 | 1 | 4.418e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.04958802407369 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0494194987100838, dt = 0.0016014827748482663
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.44 us (1.6%)
patch tree reduce : 1944.00 ns (0.4%)
gen split merge : 931.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 942.00 ns (0.2%)
LB compute : 440.46 us (95.2%)
LB move op cnt : 0
LB apply : 3.89 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.39 us (73.0%)
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 | 6.0348e+05 | 262144 | 1 | 4.344e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.272239802089699 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.051020981484932, dt = 0.0016014624155770826
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.20 us (1.4%)
patch tree reduce : 2.17 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 : 477.39 us (95.5%)
LB move op cnt : 0
LB apply : 4.41 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.74 us (77.2%)
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 | 6.0612e+05 | 262144 | 1 | 4.325e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.330311971852542 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0526224439005092, dt = 0.001601442075168313
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.0%)
patch tree reduce : 1873.00 ns (0.3%)
gen split merge : 922.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 1012.00 ns (0.2%)
LB compute : 607.14 us (96.6%)
LB move op cnt : 0
LB apply : 4.34 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.69 us (78.1%)
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 | 6.0270e+05 | 262144 | 1 | 4.349e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.254958010689883 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0542238859756774, dt = 0.0016014217706937866
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1964.00 ns (0.4%)
gen split merge : 991.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 892.00 ns (0.2%)
LB compute : 416.69 us (94.9%)
LB move op cnt : 0
LB apply : 4.02 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.09 us (77.0%)
Info: cfl dt = 0.0016014015383542853 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 6.0268e+05 | 262144 | 1 | 4.350e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.254311336625575 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0558253077463713, dt = 0.0016014015383542853
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (0.1%)
patch tree reduce : 2.05 us (0.0%)
gen split merge : 932.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 892.00 ns (0.0%)
LB compute : 5.02 ms (99.6%)
LB move op cnt : 0
LB apply : 4.43 us (0.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.22 us (79.6%)
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 | 5.9979e+05 | 262144 | 1 | 4.371e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.19061088722418 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0574267092847256, dt = 0.0009066240486077515
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (0.2%)
patch tree reduce : 1954.00 ns (0.0%)
gen split merge : 942.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 1012.00 ns (0.0%)
LB compute : 4.22 ms (99.5%)
LB move op cnt : 0
LB apply : 3.81 us (0.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.59 us (79.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 | 6.2020e+05 | 262144 | 1 | 4.227e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7.721850833681486 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 297.78796382400003 (s) [Godunov][rank=0]
Info: dump to _to_trash/ramses_kh/periodic_0009.vtk [VTK Dump][rank=0]
- took 53.68 ms, bandwidth = 726.58 MB/s
amr::Godunov: t = 1.0583333333333333, dt = 0.0016013723412934553
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 2.17 us (0.6%)
gen split merge : 1042.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.3%)
LB compute : 359.24 us (94.5%)
LB move op cnt : 0
LB apply : 3.57 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.50 us (71.6%)
Info: cfl dt = 0.0016013506591763165 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 5.8523e+05 | 262144 | 1 | 4.479e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12.870112492813623 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0599347056746269, dt = 0.0016013506591763165
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance 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.29 us (1.7%)
patch tree reduce : 1793.00 ns (0.4%)
gen split merge : 1001.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1072.00 ns (0.2%)
LB compute : 472.10 us (95.2%)
LB move op cnt : 0
LB apply : 4.39 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.15 us (78.0%)
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 | 6.0597e+05 | 262144 | 1 | 4.326e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.326088144264798 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0615360563338032, dt = 0.0016013292876077753
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (0.9%)
patch tree reduce : 1734.00 ns (0.2%)
gen split merge : 931.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 871.00 ns (0.1%)
LB compute : 776.74 us (97.3%)
LB move op cnt : 0
LB apply : 4.04 us (0.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.30 us (70.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 | 6.0213e+05 | 262144 | 1 | 4.354e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.241441389084715 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.063137385621411, dt = 0.0016013088512940147
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.62 us (1.8%)
patch tree reduce : 1874.00 ns (0.4%)
gen split merge : 1062.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1353.00 ns (0.3%)
LB compute : 406.84 us (94.5%)
LB move op cnt : 0
LB apply : 4.58 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.21 us (75.4%)
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 | 6.0336e+05 | 262144 | 1 | 4.345e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.26819896635645 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.064738694472705, dt = 0.0016012894771770265
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.15 us (0.8%)
patch tree reduce : 2.22 us (0.2%)
gen split merge : 1192.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 882.00 ns (0.1%)
LB compute : 886.24 us (97.5%)
LB move op cnt : 0
LB apply : 4.62 us (0.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.12 us (79.3%)
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 | 6.0272e+05 | 262144 | 1 | 4.349e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.253973250633496 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0663399839498822, dt = 0.001601271015296715
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.47 us (1.6%)
patch tree reduce : 2.14 us (0.5%)
gen split merge : 1242.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 862.00 ns (0.2%)
LB compute : 439.11 us (94.7%)
LB move op cnt : 0
LB apply : 5.45 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.80 us (80.6%)
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 | 6.0095e+05 | 262144 | 1 | 4.362e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.214897135504494 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0679412549651788, dt = 0.0016012532244748861
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (1.7%)
patch tree reduce : 2.09 us (0.5%)
gen split merge : 911.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.2%)
LB compute : 405.39 us (94.8%)
LB move op cnt : 0
LB apply : 4.01 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.16 us (75.1%)
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 | 6.0080e+05 | 262144 | 1 | 4.363e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.211587899739891 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0695425081896537, dt = 0.0016012358783368933
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.9%)
patch tree reduce : 2.05 us (0.5%)
gen split merge : 1011.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 922.00 ns (0.2%)
LB compute : 368.14 us (94.3%)
LB move op cnt : 0
LB apply : 4.22 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.84 us (76.3%)
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.1152e+05 | 262144 | 1 | 4.287e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.447206030998577 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0711437440679905, dt = 0.0016012187761594789
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.61 us (0.1%)
patch tree reduce : 2.14 us (0.0%)
gen split merge : 952.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 882.00 ns (0.0%)
LB compute : 5.51 ms (99.6%)
LB move op cnt : 0
LB apply : 5.08 us (0.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.27 us (81.2%)
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 | 6.1182e+05 | 262144 | 1 | 4.285e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.453465120816826 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0727449628441499, dt = 0.0016012017977975628
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (0.5%)
patch tree reduce : 1743.00 ns (0.1%)
gen split merge : 922.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 942.00 ns (0.1%)
LB compute : 1280.46 us (98.5%)
LB move op cnt : 0
LB apply : 3.66 us (0.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.37 us (76.5%)
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 | 6.0726e+05 | 262144 | 1 | 4.317e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.353209505648575 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0743461646419474, dt = 0.0016011849154309223
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (0.1%)
patch tree reduce : 1703.00 ns (0.0%)
gen split merge : 1102.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 1132.00 ns (0.0%)
LB compute : 4.74 ms (99.2%)
LB move op cnt : 0
LB apply : 3.92 us (0.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.35 us (76.8%)
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 | 6.1697e+05 | 262144 | 1 | 4.249e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.566572099617515 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0759473495573784, dt = 0.0016011681721815922
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.5%)
patch tree reduce : 1723.00 ns (0.1%)
gen split merge : 1302.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 1172.00 ns (0.1%)
LB compute : 1434.36 us (98.5%)
LB move op cnt : 0
LB apply : 4.16 us (0.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.29 us (76.6%)
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 | 6.1809e+05 | 262144 | 1 | 4.241e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.591021374113291 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.07754851772956, dt = 0.0016011516145670627
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (0.2%)
patch tree reduce : 1833.00 ns (0.1%)
gen split merge : 1313.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 902.00 ns (0.0%)
LB compute : 3.58 ms (99.4%)
LB move op cnt : 0
LB apply : 3.72 us (0.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.72 us (74.7%)
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 | 6.1101e+05 | 262144 | 1 | 4.290e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.435205664094264 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0791496693441271, dt = 0.0016011350432765792
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (0.9%)
patch tree reduce : 1943.00 ns (0.3%)
gen split merge : 922.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 892.00 ns (0.1%)
LB compute : 695.77 us (97.1%)
LB move op cnt : 0
LB apply : 3.89 us (0.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.07 us (70.5%)
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 | 6.1728e+05 | 262144 | 1 | 4.247e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.572921060987868 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0807508043874037, dt = 0.0016011185806649774
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.4%)
patch tree reduce : 1794.00 ns (0.4%)
gen split merge : 1002.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 901.00 ns (0.2%)
LB compute : 447.54 us (95.7%)
LB move op cnt : 0
LB apply : 3.38 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.65 us (73.8%)
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 | 5.8954e+05 | 262144 | 1 | 4.447e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12.962746505116632 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0823519229680687, dt = 0.001601102445053882
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (0.2%)
patch tree reduce : 1964.00 ns (0.0%)
gen split merge : 932.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.0%)
LB compute : 4.04 ms (99.5%)
LB move op cnt : 0
LB apply : 3.82 us (0.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.83 us (73.3%)
Info: cfl dt = 0.0016010867187099649 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 5.9810e+05 | 262144 | 1 | 4.383e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.150976674168433 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0839530254131227, dt = 0.0016010867187099649
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.5%)
patch tree reduce : 1714.00 ns (0.4%)
gen split merge : 941.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1002.00 ns (0.2%)
LB compute : 425.45 us (95.4%)
LB move op cnt : 0
LB apply : 3.58 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.04 us (75.6%)
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 | 6.2793e+05 | 262144 | 1 | 4.175e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.806640617571613 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0855541121318326, dt = 0.0016010715072098081
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (0.1%)
patch tree reduce : 1804.00 ns (0.0%)
gen split merge : 942.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 892.00 ns (0.0%)
LB compute : 4.51 ms (99.4%)
LB move op cnt : 0
LB apply : 4.06 us (0.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.27 us (77.4%)
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 | 6.1751e+05 | 262144 | 1 | 4.245e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.577387075004927 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0871551836390425, dt = 0.0016010568575280583
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (0.5%)
patch tree reduce : 1763.00 ns (0.1%)
gen split merge : 1202.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 952.00 ns (0.1%)
LB compute : 1341.87 us (98.5%)
LB move op cnt : 0
LB apply : 3.78 us (0.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.22 us (73.3%)
Info: cfl dt = 0.0016010426990485948 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 6.1886e+05 | 262144 | 1 | 4.236e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.606950605223062 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0887562404965705, dt = 0.0016010426990485948
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (0.1%)
patch tree reduce : 2.09 us (0.0%)
gen split merge : 981.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 981.00 ns (0.0%)
LB compute : 5.43 ms (99.6%)
LB move op cnt : 0
LB apply : 3.80 us (0.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.41 us (74.7%)
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.1231e+05 | 262144 | 1 | 4.281e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.46275482566764 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0903572831956192, dt = 0.0016010289955032883
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (0.5%)
patch tree reduce : 1743.00 ns (0.1%)
gen split merge : 942.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.1%)
LB compute : 1268.63 us (98.4%)
LB move op cnt : 0
LB apply : 3.61 us (0.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.83 us (74.3%)
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 | 6.1676e+05 | 262144 | 1 | 4.250e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.560633338459937 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0919583121911225, dt = 0.0016010156983639063
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1773.00 ns (0.4%)
gen split merge : 962.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 872.00 ns (0.2%)
LB compute : 375.79 us (95.0%)
LB move op cnt : 0
LB apply : 3.38 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.62 us (72.7%)
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 | 6.2193e+05 | 262144 | 1 | 4.215e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.674118544809671 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0935593278894864, dt = 0.001601002728575394
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.2%)
patch tree reduce : 2.03 us (0.1%)
gen split merge : 971.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 961.00 ns (0.0%)
LB compute : 3.21 ms (99.3%)
LB move op cnt : 0
LB apply : 4.08 us (0.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.35 us (78.6%)
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 | 6.1405e+05 | 262144 | 1 | 4.269e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.500684781859954 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0951603306180617, dt = 0.0016009900262506428
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 2.14 us (0.6%)
gen split merge : 952.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 872.00 ns (0.2%)
LB compute : 367.08 us (94.6%)
LB move op cnt : 0
LB apply : 4.16 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.41 us (70.2%)
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 | 6.1255e+05 | 262144 | 1 | 4.280e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.467688880424662 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0967613206443123, dt = 0.0016009775358266831
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.7%)
patch tree reduce : 2.21 us (0.5%)
gen split merge : 981.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1323.00 ns (0.3%)
LB compute : 413.63 us (94.8%)
LB move op cnt : 0
LB apply : 3.97 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.02 us (78.2%)
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 | 6.0018e+05 | 262144 | 1 | 4.368e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.195529969991973 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.098362298180139, dt = 0.001600965198316177
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (1.2%)
patch tree reduce : 2.11 us (0.3%)
gen split merge : 1222.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1022.00 ns (0.1%)
LB compute : 660.57 us (96.6%)
LB move op cnt : 0
LB apply : 4.36 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.87 us (77.2%)
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 | 6.0550e+05 | 262144 | 1 | 4.329e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.312498361484318 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.0999632633784553, dt = 0.001600952941936872
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (0.1%)
patch tree reduce : 1974.00 ns (0.0%)
gen split merge : 962.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 971.00 ns (0.0%)
LB compute : 5.65 ms (99.6%)
LB move op cnt : 0
LB apply : 5.13 us (0.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.31 us (80.9%)
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 | 6.0046e+05 | 262144 | 1 | 4.366e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.201585091099282 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1015642163203923, dt = 0.0016009406994765645
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.71 us (0.1%)
patch tree reduce : 1994.00 ns (0.0%)
gen split merge : 972.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 942.00 ns (0.0%)
LB compute : 5.63 ms (99.6%)
LB move op cnt : 0
LB apply : 4.70 us (0.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.88 us (74.0%)
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 | 5.9580e+05 | 262144 | 1 | 4.400e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.098923848217895 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1031651570198688, dt = 0.0016009284342486051
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 8.01 us (0.1%)
patch tree reduce : 2.02 us (0.0%)
gen split merge : 1312.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 922.00 ns (0.0%)
LB compute : 6.08 ms (99.6%)
LB move op cnt : 0
LB apply : 5.19 us (0.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.24 us (76.9%)
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 | 5.8956e+05 | 262144 | 1 | 4.446e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12.961704157726176 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1047660854541175, dt = 0.001600916178738763
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.58 us (1.6%)
patch tree reduce : 1944.00 ns (0.4%)
gen split merge : 1042.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.2%)
LB compute : 464.14 us (95.2%)
LB move op cnt : 0
LB apply : 4.38 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.92 us (77.2%)
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 | 6.0162e+05 | 262144 | 1 | 4.357e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.226656198235172 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1063670016328562, dt = 0.001600903872758988
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.6%)
patch tree reduce : 1804.00 ns (0.4%)
gen split merge : 972.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 991.00 ns (0.2%)
LB compute : 396.19 us (94.9%)
LB move op cnt : 0
LB apply : 3.85 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.92 us (75.4%)
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 | 6.2668e+05 | 262144 | 1 | 4.183e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.777592913081085 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.107967905505615, dt = 0.0016008915245074111
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (0.1%)
patch tree reduce : 2.18 us (0.0%)
gen split merge : 982.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.0%)
LB compute : 6.12 ms (99.7%)
LB move op cnt : 0
LB apply : 3.83 us (0.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.19 us (77.4%)
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 | 5.9433e+05 | 262144 | 1 | 4.411e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.066213786862154 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1095687970301225, dt = 0.0016008790990780692
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance 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.18 us (6.7%)
patch tree reduce : 1744.00 ns (0.4%)
gen split merge : 1132.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.2%)
LB compute : 377.33 us (89.9%)
LB move op cnt : 0
LB apply : 4.06 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.21 us (76.6%)
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 | 5.1864e+05 | 262144 | 1 | 5.054e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11.402238134780138 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1111696761292005, dt = 0.0016008664881572438
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.3%)
patch tree reduce : 1764.00 ns (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 : 467.90 us (95.8%)
LB move op cnt : 0
LB apply : 3.93 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.43 us (77.7%)
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 | 6.1590e+05 | 262144 | 1 | 4.256e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.540299309661743 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1127705426173577, dt = 0.0016008535842310671
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1783.00 ns (0.4%)
gen split merge : 952.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 942.00 ns (0.2%)
LB compute : 400.65 us (95.0%)
LB move op cnt : 0
LB apply : 3.61 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.31 us (76.6%)
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 | 6.1699e+05 | 262144 | 1 | 4.249e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.564223409917288 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1143713962015889, dt = 0.0016008403058171057
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 2.21 us (0.5%)
gen split merge : 952.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 892.00 ns (0.2%)
LB compute : 399.78 us (95.1%)
LB move op cnt : 0
LB apply : 3.50 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.17 us (76.0%)
Info: cfl dt = 0.0016008265866534004 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 6.2469e+05 | 262144 | 1 | 4.196e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.733320441293296 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.115972236507406, dt = 0.0016008265866534004
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.5%)
patch tree reduce : 1713.00 ns (0.4%)
gen split merge : 992.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1203.00 ns (0.3%)
LB compute : 422.20 us (95.3%)
LB move op cnt : 0
LB apply : 3.65 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.45 us (76.4%)
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 | 6.3138e+05 | 262144 | 1 | 4.152e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.880249765856181 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1175730630940595, dt = 0.0016008122439101237
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1773.00 ns (0.5%)
gen split merge : 962.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 872.00 ns (0.2%)
LB compute : 338.38 us (94.5%)
LB move op cnt : 0
LB apply : 3.58 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.50 us (73.5%)
Info: cfl dt = 0.0016007973860130867 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 6.2685e+05 | 262144 | 1 | 4.182e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.780628599199911 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1191738753379696, dt = 0.0016007973860130867
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.7%)
patch tree reduce : 1804.00 ns (0.4%)
gen split merge : 1052.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1172.00 ns (0.3%)
LB compute : 381.55 us (94.7%)
LB move op cnt : 0
LB apply : 4.00 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.63 us (72.9%)
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 | 6.2138e+05 | 262144 | 1 | 4.219e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.660082713663202 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1207746727239827, dt = 0.0016007820727115727
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1834.00 ns (0.5%)
gen split merge : 952.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1162.00 ns (0.3%)
LB compute : 368.25 us (94.6%)
LB move op cnt : 0
LB apply : 3.69 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.00 us (73.5%)
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 | 6.2419e+05 | 262144 | 1 | 4.200e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.721799009508834 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1223754547966942, dt = 0.001600766407671341
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 2.09 us (0.6%)
gen split merge : 931.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 881.00 ns (0.2%)
LB compute : 347.08 us (94.4%)
LB move op cnt : 0
LB apply : 3.85 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.71 us (77.9%)
Info: cfl dt = 0.0016007504875589203 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 6.2093e+05 | 262144 | 1 | 4.222e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.65010642131553 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1239762212043656, dt = 0.0016007504875589203
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1903.00 ns (0.5%)
gen split merge : 972.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 952.00 ns (0.3%)
LB compute : 337.78 us (94.5%)
LB move op cnt : 0
LB apply : 3.21 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.90 us (73.6%)
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 | 6.2403e+05 | 262144 | 1 | 4.201e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.71801519924797 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1255769716919244, dt = 0.0016007344008288934
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (0.3%)
patch tree reduce : 2.06 us (0.1%)
gen split merge : 972.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 892.00 ns (0.0%)
LB compute : 2.20 ms (99.0%)
LB move op cnt : 0
LB apply : 4.18 us (0.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.57 us (74.2%)
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 | 6.2784e+05 | 262144 | 1 | 4.175e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.801733952643131 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1271777060927533, dt = 0.0016007182298412332
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.7%)
patch tree reduce : 1793.00 ns (0.5%)
gen split merge : 952.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1232.00 ns (0.3%)
LB compute : 377.44 us (94.8%)
LB move op cnt : 0
LB apply : 3.80 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.61 us (75.9%)
Info: cfl dt = 0.0016007019530294797 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 6.2708e+05 | 262144 | 1 | 4.180e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.784873420246631 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1287784243225945, dt = 0.0016007019530294797
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.1%)
patch tree reduce : 1783.00 ns (0.3%)
gen split merge : 1002.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.2%)
LB compute : 578.84 us (96.6%)
LB move op cnt : 0
LB apply : 4.01 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.22 us (77.5%)
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 | 5.9859e+05 | 262144 | 1 | 4.379e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.158427902268162 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.130379126275624, dt = 0.0016006855249584666
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.5%)
patch tree reduce : 1864.00 ns (0.4%)
gen split merge : 982.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 902.00 ns (0.2%)
LB compute : 462.26 us (95.6%)
LB move op cnt : 0
LB apply : 3.79 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.94 us (75.0%)
Info: cfl dt = 0.001600668900622301 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 6.1697e+05 | 262144 | 1 | 4.249e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.562364053401305 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1319798118005824, dt = 0.001600668900622301
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.1%)
patch tree reduce : 1823.00 ns (0.3%)
gen split merge : 952.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 882.00 ns (0.2%)
LB compute : 532.96 us (96.4%)
LB move op cnt : 0
LB apply : 3.72 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.12 us (72.0%)
Info: cfl dt = 0.0016006520491302564 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 6.1920e+05 | 262144 | 1 | 4.234e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.611244788242733 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1335804807012047, dt = 0.0016006520491302564
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.27 us (0.2%)
patch tree reduce : 1893.00 ns (0.0%)
gen split merge : 1273.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 871.00 ns (0.0%)
LB compute : 4.35 ms (99.5%)
LB move op cnt : 0
LB apply : 4.32 us (0.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.94 us (75.9%)
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 | 6.1796e+05 | 262144 | 1 | 4.242e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.583664126695638 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.135181132750335, dt = 0.001600634958192797
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.1%)
patch tree reduce : 1733.00 ns (0.0%)
gen split merge : 922.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 881.00 ns (0.0%)
LB compute : 6.45 ms (99.7%)
LB move op cnt : 0
LB apply : 4.03 us (0.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.35 us (77.2%)
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.1523e+05 | 262144 | 1 | 4.261e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.52350019670194 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1367817677085277, dt = 0.0016006176271223605
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (0.5%)
patch tree reduce : 1733.00 ns (0.1%)
gen split merge : 962.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 872.00 ns (0.1%)
LB compute : 1263.06 us (98.4%)
LB move op cnt : 0
LB apply : 3.82 us (0.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.15 us (76.0%)
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 | 6.2249e+05 | 262144 | 1 | 4.211e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.682972139650866 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.13838238533565, dt = 0.0016006000460755073
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (0.5%)
patch tree reduce : 1623.00 ns (0.1%)
gen split merge : 922.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 882.00 ns (0.1%)
LB compute : 1329.73 us (98.5%)
LB move op cnt : 0
LB apply : 3.76 us (0.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.47 us (73.8%)
Info: cfl dt = 0.001600582206816589 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 6.2300e+05 | 262144 | 1 | 4.208e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.694158385973656 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1399829853817256, dt = 0.001600582206816589
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1623.00 ns (0.3%)
gen split merge : 952.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1182.00 ns (0.2%)
LB compute : 532.66 us (96.3%)
LB move op cnt : 0
LB apply : 3.87 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.09 us (76.1%)
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 | 6.2867e+05 | 262144 | 1 | 4.170e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.81846847979298 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1415835675885422, dt = 0.0016005497482172075
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.0%)
patch tree reduce : 2.05 us (0.3%)
gen split merge : 932.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 902.00 ns (0.1%)
LB compute : 659.37 us (96.9%)
LB move op cnt : 0
LB apply : 3.96 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 20.59 us (94.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 | 6.2704e+05 | 262144 | 1 | 4.181e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.782453999288936 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1431841173367594, dt = 0.0016005163493953514
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.7%)
patch tree reduce : 1843.00 ns (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 : 394.57 us (94.7%)
LB move op cnt : 0
LB apply : 4.00 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.94 us (81.9%)
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 | 6.1688e+05 | 262144 | 1 | 4.250e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.558849247061772 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1447846336861547, dt = 0.0016004826446857708
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.82 us (1.7%)
patch tree reduce : 1834.00 ns (0.4%)
gen split merge : 952.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.2%)
LB compute : 431.63 us (95.1%)
LB move op cnt : 0
LB apply : 3.91 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.17 us (75.1%)
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 | 6.2067e+05 | 262144 | 1 | 4.224e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.64190157249392 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1463851163308405, dt = 0.0016004488192530226
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1814.00 ns (0.4%)
gen split merge : 941.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.2%)
LB compute : 400.50 us (95.2%)
LB move op cnt : 0
LB apply : 3.81 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.21 us (73.4%)
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 | 6.2234e+05 | 262144 | 1 | 4.212e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.678393745862333 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1479855651500934, dt = 0.0016004150413319652
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.9%)
patch tree reduce : 1953.00 ns (0.5%)
gen split merge : 1263.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 882.00 ns (0.2%)
LB compute : 385.12 us (94.4%)
LB move op cnt : 0
LB apply : 4.02 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.01 us (75.6%)
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 | 6.1051e+05 | 262144 | 1 | 4.294e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.41797039029974 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1495859801914254, dt = 0.001600381569101762
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance 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.14 us (1.7%)
patch tree reduce : 1723.00 ns (0.4%)
gen split merge : 1042.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1012.00 ns (0.2%)
LB compute : 462.79 us (95.0%)
LB move op cnt : 0
LB apply : 4.37 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.57 us (73.9%)
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.0628e+05 | 262144 | 1 | 4.324e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.324854691640818 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1511863617605271, dt = 0.0016003483134379806
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (1.7%)
patch tree reduce : 1863.00 ns (0.5%)
gen split merge : 942.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 871.00 ns (0.2%)
LB compute : 386.82 us (94.7%)
LB move op cnt : 0
LB apply : 4.51 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.99 us (77.1%)
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.1355e+05 | 262144 | 1 | 4.273e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.48435635597048 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.152786710073965, dt = 0.0016003151475225102
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.69 us (2.0%)
patch tree reduce : 1884.00 ns (0.5%)
gen split merge : 932.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 952.00 ns (0.2%)
LB compute : 364.39 us (94.2%)
LB move op cnt : 0
LB apply : 3.70 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.17 us (76.5%)
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 | 6.1063e+05 | 262144 | 1 | 4.293e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.419771815633524 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1543870252214876, dt = 0.001600281989842904
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.82 us (0.2%)
patch tree reduce : 2.15 us (0.1%)
gen split merge : 1202.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 902.00 ns (0.0%)
LB compute : 3.63 ms (99.3%)
LB move op cnt : 0
LB apply : 4.81 us (0.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.97 us (80.4%)
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 | 6.0009e+05 | 262144 | 1 | 4.368e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.187817349898241 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1559873072113305, dt = 0.0016002488008476199
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.75 us (2.1%)
patch tree reduce : 2.15 us (0.6%)
gen split merge : 951.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 902.00 ns (0.2%)
LB compute : 350.46 us (94.0%)
LB move op cnt : 0
LB apply : 4.05 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.31 us (74.7%)
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 | 6.2938e+05 | 262144 | 1 | 4.165e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.831359624801818 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.157587556012178, dt = 0.001600215600303729
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.6%)
patch tree reduce : 2.07 us (0.5%)
gen split merge : 952.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.2%)
LB compute : 405.09 us (93.6%)
LB move op cnt : 0
LB apply : 9.40 us (2.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.23 us (75.1%)
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 | 6.1483e+05 | 262144 | 1 | 4.264e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.511278891143046 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1591877716124817, dt = 0.00160018243425895
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1744.00 ns (0.4%)
gen split merge : 941.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 891.00 ns (0.2%)
LB compute : 368.83 us (94.7%)
LB move op cnt : 0
LB apply : 3.90 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.22 us (75.4%)
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 | 6.3124e+05 | 262144 | 1 | 4.153e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.871568360162094 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1607879540467405, dt = 0.0016001493552820093
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.5%)
patch tree reduce : 1924.00 ns (0.4%)
gen split merge : 941.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 871.00 ns (0.2%)
LB compute : 392.55 us (91.3%)
LB move op cnt : 0
LB apply : 4.12 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.44 us (71.9%)
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 | 6.2544e+05 | 262144 | 1 | 4.191e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.743766179946556 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1623881034020225, dt = 0.0016001164032433568
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.6%)
patch tree reduce : 1864.00 ns (0.4%)
gen split merge : 942.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.2%)
LB compute : 400.90 us (95.1%)
LB move op cnt : 0
LB apply : 3.53 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.88 us (74.2%)
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 | 6.1796e+05 | 262144 | 1 | 4.242e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.579116249351692 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1639882198052658, dt = 0.0016000836627396058
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.6%)
patch tree reduce : 1884.00 ns (0.4%)
gen split merge : 971.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 872.00 ns (0.2%)
LB compute : 402.20 us (95.1%)
LB move op cnt : 0
LB apply : 3.92 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.34 us (74.0%)
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 | 6.0378e+05 | 262144 | 1 | 4.342e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.267244076065102 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1655883034680055, dt = 0.0016000510883107783
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (0.4%)
patch tree reduce : 1774.00 ns (0.1%)
gen split merge : 952.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.1%)
LB compute : 1628.51 us (98.7%)
LB move op cnt : 0
LB apply : 3.79 us (0.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.64 us (74.4%)
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 | 6.1344e+05 | 262144 | 1 | 4.273e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.479412483367387 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1671883545563162, dt = 0.0016000186370974
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (0.3%)
patch tree reduce : 1653.00 ns (0.1%)
gen split merge : 961.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 922.00 ns (0.0%)
LB compute : 2.25 ms (99.1%)
LB move op cnt : 0
LB apply : 4.11 us (0.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.55 us (78.3%)
Info: cfl dt = 0.0015999862657854705 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 5.1118e+05 | 262144 | 1 | 5.128e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11.23220181544634 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1687883731934137, dt = 0.0015999862657854705
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (0.8%)
patch tree reduce : 1784.00 ns (0.2%)
gen split merge : 942.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 952.00 ns (0.1%)
LB compute : 917.28 us (97.7%)
LB move op cnt : 0
LB apply : 3.90 us (0.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.11 us (70.5%)
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 | 5.4894e+05 | 262144 | 1 | 4.775e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12.061606635516352 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.170388359459199, dt = 0.0015999539474115432
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (0.6%)
patch tree reduce : 1763.00 ns (0.2%)
gen split merge : 952.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 912.00 ns (0.1%)
LB compute : 1048.34 us (98.1%)
LB move op cnt : 0
LB apply : 3.63 us (0.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.77 us (74.1%)
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 | 6.1570e+05 | 262144 | 1 | 4.258e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.528275945599814 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1719883134066107, dt = 0.0015999216833931728
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.7%)
patch tree reduce : 1873.00 ns (0.4%)
gen split merge : 952.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 952.00 ns (0.2%)
LB compute : 396.84 us (94.8%)
LB move op cnt : 0
LB apply : 4.07 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.92 us (73.2%)
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.0645e+05 | 262144 | 1 | 4.323e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.32456634247957 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1735882350900038, dt = 0.0015998895072686999
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (0.2%)
patch tree reduce : 1824.00 ns (0.1%)
gen split merge : 962.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.0%)
LB compute : 3.54 ms (99.4%)
LB move op cnt : 0
LB apply : 4.33 us (0.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.45 us (77.8%)
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.1707e+05 | 262144 | 1 | 4.248e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.557733875061496 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1751881245972724, dt = 0.0015998574807514563
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (0.3%)
patch tree reduce : 1743.00 ns (0.1%)
gen split merge : 942.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 1122.00 ns (0.1%)
LB compute : 2.06 ms (99.0%)
LB move op cnt : 0
LB apply : 3.93 us (0.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.16 us (76.1%)
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 | 6.2055e+05 | 262144 | 1 | 4.224e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.633921414313479 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1767879820780238, dt = 0.0015998256864949204
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 2.03 us (0.5%)
gen split merge : 952.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 872.00 ns (0.2%)
LB compute : 398.86 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.02 us (74.9%)
Info: cfl dt = 0.001599794216233286 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 6.3017e+05 | 262144 | 1 | 4.160e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.844972018706917 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1783878077645187, dt = 0.001599794216233286
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (0.8%)
patch tree reduce : 2.05 us (0.2%)
gen split merge : 942.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 1303.00 ns (0.1%)
LB compute : 899.15 us (97.6%)
LB move op cnt : 0
LB apply : 4.02 us (0.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.29 us (77.4%)
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 | 6.2179e+05 | 262144 | 1 | 4.216e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.660645033507892 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.179987601980752, dt = 0.0015997631085797781
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.0%)
patch tree reduce : 1733.00 ns (0.2%)
gen split merge : 1072.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 952.00 ns (0.1%)
LB compute : 676.84 us (97.0%)
LB move op cnt : 0
LB apply : 3.95 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.25 us (73.3%)
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 | 6.2215e+05 | 262144 | 1 | 4.214e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.668292455457259 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1815873650893318, dt = 0.0015997324037384734
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 2.02 us (0.5%)
gen split merge : 941.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 871.00 ns (0.2%)
LB compute : 410.72 us (95.2%)
LB move op cnt : 0
LB apply : 3.57 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.73 us (72.8%)
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 | 6.2453e+05 | 262144 | 1 | 4.197e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.720297320020359 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1831870974930703, dt = 0.0015997021740094025
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1794.00 ns (0.4%)
gen split merge : 1222.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 892.00 ns (0.2%)
LB compute : 386.25 us (94.9%)
LB move op cnt : 0
LB apply : 3.98 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.14 us (76.7%)
Info: cfl dt = 0.0015996724860062666 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 6.2973e+05 | 262144 | 1 | 4.163e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.834233476459383 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1847867996670798, dt = 0.0015996724860062666
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1794.00 ns (0.5%)
gen split merge : 942.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 871.00 ns (0.2%)
LB compute : 375.05 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.53 us (78.9%)
Info: cfl dt = 0.0015996433726192607 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 6.2430e+05 | 262144 | 1 | 4.199e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.714775287536048 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1863864721530861, dt = 0.0015996433726192607
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (0.1%)
patch tree reduce : 1814.00 ns (0.0%)
gen split merge : 972.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 882.00 ns (0.0%)
LB compute : 6.15 ms (99.6%)
LB move op cnt : 0
LB apply : 4.49 us (0.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.90 us (78.6%)
Info: cfl dt = 0.0015996148541566107 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 6.1987e+05 | 262144 | 1 | 4.229e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.61711618736017 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1879861155257054, dt = 0.0015996148541566107
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (0.1%)
patch tree reduce : 2.06 us (0.0%)
gen split merge : 962.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 941.00 ns (0.0%)
LB compute : 5.98 ms (99.6%)
LB move op cnt : 0
LB apply : 3.81 us (0.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.78 us (77.9%)
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 | 6.1669e+05 | 262144 | 1 | 4.251e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.54708002029154 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.189585730379862, dt = 0.0010392696201380058
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1843.00 ns (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 : 407.08 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.01 us (75.4%)
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 | 6.2884e+05 | 262144 | 1 | 4.169e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 8.974873765221497 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 333.908157324 (s) [Godunov][rank=0]
Info: dump to _to_trash/ramses_kh/periodic_0010.vtk [VTK Dump][rank=0]
- took 52.56 ms, bandwidth = 741.99 MB/s
amr::Godunov: t = 1.190625, dt = 0.001599572053981774
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 2.08 us (0.6%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 961.00 ns (0.3%)
LB compute : 355.89 us (94.5%)
LB move op cnt : 0
LB apply : 3.62 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.42 us (69.1%)
Info: cfl dt = 0.001599542976409378 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 6.3311e+05 | 262144 | 1 | 4.141e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.907449305104537 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.192224572053982, dt = 0.001599542976409378
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (0.4%)
patch tree reduce : 2.07 us (0.1%)
gen split merge : 962.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 861.00 ns (0.0%)
LB compute : 1793.66 us (98.9%)
LB move op cnt : 0
LB apply : 3.75 us (0.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.20 us (75.8%)
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 | 6.2319e+05 | 262144 | 1 | 4.207e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.68913232047497 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1938241150303912, dt = 0.0015995144130284472
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.7%)
patch tree reduce : 2.07 us (0.5%)
gen split merge : 1273.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 952.00 ns (0.2%)
LB compute : 378.35 us (94.7%)
LB move op cnt : 0
LB apply : 3.78 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.98 us (68.3%)
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.1856e+05 | 262144 | 1 | 4.238e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.58723377204204 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1954236294434197, dt = 0.0015994870033209168
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1824.00 ns (0.4%)
gen split merge : 941.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 852.00 ns (0.2%)
LB compute : 399.61 us (95.0%)
LB move op cnt : 0
LB apply : 3.95 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.45 us (77.0%)
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 | 6.1504e+05 | 262144 | 1 | 4.262e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.509708145620154 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.1970231164467406, dt = 0.001599460905654336
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.24 us (0.7%)
patch tree reduce : 2.07 us (0.2%)
gen split merge : 972.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 1062.00 ns (0.1%)
LB compute : 973.16 us (97.8%)
LB move op cnt : 0
LB apply : 3.87 us (0.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.45 us (77.6%)
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 | 6.1447e+05 | 262144 | 1 | 4.266e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.49706153817707 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.198622577352395, dt = 0.0015994360475107025
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (0.7%)
patch tree reduce : 1723.00 ns (0.2%)
gen split merge : 932.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 862.00 ns (0.1%)
LB compute : 941.87 us (97.9%)
LB move op cnt : 0
LB apply : 3.94 us (0.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.87 us (73.3%)
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 | 6.1389e+05 | 262144 | 1 | 4.270e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.483932423923875 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2002220133999058, dt = 0.0015994122114172272
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.3%)
patch tree reduce : 2.11 us (0.4%)
gen split merge : 952.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 952.00 ns (0.2%)
LB compute : 498.57 us (96.0%)
LB move op cnt : 0
LB apply : 3.58 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.06 us (74.6%)
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 | 6.1562e+05 | 262144 | 1 | 4.258e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.521766495460973 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2018214256113229, dt = 0.0015993891211316428
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.39 us (1.7%)
patch tree reduce : 2.15 us (0.5%)
gen split merge : 962.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 861.00 ns (0.2%)
LB compute : 404.79 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.48 us (77.1%)
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 | 6.1113e+05 | 262144 | 1 | 4.289e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.423099619606116 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2034208147324545, dt = 0.001599366508357258
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1834.00 ns (0.5%)
gen split merge : 942.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.3%)
LB compute : 352.69 us (94.3%)
LB move op cnt : 0
LB apply : 4.21 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.79 us (73.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 | 6.0806e+05 | 262144 | 1 | 4.311e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.355317137681558 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.205020181240812, dt = 0.0015993441529088999
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1854.00 ns (0.4%)
gen split merge : 1062.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.2%)
LB compute : 407.10 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.42 us (78.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 | 6.2542e+05 | 262144 | 1 | 4.191e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.736529601149117 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2066195253937209, dt = 0.0015993218986642254
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (0.8%)
patch tree reduce : 1873.00 ns (0.2%)
gen split merge : 1152.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 871.00 ns (0.1%)
LB compute : 795.84 us (95.5%)
LB move op cnt : 0
LB apply : 4.06 us (0.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.38 us (77.1%)
Info: cfl dt = 0.0015992996515116927 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 6.2093e+05 | 262144 | 1 | 4.222e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.637789985522254 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2082188472923852, dt = 0.0015992996515116927
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 2.01 us (0.4%)
gen split merge : 962.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 922.00 ns (0.2%)
LB compute : 427.25 us (95.2%)
LB move op cnt : 0
LB apply : 3.88 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.19 us (76.8%)
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 | 6.2332e+05 | 262144 | 1 | 4.206e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.690045891157993 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2098181469438969, dt = 0.0015992773674572266
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 2.20 us (0.5%)
gen split merge : 942.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 862.00 ns (0.2%)
LB compute : 404.25 us (94.9%)
LB move op cnt : 0
LB apply : 4.20 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.44 us (77.8%)
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 | 6.3018e+05 | 262144 | 1 | 4.160e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.840437610368806 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.211417424311354, dt = 0.0015992550377933368
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 2.15 us (0.5%)
gen split merge : 1192.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.2%)
LB compute : 371.76 us (94.5%)
LB move op cnt : 0
LB apply : 4.30 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.81 us (74.3%)
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 | 6.2476e+05 | 262144 | 1 | 4.196e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.721339461189157 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2130166793491473, dt = 0.0015992326755404755
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1874.00 ns (0.5%)
gen split merge : 1052.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1223.00 ns (0.3%)
LB compute : 376.64 us (94.7%)
LB move op cnt : 0
LB apply : 3.68 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.10 us (76.2%)
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.2611e+05 | 262144 | 1 | 4.187e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.750680112155136 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2146159120246878, dt = 0.0015992103045261129
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.8%)
patch tree reduce : 2.16 us (0.3%)
gen split merge : 972.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 952.00 ns (0.1%)
LB compute : 830.08 us (97.6%)
LB move op cnt : 0
LB apply : 3.98 us (0.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.17 us (76.9%)
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 | 6.1222e+05 | 262144 | 1 | 4.282e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.445447610906674 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.216215122329214, dt = 0.0015991879518192573
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (0.8%)
patch tree reduce : 1573.00 ns (0.2%)
gen split merge : 1172.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 952.00 ns (0.1%)
LB compute : 727.13 us (97.3%)
LB move op cnt : 0
LB apply : 3.87 us (0.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.87 us (74.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 | 6.2473e+05 | 262144 | 1 | 4.196e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.719924602068382 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2178143102810333, dt = 0.0015991656512828693
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1783.00 ns (0.5%)
gen split merge : 941.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 881.00 ns (0.2%)
LB compute : 348.73 us (94.5%)
LB move op cnt : 0
LB apply : 3.36 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.31 us (70.6%)
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 | 6.2694e+05 | 262144 | 1 | 4.181e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.768285041196338 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.219413475932316, dt = 0.0015991434429386557
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (0.7%)
patch tree reduce : 2.06 us (0.2%)
gen split merge : 952.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 993.00 ns (0.1%)
LB compute : 968.86 us (97.8%)
LB move op cnt : 0
LB apply : 4.12 us (0.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.30 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 | 6.2419e+05 | 262144 | 1 | 4.200e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.707741815653083 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2210126193752548, dt = 0.001599121337115784
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.6%)
patch tree reduce : 1713.00 ns (0.4%)
gen split merge : 961.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1152.00 ns (0.3%)
LB compute : 402.70 us (95.1%)
LB move op cnt : 0
LB apply : 3.96 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.52 us (70.7%)
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 | 6.3178e+05 | 262144 | 1 | 4.149e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.87422513465531 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2226117407123707, dt = 0.0015990993617038271
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1783.00 ns (0.5%)
gen split merge : 1152.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 871.00 ns (0.2%)
LB compute : 351.20 us (94.4%)
LB move op cnt : 0
LB apply : 3.53 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.47 us (75.2%)
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 | 6.2779e+05 | 262144 | 1 | 4.176e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.786375878265334 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2242108400740745, dt = 0.0015990775158565623
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.8%)
patch tree reduce : 2.10 us (0.6%)
gen split merge : 942.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 882.00 ns (0.2%)
LB compute : 350.30 us (94.4%)
LB move op cnt : 0
LB apply : 3.59 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.77 us (73.7%)
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 | 6.3296e+05 | 262144 | 1 | 4.142e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.899866570945383 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.225809917589931, dt = 0.0015990557522736737
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1863.00 ns (0.5%)
gen split merge : 971.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 911.00 ns (0.2%)
LB compute : 373.86 us (94.7%)
LB move op cnt : 0
LB apply : 3.79 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.94 us (75.0%)
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 | 6.2948e+05 | 262144 | 1 | 4.164e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.823175657370072 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2274089733422047, dt = 0.0015990340342629749
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.6%)
patch tree reduce : 1873.00 ns (0.4%)
gen split merge : 962.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1283.00 ns (0.3%)
LB compute : 412.38 us (95.1%)
LB move op cnt : 0
LB apply : 3.74 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.52 us (77.8%)
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.3078e+05 | 262144 | 1 | 4.156e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.8514841888368 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2290080073764675, dt = 0.0015990123389194833
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.1%)
patch tree reduce : 1643.00 ns (0.3%)
gen split merge : 942.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 892.00 ns (0.2%)
LB compute : 529.82 us (96.3%)
LB move op cnt : 0
LB apply : 4.18 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.85 us (74.3%)
Info: cfl dt = 0.0015989906679599595 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 6.2532e+05 | 262144 | 1 | 4.192e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.73135330318637 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.230607019715387, dt = 0.0015989906679599595
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.9%)
patch tree reduce : 1914.00 ns (0.5%)
gen split merge : 942.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.3%)
LB compute : 344.35 us (94.4%)
LB move op cnt : 0
LB apply : 3.48 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.71 us (72.3%)
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 | 6.3022e+05 | 262144 | 1 | 4.160e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.838831002321948 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.232206010383347, dt = 0.0015989690288897274
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (0.7%)
patch tree reduce : 1783.00 ns (0.2%)
gen split merge : 942.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 912.00 ns (0.1%)
LB compute : 968.58 us (98.0%)
LB move op cnt : 0
LB apply : 3.90 us (0.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.90 us (74.9%)
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 | 6.2359e+05 | 262144 | 1 | 4.204e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.693046374903227 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2338049794122368, dt = 0.0015989474208449681
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1793.00 ns (0.5%)
gen split merge : 942.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 952.00 ns (0.2%)
LB compute : 371.66 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.25 us (77.3%)
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 | 6.3229e+05 | 262144 | 1 | 4.146e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.884022311824692 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2354039268330816, dt = 0.0015989258287340247
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1904.00 ns (0.5%)
gen split merge : 1172.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 951.00 ns (0.3%)
LB compute : 358.89 us (94.5%)
LB move op cnt : 0
LB apply : 3.51 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.40 us (70.8%)
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 | 6.2840e+05 | 262144 | 1 | 4.172e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.798434634063023 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2370028526618158, dt = 0.0015989042250975506
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (0.7%)
patch tree reduce : 1723.00 ns (0.2%)
gen split merge : 952.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 862.00 ns (0.1%)
LB compute : 934.24 us (97.8%)
LB move op cnt : 0
LB apply : 3.75 us (0.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.43 us (71.9%)
Info: cfl dt = 0.0015988825752216026 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 6.2679e+05 | 262144 | 1 | 4.182e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.76272936031675 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2386017568869132, dt = 0.0015988825752216026
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.3%)
patch tree reduce : 1723.00 ns (0.3%)
gen split merge : 1323.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1002.00 ns (0.2%)
LB compute : 526.48 us (96.2%)
LB move op cnt : 0
LB apply : 3.70 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.35 us (75.1%)
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.2302e+05 | 262144 | 1 | 4.208e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.679902606498912 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2402006394621348, dt = 0.0015988608431945373
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1743.00 ns (0.5%)
gen split merge : 972.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 862.00 ns (0.2%)
LB compute : 340.48 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.27 us (73.3%)
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.1245e+05 | 262144 | 1 | 4.280e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.447515101864854 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2417995003053293, dt = 0.0015988389833441305
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.5%)
patch tree reduce : 2.18 us (0.5%)
gen split merge : 942.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.2%)
LB compute : 449.00 us (95.4%)
LB move op cnt : 0
LB apply : 4.18 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.98 us (75.6%)
Info: cfl dt = 0.0015988169371420414 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 6.2988e+05 | 262144 | 1 | 4.162e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.830079531059335 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2433983392886734, dt = 0.0015988169371420414
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 2.08 us (0.5%)
gen split merge : 942.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 862.00 ns (0.2%)
LB compute : 360.17 us (94.5%)
LB move op cnt : 0
LB apply : 4.12 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.71 us (74.6%)
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 | 6.3129e+05 | 262144 | 1 | 4.153e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.860873304157087 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2449971562258155, dt = 0.0015987946898867811
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1854.00 ns (0.5%)
gen split merge : 1002.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 891.00 ns (0.2%)
LB compute : 345.57 us (94.3%)
LB move op cnt : 0
LB apply : 3.80 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.21 us (76.0%)
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.2834e+05 | 262144 | 1 | 4.172e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.795899060639297 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2465959509157023, dt = 0.001598772230663934
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1894.00 ns (0.5%)
gen split merge : 951.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.3%)
LB compute : 353.24 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.58 us (71.4%)
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 | 6.1940e+05 | 262144 | 1 | 4.232e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.599315381847488 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2481947231463661, dt = 0.001598749545282541
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1934.00 ns (0.5%)
gen split merge : 1162.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1133.00 ns (0.3%)
LB compute : 356.38 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.71 us (71.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 | 6.3088e+05 | 262144 | 1 | 4.155e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.851368825885412 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2497934726916486, dt = 0.0015987266156288259
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1843.00 ns (0.5%)
gen split merge : 962.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 952.00 ns (0.3%)
LB compute : 357.58 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.02 us (76.0%)
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.3130e+05 | 262144 | 1 | 4.152e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.860228684147218 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2513921993072774, dt = 0.0015987034725988265
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (0.7%)
patch tree reduce : 2.22 us (0.2%)
gen split merge : 952.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.1%)
LB compute : 897.85 us (97.7%)
LB move op cnt : 0
LB apply : 3.54 us (0.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.02 us (74.2%)
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 | 6.3152e+05 | 262144 | 1 | 4.151e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.864922358055567 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2529909027798762, dt = 0.0015986802765475608
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (0.2%)
patch tree reduce : 2.07 us (0.1%)
gen split merge : 1252.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.0%)
LB compute : 3.41 ms (99.4%)
LB move op cnt : 0
LB apply : 3.88 us (0.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.34 us (76.7%)
Info: cfl dt = 0.0015986571101614666 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 5.7947e+05 | 262144 | 1 | 4.524e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12.721947362469605 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2545895830564238, dt = 0.0015986571101614666
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (0.1%)
patch tree reduce : 1933.00 ns (0.0%)
gen split merge : 1002.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 1393.00 ns (0.0%)
LB compute : 6.20 ms (99.7%)
LB move op cnt : 0
LB apply : 3.95 us (0.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.77 us (71.9%)
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 | 6.0651e+05 | 262144 | 1 | 4.322e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.31545498987866 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2561882401665851, dt = 0.0015986339484398684
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.6%)
patch tree reduce : 1853.00 ns (0.4%)
gen split merge : 1022.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 882.00 ns (0.2%)
LB compute : 405.52 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.08 us (70.7%)
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 | 6.1959e+05 | 262144 | 1 | 4.231e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.602477558356373 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.257786874115025, dt = 0.0015986107341049124
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (0.6%)
patch tree reduce : 1984.00 ns (0.2%)
gen split merge : 992.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 1212.00 ns (0.1%)
LB compute : 1189.61 us (98.2%)
LB move op cnt : 0
LB apply : 4.21 us (0.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.77 us (74.0%)
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 | 6.1623e+05 | 262144 | 1 | 4.254e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.528381730641089 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.25938548484913, dt = 0.0015985874210525212
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.5%)
patch tree reduce : 1803.00 ns (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 : 425.80 us (95.2%)
LB move op cnt : 0
LB apply : 4.56 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.98 us (75.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 | 6.1129e+05 | 262144 | 1 | 4.288e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.419779280672746 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2609840722701824, dt = 0.0015985639886740915
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.6%)
patch tree reduce : 1884.00 ns (0.4%)
gen split merge : 931.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 892.00 ns (0.2%)
LB compute : 403.22 us (95.1%)
LB move op cnt : 0
LB apply : 3.73 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.03 us (75.1%)
Info: cfl dt = 0.0015985403926732495 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 6.1773e+05 | 262144 | 1 | 4.244e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.560967011146424 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2625826362588566, dt = 0.0015985403926732495
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.2%)
patch tree reduce : 2.05 us (0.4%)
gen split merge : 1242.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 952.00 ns (0.2%)
LB compute : 547.06 us (96.2%)
LB move op cnt : 0
LB apply : 3.77 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.83 us (75.0%)
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 | 4.8050e+05 | 262144 | 1 | 5.456e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10.548164490019468 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2641811766515298, dt = 0.0015985165963730862
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (0.2%)
patch tree reduce : 2.01 us (0.1%)
gen split merge : 942.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 942.00 ns (0.0%)
LB compute : 2.56 ms (99.2%)
LB move op cnt : 0
LB apply : 3.99 us (0.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.07 us (76.9%)
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 | 6.0265e+05 | 262144 | 1 | 4.350e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.229503157847525 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2657796932479028, dt = 0.0015984925559749592
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (0.1%)
patch tree reduce : 2.04 us (0.0%)
gen split merge : 1092.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 872.00 ns (0.0%)
LB compute : 4.99 ms (99.6%)
LB move op cnt : 0
LB apply : 3.91 us (0.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.87 us (77.5%)
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 | 5.9212e+05 | 262144 | 1 | 4.427e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12.998188691756852 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2673781858038777, dt = 0.0015984681230449133
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1723.00 ns (0.4%)
gen split merge : 952.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 952.00 ns (0.2%)
LB compute : 381.72 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.88 us (73.8%)
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 | 6.2526e+05 | 262144 | 1 | 4.193e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.72554576593051 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2689766539269227, dt = 0.0015984433355301835
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1894.00 ns (0.5%)
gen split merge : 1232.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 882.00 ns (0.2%)
LB compute : 343.10 us (94.2%)
LB move op cnt : 0
LB apply : 3.79 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.12 us (72.0%)
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 | 6.2437e+05 | 262144 | 1 | 4.199e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.705679852623208 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.270575097262453, dt = 0.0015984182648232856
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 2.06 us (0.5%)
gen split merge : 992.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 872.00 ns (0.2%)
LB compute : 404.64 us (95.2%)
LB move op cnt : 0
LB apply : 3.76 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.10 us (75.0%)
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.2757e+05 | 262144 | 1 | 4.177e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.775737629980464 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2721735155272762, dt = 0.0015983929906566313
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.7%)
patch tree reduce : 1683.00 ns (0.4%)
gen split merge : 1112.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.2%)
LB compute : 379.99 us (94.8%)
LB move op cnt : 0
LB apply : 4.01 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.00 us (75.3%)
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 | 6.2238e+05 | 262144 | 1 | 4.212e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.661511895532053 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2737719085179329, dt = 0.0015983675889697112
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 2.74 us (0.7%)
gen split merge : 1974.00 ns (0.5%)
split / merge op : 0/0
apply split merge : 2.00 us (0.5%)
LB compute : 382.43 us (94.1%)
LB move op cnt : 0
LB apply : 3.98 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.15 us (75.7%)
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 | 6.3213e+05 | 262144 | 1 | 4.147e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.875300773170123 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2753702761069026, dt = 0.0015983421262750755
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.05 us (1.9%)
patch tree reduce : 1863.00 ns (0.5%)
gen split merge : 962.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 882.00 ns (0.2%)
LB compute : 351.91 us (94.4%)
LB move op cnt : 0
LB apply : 3.73 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 20.09 us (94.4%)
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.3436e+05 | 262144 | 1 | 4.132e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.92407278899505 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2769686182331776, dt = 0.0015983166576157741
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1733.00 ns (0.5%)
gen split merge : 1092.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.3%)
LB compute : 363.08 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.95 us (75.0%)
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 | 6.2714e+05 | 262144 | 1 | 4.180e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.765534231727116 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2785669348907933, dt = 0.0015982912297388026
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (0.1%)
patch tree reduce : 1733.00 ns (0.0%)
gen split merge : 1032.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 1143.00 ns (0.0%)
LB compute : 4.40 ms (99.5%)
LB move op cnt : 0
LB apply : 4.11 us (0.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.83 us (78.3%)
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 | 6.2330e+05 | 262144 | 1 | 4.206e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.681031671166464 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.280165226120532, dt = 0.0015982658771730193
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.8%)
patch tree reduce : 1793.00 ns (0.5%)
gen split merge : 1022.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1022.00 ns (0.3%)
LB compute : 374.08 us (94.6%)
LB move op cnt : 0
LB apply : 4.22 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.81 us (74.9%)
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 | 6.1669e+05 | 262144 | 1 | 4.251e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.535678573600121 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.281763491997705, dt = 0.0015982406234760962
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.6%)
patch tree reduce : 2.13 us (0.5%)
gen split merge : 961.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1472.00 ns (0.3%)
LB compute : 399.93 us (94.9%)
LB move op cnt : 0
LB apply : 3.55 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.34 us (77.3%)
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 | 6.3217e+05 | 262144 | 1 | 4.147e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.875168680590628 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.283361732621181, dt = 0.0015982155788698757
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 2.11 us (0.5%)
gen split merge : 982.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.2%)
LB compute : 399.21 us (95.0%)
LB move op cnt : 0
LB apply : 3.96 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.45 us (77.0%)
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 | 6.1925e+05 | 262144 | 1 | 4.233e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.59149945484611 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2849599482000509, dt = 0.0015981907780822362
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.05 us (1.9%)
patch tree reduce : 2.11 us (0.6%)
gen split merge : 962.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 952.00 ns (0.3%)
LB compute : 345.26 us (94.2%)
LB move op cnt : 0
LB apply : 3.94 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.26 us (72.2%)
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 | 6.2554e+05 | 262144 | 1 | 4.191e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.729183892594937 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.286558138978133, dt = 0.001598166224029542
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (0.4%)
patch tree reduce : 1743.00 ns (0.1%)
gen split merge : 1283.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 1302.00 ns (0.1%)
LB compute : 1789.67 us (98.8%)
LB move op cnt : 0
LB apply : 3.75 us (0.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.27 us (77.2%)
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 | 6.2188e+05 | 262144 | 1 | 4.215e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.648608106940854 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2881563052021627, dt = 0.0015981419117837951
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.1%)
patch tree reduce : 1753.00 ns (0.3%)
gen split merge : 962.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1082.00 ns (0.2%)
LB compute : 603.28 us (96.6%)
LB move op cnt : 0
LB apply : 3.98 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.04 us (76.5%)
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 | 6.1784e+05 | 262144 | 1 | 4.243e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.559910459511912 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2897544471139466, dt = 0.0015981160195968653
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.3%)
patch tree reduce : 1734.00 ns (0.3%)
gen split merge : 1002.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 952.00 ns (0.2%)
LB compute : 529.69 us (93.3%)
LB move op cnt : 0
LB apply : 3.98 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.69 us (77.8%)
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 | 6.1775e+05 | 262144 | 1 | 4.244e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.55766335871658 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2913525631335434, dt = 0.0015980859256264073
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.7%)
patch tree reduce : 1863.00 ns (0.4%)
gen split merge : 1202.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 881.00 ns (0.2%)
LB compute : 392.84 us (94.7%)
LB move op cnt : 0
LB apply : 3.87 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.87 us (75.7%)
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 | 6.1807e+05 | 262144 | 1 | 4.241e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.564467112011434 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2929506490591698, dt = 0.001598055894353124
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.16 us (1.7%)
patch tree reduce : 2.04 us (0.5%)
gen split merge : 962.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 872.00 ns (0.2%)
LB compute : 408.89 us (95.1%)
LB move op cnt : 0
LB apply : 3.86 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.10 us (77.0%)
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 | 6.2811e+05 | 262144 | 1 | 4.174e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.784428008539178 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.294548704953523, dt = 0.0015980260018797693
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.3%)
patch tree reduce : 2.04 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 : 548.14 us (96.3%)
LB move op cnt : 0
LB apply : 3.99 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.02 us (71.2%)
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 | 6.1967e+05 | 262144 | 1 | 4.230e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.59898468515663 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2961467309554027, dt = 0.001597996313089555
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.6%)
patch tree reduce : 1763.00 ns (0.4%)
gen split merge : 932.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 902.00 ns (0.2%)
LB compute : 398.05 us (95.0%)
LB move op cnt : 0
LB apply : 4.25 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.00 us (74.2%)
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 | 6.3323e+05 | 262144 | 1 | 4.140e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.89623876497361 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2977447272684923, dt = 0.001597966867476824
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (0.2%)
patch tree reduce : 1763.00 ns (0.0%)
gen split merge : 952.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 961.00 ns (0.0%)
LB compute : 4.27 ms (99.5%)
LB move op cnt : 0
LB apply : 3.94 us (0.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.03 us (75.1%)
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 | 6.0961e+05 | 262144 | 1 | 4.300e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.377622759649242 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.2993426941359691, dt = 0.001597937679314035
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 2.18 us (0.5%)
gen split merge : 942.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.2%)
LB compute : 386.67 us (95.1%)
LB move op cnt : 0
LB apply : 3.68 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.74 us (74.9%)
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 | 6.2453e+05 | 262144 | 1 | 4.197e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.70480852782075 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3009406318152832, dt = 0.0015979087444250096
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (0.9%)
patch tree reduce : 1743.00 ns (0.2%)
gen split merge : 1243.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 901.00 ns (0.1%)
LB compute : 745.27 us (97.3%)
LB move op cnt : 0
LB apply : 3.94 us (0.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.55 us (78.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 | 6.2359e+05 | 262144 | 1 | 4.204e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.68408018197106 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3025385405597083, dt = 0.0015978800486052993
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (0.9%)
patch tree reduce : 1843.00 ns (0.2%)
gen split merge : 952.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 862.00 ns (0.1%)
LB compute : 746.94 us (97.3%)
LB move op cnt : 0
LB apply : 3.86 us (0.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.10 us (77.1%)
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 | 6.2594e+05 | 262144 | 1 | 4.188e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.735273706042802 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3041364206083137, dt = 0.0015978515751901225
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (0.8%)
patch tree reduce : 1803.00 ns (0.2%)
gen split merge : 932.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 871.00 ns (0.1%)
LB compute : 885.79 us (97.7%)
LB move op cnt : 0
LB apply : 3.99 us (0.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.14 us (73.8%)
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 | 6.2531e+05 | 262144 | 1 | 4.192e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.721237782837786 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.305734272183504, dt = 0.001597823311788021
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.61 us (0.1%)
patch tree reduce : 1733.00 ns (0.0%)
gen split merge : 941.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 881.00 ns (0.0%)
LB compute : 6.13 ms (99.6%)
LB move op cnt : 0
LB apply : 4.21 us (0.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.92 us (75.4%)
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 | 5.9699e+05 | 262144 | 1 | 4.391e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.09956961792738 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3073320954952918, dt = 0.0015977952339882033
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1824.00 ns (0.5%)
gen split merge : 972.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1152.00 ns (0.3%)
LB compute : 380.27 us (94.9%)
LB move op cnt : 0
LB apply : 3.83 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.68 us (73.6%)
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 | 6.3282e+05 | 262144 | 1 | 4.142e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.885494722418247 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3089298907292801, dt = 0.0015977673333006388
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1774.00 ns (0.5%)
gen split merge : 3.30 us (0.9%)
split / merge op : 0/0
apply split merge : 1683.00 ns (0.4%)
LB compute : 359.78 us (93.7%)
LB move op cnt : 0
LB apply : 4.03 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.66 us (73.2%)
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 | 6.2716e+05 | 262144 | 1 | 4.180e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.76116184747078 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3105276580625809, dt = 0.0015977396225173683
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (0.4%)
patch tree reduce : 1864.00 ns (0.1%)
gen split merge : 952.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 882.00 ns (0.1%)
LB compute : 1609.30 us (98.7%)
LB move op cnt : 0
LB apply : 4.11 us (0.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.30 us (77.2%)
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 | 6.2399e+05 | 262144 | 1 | 4.201e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.691386267951263 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3121253976850982, dt = 0.0015977121307942587
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1973.00 ns (0.5%)
gen split merge : 962.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 951.00 ns (0.2%)
LB compute : 363.05 us (94.7%)
LB move op cnt : 0
LB apply : 3.75 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.04 us (74.8%)
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 | 6.3252e+05 | 262144 | 1 | 4.144e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.878280363841045 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3137231098158924, dt = 0.001597684970760976
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1723.00 ns (0.4%)
gen split merge : 941.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 912.00 ns (0.2%)
LB compute : 366.64 us (94.6%)
LB move op cnt : 0
LB apply : 4.15 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.04 us (76.9%)
Info: cfl dt = 0.001597658339027815 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 6.2883e+05 | 262144 | 1 | 4.169e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.796971085099345 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3153207947866534, dt = 0.001597658339027815
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.15 us (1.8%)
patch tree reduce : 1924.00 ns (0.5%)
gen split merge : 982.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 882.00 ns (0.2%)
LB compute : 385.35 us (94.7%)
LB move op cnt : 0
LB apply : 4.23 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.86 us (71.8%)
Info: cfl dt = 0.0015976322241093974 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 6.3098e+05 | 262144 | 1 | 4.155e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.844103553722192 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3169184531256812, dt = 0.0015976322241093974
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (0.2%)
patch tree reduce : 1924.00 ns (0.0%)
gen split merge : 941.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 961.00 ns (0.0%)
LB compute : 4.02 ms (99.5%)
LB move op cnt : 0
LB apply : 3.73 us (0.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.35 us (78.4%)
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 | 6.1774e+05 | 262144 | 1 | 4.244e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.55332853073341 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3185160853497906, dt = 0.0015976065868807089
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.6%)
patch tree reduce : 1803.00 ns (0.4%)
gen split merge : 942.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1012.00 ns (0.2%)
LB compute : 391.66 us (95.0%)
LB move op cnt : 0
LB apply : 3.91 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.97 us (73.9%)
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 | 4.9119e+05 | 262144 | 1 | 5.337e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10.776587689149826 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3201136919366714, dt = 0.001597581381663017
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1893.00 ns (0.5%)
gen split merge : 952.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 942.00 ns (0.2%)
LB compute : 379.54 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.46 us (74.2%)
Info: cfl dt = 0.0015975565709150485 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 6.2479e+05 | 262144 | 1 | 4.196e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.70751890848724 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3217112733183345, dt = 0.001205393348332251
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.7%)
patch tree reduce : 1793.00 ns (0.4%)
gen split merge : 972.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.2%)
LB compute : 384.84 us (94.8%)
LB move op cnt : 0
LB apply : 3.94 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.57 us (74.3%)
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 | 6.2648e+05 | 262144 | 1 | 4.184e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10.370471063500954 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 369.62451453200003 (s) [Godunov][rank=0]
Info: dump to _to_trash/ramses_kh/periodic_0011.vtk [VTK Dump][rank=0]
- took 55.19 ms, bandwidth = 706.63 MB/s
amr::Godunov: t = 1.3229166666666667, dt = 0.001597541286008514
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (0.1%)
patch tree reduce : 1864.00 ns (0.0%)
gen split merge : 922.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 952.00 ns (0.0%)
LB compute : 4.52 ms (99.5%)
LB move op cnt : 0
LB apply : 3.96 us (0.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.79 us (73.4%)
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 | 5.9680e+05 | 262144 | 1 | 4.392e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.093183171154056 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3245142079526753, dt = 0.001597516400529528
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (0.1%)
patch tree reduce : 1863.00 ns (0.0%)
gen split merge : 952.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 952.00 ns (0.0%)
LB compute : 5.33 ms (99.6%)
LB move op cnt : 0
LB apply : 3.74 us (0.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.40 us (77.9%)
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 | 6.2233e+05 | 262144 | 1 | 4.212e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.653063839891932 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3261117243532048, dt = 0.0015974913642355624
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (0.1%)
patch tree reduce : 1793.00 ns (0.0%)
gen split merge : 981.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 1162.00 ns (0.0%)
LB compute : 6.12 ms (99.7%)
LB move op cnt : 0
LB apply : 3.70 us (0.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.46 us (75.0%)
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 | 6.0742e+05 | 262144 | 1 | 4.316e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.325635930596516 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3277092157174404, dt = 0.0015974666477622014
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.5%)
patch tree reduce : 1833.00 ns (0.4%)
gen split merge : 932.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 942.00 ns (0.2%)
LB compute : 425.88 us (95.3%)
LB move op cnt : 0
LB apply : 4.00 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.24 us (77.3%)
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 | 6.3386e+05 | 262144 | 1 | 4.136e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.905611525741296 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3293066823652027, dt = 0.0015974425466652087
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.6%)
patch tree reduce : 1713.00 ns (0.4%)
gen split merge : 972.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 892.00 ns (0.2%)
LB compute : 395.36 us (95.1%)
LB move op cnt : 0
LB apply : 3.60 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.04 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 | 6.2943e+05 | 262144 | 1 | 4.165e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.808076166720676 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3309041249118678, dt = 0.001597419197160476
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1903.00 ns (0.5%)
gen split merge : 952.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.3%)
LB compute : 367.29 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.31 us (76.4%)
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 | 5.6123e+05 | 262144 | 1 | 4.671e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12.311784715766805 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3325015441090282, dt = 0.0015973965812758457
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (0.2%)
patch tree reduce : 1843.00 ns (0.0%)
gen split merge : 962.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 881.00 ns (0.0%)
LB compute : 3.87 ms (99.5%)
LB move op cnt : 0
LB apply : 4.02 us (0.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.24 us (74.4%)
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 | 6.1164e+05 | 262144 | 1 | 4.286e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.417560311855594 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.334098940690304, dt = 0.0015973745585718246
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 2.33 us (0.6%)
gen split merge : 941.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 891.00 ns (0.2%)
LB compute : 399.97 us (94.9%)
LB move op cnt : 0
LB apply : 4.25 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.34 us (77.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.3118e+05 | 262144 | 1 | 4.153e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.845923153615026 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3356963152488759, dt = 0.0015973529279309517
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1844.00 ns (0.5%)
gen split merge : 972.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 871.00 ns (0.2%)
LB compute : 340.38 us (94.4%)
LB move op cnt : 0
LB apply : 3.53 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.20 us (73.5%)
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 | 6.3173e+05 | 262144 | 1 | 4.150e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.85782846947111 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3372936681768068, dt = 0.001597331467041781
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 2.06 us (0.5%)
gen split merge : 932.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 882.00 ns (0.2%)
LB compute : 380.66 us (94.7%)
LB move op cnt : 0
LB apply : 3.80 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.27 us (77.2%)
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 | 6.2028e+05 | 262144 | 1 | 4.226e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.606552749096318 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3388909996438487, dt = 0.0015973099988697223
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.23 us (1.0%)
patch tree reduce : 1773.00 ns (0.3%)
gen split merge : 952.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 901.00 ns (0.1%)
LB compute : 685.88 us (96.9%)
LB move op cnt : 0
LB apply : 4.70 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.11 us (79.9%)
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 | 6.1488e+05 | 262144 | 1 | 4.263e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.487923042419526 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3404883096427185, dt = 0.0015972884917960979
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (1.9%)
patch tree reduce : 1764.00 ns (0.5%)
gen split merge : 962.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 922.00 ns (0.2%)
LB compute : 351.07 us (94.4%)
LB move op cnt : 0
LB apply : 3.82 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.48 us (76.1%)
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 | 6.2945e+05 | 262144 | 1 | 4.165e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.807277626141625 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3420855981345146, dt = 0.0015972667989670604
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 2.17 us (0.5%)
gen split merge : 941.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.2%)
LB compute : 377.65 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.62 us (72.8%)
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 | 6.1837e+05 | 262144 | 1 | 4.239e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.564086099786339 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3436828649334815, dt = 0.0015972448348949284
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.7%)
patch tree reduce : 1963.00 ns (0.5%)
gen split merge : 1233.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 952.00 ns (0.2%)
LB compute : 372.34 us (94.6%)
LB move op cnt : 0
LB apply : 4.08 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.74 us (79.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.2021e+05 | 262144 | 1 | 4.227e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.604270329041194 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3452801097683764, dt = 0.0015972225672000742
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1753.00 ns (0.4%)
gen split merge : 962.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.2%)
LB compute : 410.04 us (95.2%)
LB move op cnt : 0
LB apply : 3.92 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.02 us (75.6%)
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 | 6.1360e+05 | 262144 | 1 | 4.272e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.459068443021444 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3468773323355765, dt = 0.0015972000034877101
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (0.1%)
patch tree reduce : 1934.00 ns (0.0%)
gen split merge : 952.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 952.00 ns (0.0%)
LB compute : 4.82 ms (99.5%)
LB move op cnt : 0
LB apply : 4.96 us (0.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.01 us (80.5%)
Info: cfl dt = 0.0015971771723601326 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 6.1961e+05 | 262144 | 1 | 4.231e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.590634102275375 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3484745323390641, dt = 0.0015971771723601326
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (0.1%)
patch tree reduce : 2.01 us (0.0%)
gen split merge : 961.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 902.00 ns (0.0%)
LB compute : 4.76 ms (99.5%)
LB move op cnt : 0
LB apply : 4.29 us (0.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.13 us (77.2%)
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.1648e+05 | 262144 | 1 | 4.252e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.52179959829687 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3500717095114243, dt = 0.001597154104618465
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.6%)
patch tree reduce : 1814.00 ns (0.4%)
gen split merge : 952.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 872.00 ns (0.2%)
LB compute : 417.71 us (95.2%)
LB move op cnt : 0
LB apply : 3.55 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.67 us (71.2%)
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 | 6.2203e+05 | 262144 | 1 | 4.214e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.643376046775366 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3516688636160428, dt = 0.0015971308218286659
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1753.00 ns (0.4%)
gen split merge : 932.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 882.00 ns (0.2%)
LB compute : 370.48 us (94.8%)
LB move op cnt : 0
LB apply : 3.68 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.86 us (72.7%)
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 | 6.3134e+05 | 262144 | 1 | 4.152e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.847411478266139 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3532659944378715, dt = 0.0015971073285945723
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.7%)
patch tree reduce : 1824.00 ns (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 : 387.27 us (94.8%)
LB move op cnt : 0
LB apply : 3.81 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.50 us (77.2%)
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 | 6.0185e+05 | 262144 | 1 | 4.356e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.200294598829078 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.354863101766466, dt = 0.0015970835881557244
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.5%)
patch tree reduce : 2.05 us (0.5%)
gen split merge : 1202.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 971.00 ns (0.2%)
LB compute : 433.23 us (95.3%)
LB move op cnt : 0
LB apply : 3.81 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.11 us (75.3%)
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 | 6.3018e+05 | 262144 | 1 | 4.160e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.821578803490256 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3564601853546219, dt = 0.0015970595471966427
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.7%)
patch tree reduce : 1983.00 ns (0.5%)
gen split merge : 1182.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 871.00 ns (0.2%)
LB compute : 406.29 us (95.0%)
LB move op cnt : 0
LB apply : 3.92 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.05 us (74.9%)
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 | 6.2528e+05 | 262144 | 1 | 4.192e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.713833506734586 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3580572449018184, dt = 0.001597035160199711
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.23 us (0.2%)
patch tree reduce : 1743.00 ns (0.0%)
gen split merge : 1042.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 1062.00 ns (0.0%)
LB compute : 3.59 ms (99.4%)
LB move op cnt : 0
LB apply : 4.20 us (0.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.19 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 | 6.2749e+05 | 262144 | 1 | 4.178e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.76216129117904 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3596542800620182, dt = 0.001597010385354242
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.25 us (1.9%)
patch tree reduce : 1743.00 ns (0.5%)
gen split merge : 972.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 931.00 ns (0.2%)
LB compute : 343.91 us (90.2%)
LB move op cnt : 0
LB apply : 19.98 us (5.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.65 us (73.6%)
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 | 6.3123e+05 | 262144 | 1 | 4.153e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.843952177694565 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3612512904473724, dt = 0.001596985191017247
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.0%)
patch tree reduce : 2.00 us (0.3%)
gen split merge : 1242.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 882.00 ns (0.1%)
LB compute : 631.76 us (96.8%)
LB move op cnt : 0
LB apply : 3.55 us (0.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.39 us (71.0%)
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 | 6.2124e+05 | 262144 | 1 | 4.220e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.624608112418594 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3628482756383895, dt = 0.001596959549376827
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.6%)
patch tree reduce : 2.13 us (0.5%)
gen split merge : 952.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 882.00 ns (0.2%)
LB compute : 424.74 us (95.2%)
LB move op cnt : 0
LB apply : 4.03 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.79 us (79.8%)
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 | 6.3438e+05 | 262144 | 1 | 4.132e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.91248445143702 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3644452351877663, dt = 0.001596933432428499
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.7%)
patch tree reduce : 1854.00 ns (0.5%)
gen split merge : 932.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 902.00 ns (0.2%)
LB compute : 380.34 us (94.9%)
LB move op cnt : 0
LB apply : 3.59 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.74 us (74.2%)
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 | 6.2234e+05 | 262144 | 1 | 4.212e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.648315966012662 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3660421686201947, dt = 0.0015969068111643507
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.6%)
patch tree reduce : 1744.00 ns (0.4%)
gen split merge : 961.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1082.00 ns (0.3%)
LB compute : 398.01 us (95.1%)
LB move op cnt : 0
LB apply : 3.85 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.16 us (74.8%)
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 | 6.3153e+05 | 262144 | 1 | 4.151e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.84956279807806 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.367639075431359, dt = 0.0015968796568413353
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.1%)
patch tree reduce : 1763.00 ns (0.3%)
gen split merge : 952.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 952.00 ns (0.2%)
LB compute : 598.23 us (96.6%)
LB move op cnt : 0
LB apply : 3.68 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.51 us (73.8%)
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 | 6.2324e+05 | 262144 | 1 | 4.206e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.667436288497033 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3692359550882003, dt = 0.0015968519432212253
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (0.1%)
patch tree reduce : 2.01 us (0.0%)
gen split merge : 1002.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.0%)
LB compute : 6.23 ms (99.6%)
LB move op cnt : 0
LB apply : 4.07 us (0.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.92 us (77.3%)
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 | 6.1495e+05 | 262144 | 1 | 4.263e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.485503498055607 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3708328070314215, dt = 0.0015968236473442392
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (0.2%)
patch tree reduce : 1973.00 ns (0.1%)
gen split merge : 942.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.0%)
LB compute : 3.90 ms (99.4%)
LB move op cnt : 0
LB apply : 4.33 us (0.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.75 us (76.5%)
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 | 6.2619e+05 | 262144 | 1 | 4.186e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.7317640827708 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3724296306787658, dt = 0.0015967947492751653
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (0.1%)
patch tree reduce : 2.22 us (0.0%)
gen split merge : 962.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 952.00 ns (0.0%)
LB compute : 6.19 ms (99.6%)
LB move op cnt : 0
LB apply : 4.30 us (0.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.47 us (77.6%)
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 | 6.1502e+05 | 262144 | 1 | 4.262e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.486524499844847 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.374026425428041, dt = 0.0015967652310769933
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.40 us (0.1%)
patch tree reduce : 1914.00 ns (0.0%)
gen split merge : 962.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 902.00 ns (0.0%)
LB compute : 6.16 ms (99.6%)
LB move op cnt : 0
LB apply : 4.96 us (0.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.38 us (78.4%)
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 | 6.1127e+05 | 262144 | 1 | 4.289e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.404112765648021 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.375623190659118, dt = 0.0015967350756569826
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1814.00 ns (0.4%)
gen split merge : 951.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 882.00 ns (0.2%)
LB compute : 411.29 us (95.1%)
LB move op cnt : 0
LB apply : 3.89 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.03 us (75.9%)
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 | 6.3394e+05 | 262144 | 1 | 4.135e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.901029486897952 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.377219925734775, dt = 0.0015967042664610633
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1793.00 ns (0.5%)
gen split merge : 1132.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 961.00 ns (0.3%)
LB compute : 362.55 us (94.5%)
LB move op cnt : 0
LB apply : 3.99 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.48 us (74.8%)
Info: cfl dt = 0.001596672788316712 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 6.2043e+05 | 262144 | 1 | 4.225e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.604416580866138 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.378816630001236, dt = 0.001596672788316712
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1954.00 ns (0.5%)
gen split merge : 1002.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 881.00 ns (0.2%)
LB compute : 364.92 us (94.5%)
LB move op cnt : 0
LB apply : 3.66 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.16 us (73.4%)
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 | 6.1264e+05 | 262144 | 1 | 4.279e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.433377015339248 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3804133027895529, dt = 0.001596640625389737
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.1%)
patch tree reduce : 1843.00 ns (0.3%)
gen split merge : 942.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 952.00 ns (0.2%)
LB compute : 576.24 us (96.4%)
LB move op cnt : 0
LB apply : 4.35 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.90 us (71.1%)
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 | 6.2266e+05 | 262144 | 1 | 4.210e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.65279273369193 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3820099434149427, dt = 0.0015966077627863145
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.0%)
patch tree reduce : 1933.00 ns (0.3%)
gen split merge : 952.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 871.00 ns (0.1%)
LB compute : 688.34 us (97.1%)
LB move op cnt : 0
LB apply : 3.52 us (0.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.96 us (72.7%)
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 | 6.2410e+05 | 262144 | 1 | 4.200e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.683959333045337 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.383606551177729, dt = 0.0015965741923818055
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1784.00 ns (0.4%)
gen split merge : 942.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 971.00 ns (0.2%)
LB compute : 406.55 us (95.1%)
LB move op cnt : 0
LB apply : 3.85 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.11 us (73.5%)
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 | 6.1445e+05 | 262144 | 1 | 4.266e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.47218232171483 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3852031253701107, dt = 0.0015965399158959631
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 2.08 us (0.5%)
gen split merge : 962.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 911.00 ns (0.2%)
LB compute : 381.60 us (94.9%)
LB move op cnt : 0
LB apply : 3.54 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.90 us (71.0%)
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 | 6.2562e+05 | 262144 | 1 | 4.190e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.716808266547762 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3867996652860066, dt = 0.001596504947564527
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.5%)
patch tree reduce : 1814.00 ns (0.4%)
gen split merge : 1182.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.2%)
LB compute : 449.36 us (95.5%)
LB move op cnt : 0
LB apply : 3.81 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.16 us (76.9%)
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 | 6.2202e+05 | 262144 | 1 | 4.214e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.63766616531373 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3883961702335712, dt = 0.0015964693143896195
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.5%)
patch tree reduce : 1984.00 ns (0.4%)
gen split merge : 1323.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 952.00 ns (0.2%)
LB compute : 425.20 us (95.0%)
LB move op cnt : 0
LB apply : 3.92 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.93 us (74.7%)
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 | 6.2706e+05 | 262144 | 1 | 4.181e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.747735922245722 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.389992639547961, dt = 0.0015964330534576831
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1853.00 ns (0.5%)
gen split merge : 952.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.2%)
LB compute : 390.72 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.58 us (72.3%)
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 | 6.1142e+05 | 262144 | 1 | 4.287e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.404476158695246 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3915890726014186, dt = 0.0015963962057305781
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 2.07 us (0.5%)
gen split merge : 972.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.2%)
LB compute : 385.52 us (94.9%)
LB move op cnt : 0
LB apply : 3.69 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.75 us (72.1%)
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 | 6.3215e+05 | 262144 | 1 | 4.147e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.858693307898406 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3931854688071492, dt = 0.0015963588116160053
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.16 us (2.0%)
patch tree reduce : 1913.00 ns (0.5%)
gen split merge : 1002.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.3%)
LB compute : 337.25 us (94.1%)
LB move op cnt : 0
LB apply : 3.71 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.81 us (73.9%)
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 | 6.3311e+05 | 262144 | 1 | 4.141e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.879448073040985 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3947818276187651, dt = 0.0015963209087687638
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (0.3%)
patch tree reduce : 1894.00 ns (0.1%)
gen split merge : 972.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 1002.00 ns (0.0%)
LB compute : 2.68 ms (99.2%)
LB move op cnt : 0
LB apply : 3.98 us (0.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.96 us (74.5%)
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 | 6.2734e+05 | 262144 | 1 | 4.179e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.752698969196102 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.396378148527534, dt = 0.0015962825312260316
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.6%)
patch tree reduce : 1984.00 ns (0.5%)
gen split merge : 1132.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1212.00 ns (0.3%)
LB compute : 401.90 us (94.9%)
LB move op cnt : 0
LB apply : 3.97 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.23 us (75.1%)
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 | 6.2263e+05 | 262144 | 1 | 4.210e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.64903174488866 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.39797443105876, dt = 0.0015962437100303856
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 2.11 us (0.5%)
gen split merge : 1282.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 882.00 ns (0.2%)
LB compute : 410.34 us (95.0%)
LB move op cnt : 0
LB apply : 4.09 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.58 us (72.5%)
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.2435e+05 | 262144 | 1 | 4.199e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.686528853077528 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.3995706747687904, dt = 0.001596204474820481
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1904.00 ns (0.5%)
gen split merge : 1002.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 902.00 ns (0.2%)
LB compute : 353.76 us (94.6%)
LB move op cnt : 0
LB apply : 3.71 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.49 us (75.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.2893e+05 | 262144 | 1 | 4.168e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.786435739526086 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.401166879243611, dt = 0.001596164855839259
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1813.00 ns (0.5%)
gen split merge : 1293.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.2%)
LB compute : 368.72 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.75 us (74.9%)
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.2466e+05 | 262144 | 1 | 4.197e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.692620655666321 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4027630440994503, dt = 0.0015961248873926767
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.16 us (1.8%)
patch tree reduce : 1944.00 ns (0.5%)
gen split merge : 952.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.2%)
LB compute : 375.95 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 (76.0%)
Info: cfl dt = 0.0015960846046578793 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 6.2250e+05 | 262144 | 1 | 4.211e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.644751545938398 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4043591689868429, dt = 0.0015960846046578793
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.6%)
patch tree reduce : 1884.00 ns (0.4%)
gen split merge : 1142.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1102.00 ns (0.2%)
LB compute : 421.54 us (95.4%)
LB move op cnt : 0
LB apply : 3.43 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.59 us (73.3%)
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.0753e+05 | 262144 | 1 | 4.315e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.316432423659652 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4059552535915008, dt = 0.0015960440469291897
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1904.00 ns (0.5%)
gen split merge : 992.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1122.00 ns (0.3%)
LB compute : 350.44 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.77 us (74.0%)
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 | 6.2966e+05 | 262144 | 1 | 4.163e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.801038645884441 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.40755129763843, dt = 0.001596003258617692
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.5%)
patch tree reduce : 1924.00 ns (0.4%)
gen split merge : 1152.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 872.00 ns (0.2%)
LB compute : 437.28 us (95.3%)
LB move op cnt : 0
LB apply : 4.13 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.00 us (75.3%)
Info: cfl dt = 0.0015959622897416515 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 6.3199e+05 | 262144 | 1 | 4.148e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.851829534278727 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4091473008970476, dt = 0.0015959622897416515
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (0.3%)
patch tree reduce : 2.09 us (0.1%)
gen split merge : 1173.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.0%)
LB compute : 2.45 ms (99.1%)
LB move op cnt : 0
LB apply : 3.57 us (0.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.08 us (76.0%)
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 | 6.2145e+05 | 262144 | 1 | 4.218e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.620400784997843 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4107432631867893, dt = 0.0015959211945845236
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.0%)
patch tree reduce : 1793.00 ns (0.3%)
gen split merge : 1102.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.1%)
LB compute : 674.50 us (97.0%)
LB move op cnt : 0
LB apply : 3.48 us (0.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.80 us (73.8%)
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 | 6.1844e+05 | 262144 | 1 | 4.239e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.554205364840104 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.412339184381374, dt = 0.0015958800296107132
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 2.21 us (0.6%)
gen split merge : 1372.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 861.00 ns (0.2%)
LB compute : 351.56 us (94.1%)
LB move op cnt : 0
LB apply : 3.72 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.81 us (65.8%)
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 | 6.2268e+05 | 262144 | 1 | 4.210e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.646673904295758 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4139350644109847, dt = 0.0015958388513965546
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.6%)
patch tree reduce : 1884.00 ns (0.4%)
gen split merge : 962.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.2%)
LB compute : 415.60 us (95.3%)
LB move op cnt : 0
LB apply : 3.70 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.98 us (75.0%)
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 | 6.2276e+05 | 262144 | 1 | 4.209e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.648027906525277 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4155309032623813, dt = 0.0015957977154716536
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (0.6%)
patch tree reduce : 2.12 us (0.2%)
gen split merge : 942.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 1122.00 ns (0.1%)
LB compute : 1177.35 us (98.2%)
LB move op cnt : 0
LB apply : 4.37 us (0.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.83 us (74.7%)
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 | 6.2959e+05 | 262144 | 1 | 4.164e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.797433779745043 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.417126700977853, dt = 0.0015957566764063357
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.15 us (1.6%)
patch tree reduce : 1783.00 ns (0.4%)
gen split merge : 982.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.2%)
LB compute : 420.85 us (95.2%)
LB move op cnt : 0
LB apply : 3.94 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.01 us (75.8%)
Info: cfl dt = 0.001595715788406231 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 6.2221e+05 | 262144 | 1 | 4.213e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.635411848971195 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4187224576542594, dt = 0.001595715788406231
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.1%)
patch tree reduce : 2.18 us (0.4%)
gen split merge : 1102.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 881.00 ns (0.1%)
LB compute : 594.12 us (96.6%)
LB move op cnt : 0
LB apply : 3.66 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.98 us (75.8%)
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 | 5.9544e+05 | 262144 | 1 | 4.403e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.048271016172151 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4203181734426658, dt = 0.0015956751055150459
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (0.8%)
patch tree reduce : 2.16 us (0.2%)
gen split merge : 1022.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.1%)
LB compute : 861.56 us (97.6%)
LB move op cnt : 0
LB apply : 3.70 us (0.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.00 us (69.2%)
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 | 6.0759e+05 | 262144 | 1 | 4.315e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.314181400145612 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4219138485481808, dt = 0.0015956346808672387
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1864.00 ns (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 : 482.47 us (95.9%)
LB move op cnt : 0
LB apply : 3.89 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.88 us (74.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 | 6.1843e+05 | 262144 | 1 | 4.239e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.551503316515381 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.423509483229048, dt = 0.0015955945659434628
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (0.2%)
patch tree reduce : 2.09 us (0.1%)
gen split merge : 951.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 921.00 ns (0.0%)
LB compute : 3.57 ms (99.4%)
LB move op cnt : 0
LB apply : 3.67 us (0.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.65 us (73.4%)
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 | 6.1552e+05 | 262144 | 1 | 4.259e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.487332482712482 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4251050777949914, dt = 0.0015955548093980298
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1793.00 ns (0.4%)
gen split merge : 1112.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1122.00 ns (0.3%)
LB compute : 399.71 us (95.1%)
LB move op cnt : 0
LB apply : 3.72 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.00 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 | 6.2292e+05 | 262144 | 1 | 4.208e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.649155924498878 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4267006326043894, dt = 0.0015955154554980883
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (0.1%)
patch tree reduce : 1874.00 ns (0.0%)
gen split merge : 1232.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 952.00 ns (0.0%)
LB compute : 5.19 ms (99.6%)
LB move op cnt : 0
LB apply : 3.82 us (0.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.07 us (74.7%)
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 | 6.0118e+05 | 262144 | 1 | 4.360e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.172522723627134 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4282961480598875, dt = 0.0015954765426481805
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (0.2%)
patch tree reduce : 1873.00 ns (0.0%)
gen split merge : 932.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 882.00 ns (0.0%)
LB compute : 3.78 ms (99.4%)
LB move op cnt : 0
LB apply : 3.98 us (0.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.06 us (75.7%)
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 | 6.1790e+05 | 262144 | 1 | 4.242e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.538588420046414 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4298916246025357, dt = 0.001595438102376508
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.7%)
patch tree reduce : 1854.00 ns (0.4%)
gen split merge : 951.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1163.00 ns (0.3%)
LB compute : 400.64 us (95.1%)
LB move op cnt : 0
LB apply : 3.54 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.31 us (75.5%)
Info: cfl dt = 0.00159540015902693 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 6.1399e+05 | 262144 | 1 | 4.269e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.452614141351232 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4314870627049123, dt = 0.00159540015902693
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 8.04 us (0.9%)
patch tree reduce : 4.32 us (0.5%)
gen split merge : 1292.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 872.00 ns (0.1%)
LB compute : 836.84 us (97.1%)
LB move op cnt : 0
LB apply : 3.74 us (0.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.87 us (74.9%)
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.2372e+05 | 262144 | 1 | 4.203e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.665372329839748 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4330824628639394, dt = 0.0015953627298465711
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (0.2%)
patch tree reduce : 1863.00 ns (0.0%)
gen split merge : 971.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.0%)
LB compute : 4.45 ms (99.1%)
LB move op cnt : 0
LB apply : 3.88 us (0.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.62 us (77.3%)
Info: cfl dt = 0.0015953258253560752 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 6.2512e+05 | 262144 | 1 | 4.193e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.695766807739517 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.434677825593786, dt = 0.0015953258253560752
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (0.1%)
patch tree reduce : 1844.00 ns (0.0%)
gen split merge : 951.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 881.00 ns (0.0%)
LB compute : 5.19 ms (99.6%)
LB move op cnt : 0
LB apply : 4.05 us (0.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.40 us (77.2%)
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 | 6.1394e+05 | 262144 | 1 | 4.270e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.45040019984278 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.436273151419142, dt = 0.0015952894515179072
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (0.6%)
patch tree reduce : 1994.00 ns (0.2%)
gen split merge : 1072.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.1%)
LB compute : 1164.23 us (98.2%)
LB move op cnt : 0
LB apply : 4.11 us (0.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.17 us (76.9%)
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 | 6.1606e+05 | 262144 | 1 | 4.255e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.496571543319233 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.43786844087066, dt = 0.0015952536263584122
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.2%)
patch tree reduce : 1774.00 ns (0.0%)
gen split merge : 942.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 932.00 ns (0.0%)
LB compute : 4.06 ms (99.5%)
LB move op cnt : 0
LB apply : 4.04 us (0.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.50 us (71.8%)
Info: cfl dt = 0.0015952183509550086 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 6.1794e+05 | 262144 | 1 | 4.242e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.537446644439612 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4394636944970183, dt = 0.0015952183509550086
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (0.4%)
patch tree reduce : 1964.00 ns (0.1%)
gen split merge : 1083.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 952.00 ns (0.1%)
LB compute : 1734.71 us (98.8%)
LB move op cnt : 0
LB apply : 3.73 us (0.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.39 us (75.3%)
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 | 6.0884e+05 | 262144 | 1 | 4.306e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.337935173924306 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4410589128479734, dt = 0.0015951836037136086
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.6%)
patch tree reduce : 2.08 us (0.5%)
gen split merge : 962.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 882.00 ns (0.2%)
LB compute : 395.78 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.17 us (76.2%)
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 | 6.2944e+05 | 262144 | 1 | 4.165e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.788867942381668 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.442654096451687, dt = 0.0015951491898046873
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1793.00 ns (0.4%)
gen split merge : 962.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1042.00 ns (0.2%)
LB compute : 429.03 us (95.3%)
LB move op cnt : 0
LB apply : 4.20 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.02 us (75.6%)
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 | 6.3459e+05 | 262144 | 1 | 4.131e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.901277474237476 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4442492456414917, dt = 0.0015951151424895874
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.8%)
patch tree reduce : 1954.00 ns (0.5%)
gen split merge : 972.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1302.00 ns (0.3%)
LB compute : 365.25 us (94.4%)
LB move op cnt : 0
LB apply : 3.96 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.75 us (73.5%)
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 | 6.2613e+05 | 262144 | 1 | 4.187e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.715711599953073 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4458443607839813, dt = 0.0015950815015249524
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.46 us (1.9%)
patch tree reduce : 2.09 us (0.5%)
gen split merge : 952.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 902.00 ns (0.2%)
LB compute : 378.14 us (94.7%)
LB move op cnt : 0
LB apply : 3.65 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.81 us (77.0%)
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 | 6.3420e+05 | 262144 | 1 | 4.133e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.892145532316931 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4474394422855061, dt = 0.0015950482974442359
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.16 us (0.5%)
gen split merge : 982.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 872.00 ns (0.2%)
LB compute : 377.49 us (94.8%)
LB move op cnt : 0
LB apply : 3.78 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.63 us (73.7%)
Info: cfl dt = 0.0015950155545393634 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 6.2643e+05 | 262144 | 1 | 4.185e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.721636243864442 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4490344905829504, dt = 0.0015950155545393634
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (0.1%)
patch tree reduce : 1874.00 ns (0.0%)
gen split merge : 1142.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 882.00 ns (0.0%)
LB compute : 6.15 ms (99.7%)
LB move op cnt : 0
LB apply : 4.09 us (0.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.34 us (75.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 | 6.1944e+05 | 262144 | 1 | 4.232e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.568294062220591 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4506295061374899, dt = 0.0015949832940181665
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.6%)
patch tree reduce : 1904.00 ns (0.4%)
gen split merge : 972.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1222.00 ns (0.3%)
LB compute : 403.64 us (95.2%)
LB move op cnt : 0
LB apply : 3.85 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.01 us (73.9%)
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 | 6.2664e+05 | 262144 | 1 | 4.183e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.725797545653483 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.452224489431508, dt = 0.001594951529473891
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (0.8%)
patch tree reduce : 2.13 us (0.3%)
gen split merge : 942.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 1002.00 ns (0.1%)
LB compute : 815.42 us (97.5%)
LB move op cnt : 0
LB apply : 3.82 us (0.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.88 us (72.8%)
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 | 6.2604e+05 | 262144 | 1 | 4.187e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.712352129522568 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.453819440960982, dt = 0.0013888923723515134
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 2.21 us (0.6%)
gen split merge : 962.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1232.00 ns (0.3%)
LB compute : 343.12 us (94.2%)
LB move op cnt : 0
LB apply : 3.57 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.05 us (75.2%)
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 | 6.2918e+05 | 262144 | 1 | 4.166e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12.00077464437725 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 405.192489103 (s) [Godunov][rank=0]
Info: dump to _to_trash/ramses_kh/periodic_0012.vtk [VTK Dump][rank=0]
- took 51.86 ms, bandwidth = 751.98 MB/s
amr::Godunov: t = 1.4552083333333334, dt = 0.001594894679573488
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1803.00 ns (0.4%)
gen split merge : 1152.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.2%)
LB compute : 388.25 us (94.9%)
LB move op cnt : 0
LB apply : 3.74 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.48 us (70.6%)
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.1185e+05 | 262144 | 1 | 4.284e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.40111250738229 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4568032280129068, dt = 0.001594863225902596
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1864.00 ns (0.4%)
gen split merge : 961.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1322.00 ns (0.3%)
LB compute : 415.84 us (95.2%)
LB move op cnt : 0
LB apply : 3.46 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.92 us (73.2%)
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 | 6.2391e+05 | 262144 | 1 | 4.202e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.66491607042847 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4583980912388095, dt = 0.0015948322735937325
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.6%)
patch tree reduce : 1763.00 ns (0.4%)
gen split merge : 1172.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 952.00 ns (0.2%)
LB compute : 409.92 us (95.1%)
LB move op cnt : 0
LB apply : 4.08 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.73 us (74.5%)
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 | 6.3330e+05 | 262144 | 1 | 4.139e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.870268746667142 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4599929235124032, dt = 0.0015948022568394885
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 2.17 us (0.6%)
gen split merge : 971.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 981.00 ns (0.3%)
LB compute : 349.38 us (94.3%)
LB move op cnt : 0
LB apply : 3.67 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.12 us (76.0%)
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 | 6.3271e+05 | 262144 | 1 | 4.143e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.85705618596484 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4615877257692427, dt = 0.0015947733337951413
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.05 us (1.3%)
patch tree reduce : 2.12 us (0.4%)
gen split merge : 952.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1333.00 ns (0.2%)
LB compute : 531.84 us (96.1%)
LB move op cnt : 0
LB apply : 3.62 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.91 us (73.2%)
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 | 6.2702e+05 | 262144 | 1 | 4.181e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.732211911990111 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4631824991030378, dt = 0.0015947454972698458
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1924.00 ns (0.5%)
gen split merge : 1002.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.3%)
LB compute : 362.94 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.92 us (75.0%)
Info: cfl dt = 0.0015947186330669675 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 6.2718e+05 | 262144 | 1 | 4.180e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.735451669468093 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4647772446003076, dt = 0.0015947186330669675
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1974.00 ns (0.5%)
gen split merge : 952.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 862.00 ns (0.2%)
LB compute : 403.39 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.99 us (74.9%)
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 | 6.2540e+05 | 262144 | 1 | 4.192e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.696276978863136 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4663719632333745, dt = 0.0015946925747072492
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.0%)
patch tree reduce : 1963.00 ns (0.3%)
gen split merge : 1001.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 911.00 ns (0.1%)
LB compute : 616.06 us (96.8%)
LB move op cnt : 0
LB apply : 3.63 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.54 us (77.2%)
Info: cfl dt = 0.0015946671507559235 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 6.2843e+05 | 262144 | 1 | 4.171e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.762565887042562 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4679666558080817, dt = 0.0015946671507559235
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1924.00 ns (0.5%)
gen split merge : 941.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 871.00 ns (0.2%)
LB compute : 397.01 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.99 us (74.1%)
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 | 6.2784e+05 | 262144 | 1 | 4.175e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.749357735935478 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4695613229588376, dt = 0.0015946422183869442
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 2.11 us (0.6%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1302.00 ns (0.3%)
LB compute : 356.19 us (94.3%)
LB move op cnt : 0
LB apply : 4.17 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.96 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 | 6.3304e+05 | 262144 | 1 | 4.141e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.862956120943704 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4711559651772246, dt = 0.001594617683602119
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.9%)
patch tree reduce : 2.14 us (0.5%)
gen split merge : 942.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 881.00 ns (0.2%)
LB compute : 379.04 us (94.6%)
LB move op cnt : 0
LB apply : 3.81 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.79 us (74.9%)
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.3491e+05 | 262144 | 1 | 4.129e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.903720927026972 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4727505828608267, dt = 0.001594593502809023
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.7%)
patch tree reduce : 2.03 us (0.5%)
gen split merge : 1153.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 871.00 ns (0.2%)
LB compute : 394.89 us (94.9%)
LB move op cnt : 0
LB apply : 3.87 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.44 us (71.1%)
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.2475e+05 | 262144 | 1 | 4.196e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.681135106501081 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4743451763636357, dt = 0.0015945696776763277
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.1%)
patch tree reduce : 1853.00 ns (0.3%)
gen split merge : 942.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.2%)
LB compute : 541.74 us (96.4%)
LB move op cnt : 0
LB apply : 3.73 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.27 us (73.4%)
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 | 6.2964e+05 | 262144 | 1 | 4.163e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.787850591161899 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.475939746041312, dt = 0.001594546262000383
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1774.00 ns (0.4%)
gen split merge : 1182.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.2%)
LB compute : 374.41 us (94.6%)
LB move op cnt : 0
LB apply : 3.72 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.54 us (71.9%)
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 | 6.2379e+05 | 262144 | 1 | 4.202e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.659677236111056 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4775342923033123, dt = 0.0015945233493087347
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (0.1%)
patch tree reduce : 1903.00 ns (0.0%)
gen split merge : 1253.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.0%)
LB compute : 6.13 ms (99.7%)
LB move op cnt : 0
LB apply : 4.23 us (0.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.16 us (77.2%)
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.1678e+05 | 262144 | 1 | 4.250e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.50584861009942 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.479128815652621, dt = 0.0015944988179841305
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 2.04 us (0.5%)
gen split merge : 971.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 952.00 ns (0.2%)
LB compute : 376.12 us (94.7%)
LB move op cnt : 0
LB apply : 3.57 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.75 us (74.9%)
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 | 6.3121e+05 | 262144 | 1 | 4.153e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.821781079909087 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4807233144706051, dt = 0.0015944662681038058
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.6%)
patch tree reduce : 1893.00 ns (0.5%)
gen split merge : 1082.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.2%)
LB compute : 380.33 us (91.0%)
LB move op cnt : 0
LB apply : 4.00 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.13 us (75.9%)
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 | 6.3322e+05 | 262144 | 1 | 4.140e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.865461038914342 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.482317780738709, dt = 0.0015944339563569486
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.1%)
patch tree reduce : 1914.00 ns (0.3%)
gen split merge : 992.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 872.00 ns (0.1%)
LB compute : 627.29 us (96.8%)
LB move op cnt : 0
LB apply : 4.07 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.93 us (75.5%)
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 | 6.2815e+05 | 262144 | 1 | 4.173e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.754061738054599 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4839122146950658, dt = 0.0015944019551024098
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.2%)
patch tree reduce : 1884.00 ns (0.3%)
gen split merge : 951.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1262.00 ns (0.2%)
LB compute : 571.11 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.21 us (76.2%)
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.2529e+05 | 262144 | 1 | 4.192e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.691125917903959 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4855066166501683, dt = 0.0015943703274971133
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.6%)
patch tree reduce : 1953.00 ns (0.5%)
gen split merge : 942.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1243.00 ns (0.3%)
LB compute : 402.57 us (95.0%)
LB move op cnt : 0
LB apply : 4.06 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.50 us (72.9%)
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 | 6.2361e+05 | 262144 | 1 | 4.204e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.654066060380522 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4871009869776655, dt = 0.0015943391138626044
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1873.00 ns (0.3%)
gen split merge : 931.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 871.00 ns (0.1%)
LB compute : 570.93 us (96.5%)
LB move op cnt : 0
LB apply : 4.01 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.00 us (76.3%)
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 | 6.2548e+05 | 262144 | 1 | 4.191e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.694833170737903 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.488695326091528, dt = 0.0015943083267917603
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 2.23 us (0.6%)
gen split merge : 962.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.3%)
LB compute : 346.42 us (94.2%)
LB move op cnt : 0
LB apply : 3.80 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.07 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 | 6.2531e+05 | 262144 | 1 | 4.192e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.690798616541509 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4902896344183199, dt = 0.0015942779520156326
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.6%)
patch tree reduce : 1704.00 ns (0.4%)
gen split merge : 971.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1032.00 ns (0.2%)
LB compute : 413.40 us (95.1%)
LB move op cnt : 0
LB apply : 4.27 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.34 us (75.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 | 6.3403e+05 | 262144 | 1 | 4.135e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.881480566659217 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4918839123703356, dt = 0.0015942479528685302
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.6%)
patch tree reduce : 2.13 us (0.5%)
gen split merge : 952.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 952.00 ns (0.2%)
LB compute : 410.08 us (95.0%)
LB move op cnt : 0
LB apply : 4.04 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.88 us (73.5%)
Info: cfl dt = 0.0015942182748646062 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 6.2591e+05 | 262144 | 1 | 4.188e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.703428498509352 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4934781603232041, dt = 0.0015942182748646062
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.16 us (1.0%)
patch tree reduce : 2.02 us (0.3%)
gen split merge : 1272.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 861.00 ns (0.1%)
LB compute : 670.98 us (96.9%)
LB move op cnt : 0
LB apply : 4.03 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.95 us (80.4%)
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 | 6.2415e+05 | 262144 | 1 | 4.200e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.664637167896036 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4950723785980686, dt = 0.0015941888520156643
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1853.00 ns (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 : 399.28 us (95.2%)
LB move op cnt : 0
LB apply : 3.59 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.14 us (76.5%)
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 | 6.2435e+05 | 262144 | 1 | 4.199e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.668719816655624 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4966665674500843, dt = 0.0015941596064340587
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.7%)
patch tree reduce : 1793.00 ns (0.4%)
gen split merge : 962.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 872.00 ns (0.2%)
LB compute : 382.17 us (94.9%)
LB move op cnt : 0
LB apply : 3.66 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.68 us (76.1%)
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 | 6.2694e+05 | 262144 | 1 | 4.181e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.725234814451236 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4982607270565185, dt = 0.0015941304508293756
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (0.1%)
patch tree reduce : 1854.00 ns (0.0%)
gen split merge : 942.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 882.00 ns (0.0%)
LB compute : 4.66 ms (99.6%)
LB move op cnt : 0
LB apply : 3.89 us (0.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.14 us (77.1%)
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 | 6.0981e+05 | 262144 | 1 | 4.299e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.35009165674396 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.4998548575073478, dt = 0.0015941012931219244
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 2.20 us (0.6%)
gen split merge : 962.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 862.00 ns (0.2%)
LB compute : 353.57 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.54 us (72.6%)
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 | 6.3170e+05 | 262144 | 1 | 4.150e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.828899323583007 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5014489588004698, dt = 0.0015940720425314117
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (0.9%)
patch tree reduce : 1873.00 ns (0.2%)
gen split merge : 951.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 872.00 ns (0.1%)
LB compute : 735.03 us (97.2%)
LB move op cnt : 0
LB apply : 4.02 us (0.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.90 us (74.5%)
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 | 6.1254e+05 | 262144 | 1 | 4.280e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.40923783163469 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5030430308430012, dt = 0.0015940426147407986
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.4%)
patch tree reduce : 1864.00 ns (0.4%)
gen split merge : 1302.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 851.00 ns (0.2%)
LB compute : 467.17 us (95.6%)
LB move op cnt : 0
LB apply : 3.86 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.15 us (77.5%)
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 | 6.0435e+05 | 262144 | 1 | 4.338e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.22965978121953 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.504637073457742, dt = 0.0015940129348716043
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 2.21 us (0.5%)
gen split merge : 1233.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 952.00 ns (0.2%)
LB compute : 387.76 us (94.8%)
LB move op cnt : 0
LB apply : 3.83 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.11 us (76.0%)
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 | 6.3358e+05 | 262144 | 1 | 4.138e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.869322764965919 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5062310863926136, dt = 0.001593982938212931
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1973.00 ns (0.5%)
gen split merge : 951.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1132.00 ns (0.3%)
LB compute : 350.50 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.02 us (75.7%)
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 | 6.3294e+05 | 262144 | 1 | 4.142e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.855166618700915 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5078250693308266, dt = 0.0015939525640558856
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1933.00 ns (0.4%)
gen split merge : 1152.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 952.00 ns (0.2%)
LB compute : 418.60 us (95.3%)
LB move op cnt : 0
LB apply : 3.91 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.07 us (74.8%)
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 | 6.3321e+05 | 262144 | 1 | 4.140e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.860655848586863 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5094190218948824, dt = 0.001593921760136384
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.8%)
patch tree reduce : 1683.00 ns (0.4%)
gen split merge : 1172.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.3%)
LB compute : 360.27 us (94.5%)
LB move op cnt : 0
LB apply : 3.66 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.12 us (76.0%)
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.3246e+05 | 262144 | 1 | 4.145e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.844002803811113 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5110129436550188, dt = 0.0015938904830636994
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (0.7%)
patch tree reduce : 1753.00 ns (0.2%)
gen split merge : 1182.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.1%)
LB compute : 912.81 us (97.7%)
LB move op cnt : 0
LB apply : 4.04 us (0.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.23 us (74.7%)
Info: cfl dt = 0.0015938586957651647 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 6.2344e+05 | 262144 | 1 | 4.205e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.64636024343807 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5126068341380825, dt = 0.0015938586957651647
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 2.01 us (0.5%)
gen split merge : 961.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.2%)
LB compute : 375.20 us (94.6%)
LB move op cnt : 0
LB apply : 3.57 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.91 us (75.3%)
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 | 6.3379e+05 | 262144 | 1 | 4.136e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.872558932811922 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5142006928338476, dt = 0.0015938263641188223
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.3%)
patch tree reduce : 2.31 us (0.4%)
gen split merge : 931.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 971.00 ns (0.2%)
LB compute : 501.66 us (96.0%)
LB move op cnt : 0
LB apply : 3.68 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.77 us (74.8%)
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 | 6.2213e+05 | 262144 | 1 | 4.214e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.617152482213818 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5157945191979665, dt = 0.0015937934541244184
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1794.00 ns (0.5%)
gen split merge : 942.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 902.00 ns (0.2%)
LB compute : 373.84 us (94.7%)
LB move op cnt : 0
LB apply : 3.86 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.25 us (71.7%)
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.3439e+05 | 262144 | 1 | 4.132e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.885134334940384 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5173883126520908, dt = 0.0015937599303736368
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1793.00 ns (0.5%)
gen split merge : 952.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.2%)
LB compute : 374.69 us (94.6%)
LB move op cnt : 0
LB apply : 4.22 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.77 us (73.2%)
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 | 6.3377e+05 | 262144 | 1 | 4.136e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.871323992025136 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5189820725824645, dt = 0.0015937257898329762
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.8%)
patch tree reduce : 1914.00 ns (0.5%)
gen split merge : 1223.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 961.00 ns (0.2%)
LB compute : 390.39 us (94.8%)
LB move op cnt : 0
LB apply : 3.67 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.70 us (72.3%)
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 | 6.3356e+05 | 262144 | 1 | 4.138e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.86646172735639 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5205757983722976, dt = 0.0015936910435340227
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (0.3%)
patch tree reduce : 2.18 us (0.1%)
gen split merge : 1252.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 952.00 ns (0.0%)
LB compute : 2.67 ms (99.2%)
LB move op cnt : 0
LB apply : 4.48 us (0.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.31 us (74.8%)
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 | 6.2837e+05 | 262144 | 1 | 4.172e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.75246269089707 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5221694894158317, dt = 0.001593655636733416
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1774.00 ns (0.4%)
gen split merge : 972.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.2%)
LB compute : 402.11 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.98 us (76.0%)
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 | 6.3333e+05 | 262144 | 1 | 4.139e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.860653962270096 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5237631450525653, dt = 0.0015936194964937176
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.8%)
patch tree reduce : 1823.00 ns (0.5%)
gen split merge : 952.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 942.00 ns (0.2%)
LB compute : 380.66 us (94.8%)
LB move op cnt : 0
LB apply : 3.79 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.77 us (74.6%)
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 | 6.3305e+05 | 262144 | 1 | 4.141e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.854418161758002 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5253567645490589, dt = 0.0015935825462048588
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 2.14 us (0.6%)
gen split merge : 942.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 932.00 ns (0.2%)
LB compute : 354.44 us (94.5%)
LB move op cnt : 0
LB apply : 3.95 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.50 us (76.5%)
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 | 6.3486e+05 | 262144 | 1 | 4.129e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.89363454553877 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5269503470952637, dt = 0.0015935447174811406
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.16 us (1.7%)
patch tree reduce : 1983.00 ns (0.5%)
gen split merge : 1142.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.2%)
LB compute : 410.95 us (95.0%)
LB move op cnt : 0
LB apply : 3.88 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.00 us (73.7%)
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 | 6.3384e+05 | 262144 | 1 | 4.136e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.870936583024118 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5285438918127447, dt = 0.0015935059571496838
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.5%)
patch tree reduce : 2.19 us (0.5%)
gen split merge : 951.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 871.00 ns (0.2%)
LB compute : 407.85 us (95.2%)
LB move op cnt : 0
LB apply : 3.91 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.88 us (74.7%)
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 | 6.3333e+05 | 262144 | 1 | 4.139e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.859557094652779 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5301373977698944, dt = 0.0015934662295274092
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.05 us (1.9%)
patch tree reduce : 1813.00 ns (0.5%)
gen split merge : 1102.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 872.00 ns (0.2%)
LB compute : 351.11 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.88 us (75.5%)
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 | 6.3303e+05 | 262144 | 1 | 4.141e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.852498347857086 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5317308639994218, dt = 0.001593425514978418
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (0.5%)
patch tree reduce : 2.20 us (0.2%)
gen split merge : 952.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 1002.00 ns (0.1%)
LB compute : 1408.10 us (98.5%)
LB move op cnt : 0
LB apply : 3.90 us (0.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.20 us (74.2%)
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 | 6.3287e+05 | 262144 | 1 | 4.142e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.848587478531055 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5333242895144001, dt = 0.0015933838059443558
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (0.4%)
patch tree reduce : 1923.00 ns (0.1%)
gen split merge : 1031.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 961.00 ns (0.1%)
LB compute : 1687.93 us (98.8%)
LB move op cnt : 0
LB apply : 3.45 us (0.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.88 us (75.0%)
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 | 6.2203e+05 | 262144 | 1 | 4.214e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.61108487469284 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5349176733203445, dt = 0.0015933411021386479
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (0.1%)
patch tree reduce : 1963.00 ns (0.0%)
gen split merge : 982.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 1172.00 ns (0.0%)
LB compute : 6.16 ms (99.6%)
LB move op cnt : 0
LB apply : 4.04 us (0.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.26 us (76.3%)
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 | 6.2024e+05 | 262144 | 1 | 4.227e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.571566657151314 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5365110144224832, dt = 0.0015932974064978222
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1733.00 ns (0.4%)
gen split merge : 972.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 892.00 ns (0.2%)
LB compute : 416.12 us (95.3%)
LB move op cnt : 0
LB apply : 4.04 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.22 us (77.3%)
Info: cfl dt = 0.0015932527229285513 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 6.2089e+05 | 262144 | 1 | 4.222e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.58536399485897 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.538104311828981, dt = 0.0015932527229285513
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1833.00 ns (0.5%)
gen split merge : 1113.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1132.00 ns (0.3%)
LB compute : 366.08 us (94.5%)
LB move op cnt : 0
LB apply : 4.19 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.46 us (74.7%)
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 | 6.3244e+05 | 262144 | 1 | 4.145e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.837842969069033 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5396975645519095, dt = 0.0015932070556863693
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1813.00 ns (0.5%)
gen split merge : 982.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 971.00 ns (0.3%)
LB compute : 345.77 us (94.5%)
LB move op cnt : 0
LB apply : 3.49 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.79 us (73.2%)
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 | 6.1098e+05 | 262144 | 1 | 4.291e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.367816239430079 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5412907716075959, dt = 0.0015931604104602935
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.6%)
patch tree reduce : 1894.00 ns (0.4%)
gen split merge : 981.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 912.00 ns (0.2%)
LB compute : 402.26 us (95.1%)
LB move op cnt : 0
LB apply : 4.03 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.43 us (77.7%)
Info: cfl dt = 0.00159311279611975 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 6.3116e+05 | 262144 | 1 | 4.153e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.808910702689039 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.542883932018056, dt = 0.00159311279611975
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1834.00 ns (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 : 387.39 us (95.0%)
LB move op cnt : 0
LB apply : 3.69 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.27 us (74.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 | 6.3314e+05 | 262144 | 1 | 4.140e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.851822464522668 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5444770448141758, dt = 0.0015930642259050715
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.1%)
patch tree reduce : 2.14 us (0.4%)
gen split merge : 952.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 942.00 ns (0.2%)
LB compute : 588.76 us (96.6%)
LB move op cnt : 0
LB apply : 3.80 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.12 us (76.4%)
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 | 6.2552e+05 | 262144 | 1 | 4.191e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.684723462589716 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5460701090400808, dt = 0.0015930147174948567
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 2.05 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 : 367.68 us (94.8%)
LB move op cnt : 0
LB apply : 3.46 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.90 us (75.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 | 6.3296e+05 | 262144 | 1 | 4.142e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.847128115866862 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5476631237575758, dt = 0.0015929642923424114
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.8%)
patch tree reduce : 2.04 us (0.5%)
gen split merge : 932.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1353.00 ns (0.3%)
LB compute : 383.49 us (94.7%)
LB move op cnt : 0
LB apply : 3.70 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.07 us (76.7%)
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.3380e+05 | 262144 | 1 | 4.136e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.865124834236216 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5492560880499182, dt = 0.0015929129749010188
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1843.00 ns (0.5%)
gen split merge : 952.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.2%)
LB compute : 375.94 us (94.7%)
LB move op cnt : 0
LB apply : 3.91 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.31 us (76.2%)
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 | 6.3241e+05 | 262144 | 1 | 4.145e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.834084935904839 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5508490010248193, dt = 0.0015928607920823153
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1813.00 ns (0.5%)
gen split merge : 972.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 952.00 ns (0.3%)
LB compute : 348.61 us (94.3%)
LB move op cnt : 0
LB apply : 3.91 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.30 us (73.2%)
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 | 6.3168e+05 | 262144 | 1 | 4.150e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.817718512688014 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5524418618169016, dt = 0.0015928077733925146
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1843.00 ns (0.5%)
gen split merge : 942.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 951.00 ns (0.2%)
LB compute : 363.97 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.16 us (75.8%)
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 | 6.1106e+05 | 262144 | 1 | 4.290e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.366295660997173 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.554034669590294, dt = 0.0015927539506330663
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.6%)
patch tree reduce : 2.03 us (0.5%)
gen split merge : 942.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 892.00 ns (0.2%)
LB compute : 412.62 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 (75.0%)
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 | 6.2258e+05 | 262144 | 1 | 4.211e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.617777856191172 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.555627423540927, dt = 0.001592699358407336
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (0.5%)
patch tree reduce : 1653.00 ns (0.2%)
gen split merge : 471.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 812.00 ns (0.1%)
LB compute : 1066.68 us (98.2%)
LB move op cnt : 0
LB apply : 3.76 us (0.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.05 us (76.8%)
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 | 5.1900e+05 | 262144 | 1 | 5.051e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11.35167870296486 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5572201228993345, dt = 0.0015926440393029268
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (0.1%)
patch tree reduce : 1964.00 ns (0.0%)
gen split merge : 951.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 912.00 ns (0.0%)
LB compute : 6.19 ms (99.7%)
LB move op cnt : 0
LB apply : 4.01 us (0.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.98 us (75.6%)
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 | 5.9499e+05 | 262144 | 1 | 4.406e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.013423350986955 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5588127669386376, dt = 0.0015925880433467871
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.0%)
patch tree reduce : 1823.00 ns (0.3%)
gen split merge : 942.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 882.00 ns (0.1%)
LB compute : 687.79 us (96.9%)
LB move op cnt : 0
LB apply : 4.40 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.13 us (74.8%)
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 | 6.3164e+05 | 262144 | 1 | 4.150e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.814522033416628 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5604053549819843, dt = 0.0015925314258052657
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (0.1%)
patch tree reduce : 2.25 us (0.0%)
gen split merge : 972.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.0%)
LB compute : 4.84 ms (99.5%)
LB move op cnt : 0
LB apply : 4.38 us (0.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.49 us (81.3%)
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.1567e+05 | 262144 | 1 | 4.258e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.464840493214624 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5619978864077895, dt = 0.0015924742472393622
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 2.10 us (0.5%)
gen split merge : 1242.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 971.00 ns (0.2%)
LB compute : 369.97 us (94.4%)
LB move op cnt : 0
LB apply : 4.38 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.04 us (74.6%)
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 | 6.3461e+05 | 262144 | 1 | 4.131e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.878423144184984 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5635903606550288, dt = 0.0015924165729947048
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (0.5%)
patch tree reduce : 2.01 us (0.1%)
gen split merge : 1272.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 961.00 ns (0.1%)
LB compute : 1350.88 us (98.4%)
LB move op cnt : 0
LB apply : 4.17 us (0.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.34 us (77.6%)
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 | 6.2951e+05 | 262144 | 1 | 4.164e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.766416565058531 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5651827772280236, dt = 0.001592358471339297
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 2.17 us (0.5%)
gen split merge : 941.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1272.00 ns (0.3%)
LB compute : 379.80 us (94.5%)
LB move op cnt : 0
LB apply : 4.16 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.47 us (77.4%)
Info: cfl dt = 0.0015923000107649673 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 6.2751e+05 | 262144 | 1 | 4.177e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.722310382781565 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5667751356993629, dt = 0.0015923000107649673
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1803.00 ns (0.5%)
gen split merge : 942.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 952.00 ns (0.2%)
LB compute : 366.08 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.98 us (75.8%)
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 | 6.3019e+05 | 262144 | 1 | 4.160e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.78024841832108 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5683674357101278, dt = 0.0015922412571130564
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (1.9%)
patch tree reduce : 1773.00 ns (0.5%)
gen split merge : 1233.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.3%)
LB compute : 359.87 us (94.5%)
LB move op cnt : 0
LB apply : 3.43 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.98 us (75.8%)
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.3191e+05 | 262144 | 1 | 4.148e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.817379949380213 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5699596769672408, dt = 0.0015921822709948025
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 2.30 us (0.6%)
gen split merge : 1182.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 952.00 ns (0.3%)
LB compute : 338.31 us (94.1%)
LB move op cnt : 0
LB apply : 4.23 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.22 us (74.5%)
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 | 6.2244e+05 | 262144 | 1 | 4.212e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.609799207237057 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5715518592382356, dt = 0.0015921231059621544
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1723.00 ns (0.4%)
gen split merge : 942.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 892.00 ns (0.2%)
LB compute : 396.82 us (95.3%)
LB move op cnt : 0
LB apply : 3.65 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.35 us (70.4%)
Info: cfl dt = 0.0015920638077376746 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 6.1654e+05 | 262144 | 1 | 4.252e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.480376252782884 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5731439823441977, dt = 0.0015920638077376746
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (1.3%)
patch tree reduce : 1913.00 ns (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 : 534.54 us (96.1%)
LB move op cnt : 0
LB apply : 3.92 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.85 us (72.5%)
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 | 6.2508e+05 | 262144 | 1 | 4.194e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.666642729036635 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5747360461519353, dt = 0.0015920044140318014
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.6%)
patch tree reduce : 1783.00 ns (0.4%)
gen split merge : 961.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 891.00 ns (0.2%)
LB compute : 424.36 us (95.4%)
LB move op cnt : 0
LB apply : 3.66 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.60 us (73.6%)
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 | 6.1777e+05 | 262144 | 1 | 4.243e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.50626421496841 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5763280505659671, dt = 0.0015919449547474058
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 23.08 us (5.5%)
patch tree reduce : 1933.00 ns (0.5%)
gen split merge : 1142.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1172.00 ns (0.3%)
LB compute : 384.13 us (91.1%)
LB move op cnt : 0
LB apply : 3.55 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.62 us (74.4%)
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 | 6.3193e+05 | 262144 | 1 | 4.148e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.815366204454287 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5779199955207146, dt = 0.0015918854525264268
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (0.6%)
patch tree reduce : 1664.00 ns (0.1%)
gen split merge : 1313.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.1%)
LB compute : 1221.95 us (98.3%)
LB move op cnt : 0
LB apply : 3.77 us (0.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.73 us (74.9%)
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 | 5.8786e+05 | 262144 | 1 | 4.459e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12.851292345111766 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5795118809732411, dt = 0.0015918259237131622
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (0.3%)
patch tree reduce : 2.12 us (0.1%)
gen split merge : 952.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 861.00 ns (0.0%)
LB compute : 2.26 ms (99.1%)
LB move op cnt : 0
LB apply : 3.73 us (0.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.06 us (76.5%)
Info: cfl dt = 0.001591766379735805 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 6.2405e+05 | 262144 | 1 | 4.201e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.64187683982032 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5811037068969542, dt = 0.001591766379735805
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.6%)
patch tree reduce : 1784.00 ns (0.4%)
gen split merge : 951.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1002.00 ns (0.2%)
LB compute : 396.05 us (95.1%)
LB move op cnt : 0
LB apply : 3.57 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.13 us (77.4%)
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 | 6.2933e+05 | 262144 | 1 | 4.165e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.756837081751936 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.58269547327669, dt = 0.0015917068287792584
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1954.00 ns (0.5%)
gen split merge : 962.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 892.00 ns (0.2%)
LB compute : 379.55 us (94.8%)
LB move op cnt : 0
LB apply : 3.81 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.00 us (75.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 | 6.0548e+05 | 262144 | 1 | 4.329e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.235133790742482 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5842871801054692, dt = 0.0015916472775084412
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.1%)
patch tree reduce : 1853.00 ns (0.3%)
gen split merge : 962.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 871.00 ns (0.1%)
LB compute : 606.93 us (96.7%)
LB move op cnt : 0
LB apply : 4.05 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.20 us (77.0%)
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 | 6.0422e+05 | 262144 | 1 | 4.339e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.207078636525038 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5858788273829776, dt = 0.001591587732813977
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.5%)
patch tree reduce : 1904.00 ns (0.4%)
gen split merge : 952.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 942.00 ns (0.2%)
LB compute : 418.08 us (95.4%)
LB move op cnt : 0
LB apply : 3.34 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.13 us (71.9%)
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 | 6.1180e+05 | 262144 | 1 | 4.285e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.37228496946492 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5874704151157915, dt = 2.958488420845562e-05
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.7%)
patch tree reduce : 1793.00 ns (0.4%)
gen split merge : 982.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1263.00 ns (0.3%)
LB compute : 387.34 us (95.0%)
LB move op cnt : 0
LB apply : 3.39 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.41 us (70.9%)
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 | 6.1643e+05 | 262144 | 1 | 4.253e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 0.2504492392328033 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 441.00107149200005 (s) [Godunov][rank=0]
Info: dump to _to_trash/ramses_kh/periodic_0013.vtk [VTK Dump][rank=0]
- took 52.56 ms, bandwidth = 742.01 MB/s
amr::Godunov: t = 1.5875, dt = 0.0015915268568731417
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (0.2%)
patch tree reduce : 1863.00 ns (0.1%)
gen split merge : 972.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.0%)
LB compute : 3.29 ms (99.4%)
LB move op cnt : 0
LB apply : 3.99 us (0.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.56 us (73.5%)
Info: cfl dt = 0.0015914671761291658 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 6.0622e+05 | 262144 | 1 | 4.324e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.249656394997617 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.589091526856873, dt = 0.0015914671761291658
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.7%)
patch tree reduce : 1743.00 ns (0.4%)
gen split merge : 952.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 862.00 ns (0.2%)
LB compute : 404.90 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.81 us (68.9%)
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 | 6.1065e+05 | 262144 | 1 | 4.293e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.346138801660334 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5906829940330023, dt = 0.001591407681628507
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (0.3%)
patch tree reduce : 1844.00 ns (0.1%)
gen split merge : 931.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 871.00 ns (0.0%)
LB compute : 2.13 ms (99.0%)
LB move op cnt : 0
LB apply : 4.01 us (0.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.97 us (73.1%)
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.2429e+05 | 262144 | 1 | 4.199e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.643728517677713 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5922744017146309, dt = 0.001591348311316017
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1853.00 ns (0.5%)
gen split merge : 941.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1202.00 ns (0.3%)
LB compute : 373.44 us (94.6%)
LB move op cnt : 0
LB apply : 4.15 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.04 us (77.5%)
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.2534e+05 | 262144 | 1 | 4.192e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.666184492755278 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5938657500259468, dt = 0.0015912890731586962
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.32 us (1.8%)
patch tree reduce : 1954.00 ns (0.5%)
gen split merge : 1283.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.2%)
LB compute : 379.07 us (94.5%)
LB move op cnt : 0
LB apply : 4.08 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.40 us (70.8%)
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.2854e+05 | 262144 | 1 | 4.171e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.735477186601083 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5954570390991054, dt = 0.001591229978032674
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.76 us (1.9%)
patch tree reduce : 1773.00 ns (0.4%)
gen split merge : 1142.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 971.00 ns (0.2%)
LB compute : 381.29 us (94.6%)
LB move op cnt : 0
LB apply : 3.83 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.83 us (74.1%)
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.2736e+05 | 262144 | 1 | 4.179e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.709217946003543 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5970482690771381, dt = 0.0015911710421292037
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (0.1%)
patch tree reduce : 1823.00 ns (0.0%)
gen split merge : 1132.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 1302.00 ns (0.0%)
LB compute : 4.79 ms (99.6%)
LB move op cnt : 0
LB apply : 4.44 us (0.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.94 us (75.9%)
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 | 6.1855e+05 | 262144 | 1 | 4.238e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.516272091839978 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.5986394401192674, dt = 0.0015911122806988311
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (0.4%)
patch tree reduce : 1793.00 ns (0.1%)
gen split merge : 1042.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.1%)
LB compute : 1790.25 us (98.8%)
LB move op cnt : 0
LB apply : 4.24 us (0.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.43 us (78.0%)
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 | 6.2943e+05 | 262144 | 1 | 4.165e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.753374521736337 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6002305523999663, dt = 0.0015910537040566418
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (0.1%)
patch tree reduce : 1944.00 ns (0.0%)
gen split merge : 902.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 942.00 ns (0.0%)
LB compute : 6.13 ms (99.7%)
LB move op cnt : 0
LB apply : 4.16 us (0.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.00 us (75.1%)
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.1641e+05 | 262144 | 1 | 4.253e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.468526226057067 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.601821606104023, dt = 0.0015909953168694877
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (0.4%)
patch tree reduce : 1994.00 ns (0.1%)
gen split merge : 932.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 1212.00 ns (0.1%)
LB compute : 1522.22 us (98.6%)
LB move op cnt : 0
LB apply : 4.14 us (0.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.85 us (73.4%)
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 | 6.2175e+05 | 262144 | 1 | 4.216e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.584508351298078 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6034126014208925, dt = 0.0015909371202782018
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1983.00 ns (0.5%)
gen split merge : 1293.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.2%)
LB compute : 380.09 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.69 us (73.8%)
Info: cfl dt = 0.0015908791155161534 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 6.3278e+05 | 262144 | 1 | 4.143e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.825027758930494 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6050035385411707, dt = 0.0015908791155161534
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.0%)
patch tree reduce : 1783.00 ns (0.2%)
gen split merge : 942.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 952.00 ns (0.1%)
LB compute : 704.49 us (97.1%)
LB move op cnt : 0
LB apply : 3.71 us (0.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.92 us (73.7%)
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 | 6.2884e+05 | 262144 | 1 | 4.169e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.73860375399663 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6065944176566869, dt = 0.0015908213075947343
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.6%)
patch tree reduce : 1994.00 ns (0.5%)
gen split merge : 1062.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 882.00 ns (0.2%)
LB compute : 413.62 us (95.1%)
LB move op cnt : 0
LB apply : 3.68 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.34 us (74.3%)
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 | 6.2171e+05 | 262144 | 1 | 4.217e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.582187709926025 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6081852389642817, dt = 0.0015907637080012852
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1953.00 ns (0.5%)
gen split merge : 971.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1172.00 ns (0.3%)
LB compute : 387.20 us (95.0%)
LB move op cnt : 0
LB apply : 3.79 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.86 us (74.8%)
Info: cfl dt = 0.0015907063358996825 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 6.3442e+05 | 262144 | 1 | 4.132e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.85935285069726 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.609776002672283, dt = 0.0015907063358996825
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1723.00 ns (0.5%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.3%)
LB compute : 355.23 us (94.6%)
LB move op cnt : 0
LB apply : 3.63 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.90 us (73.9%)
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 | 6.3643e+05 | 262144 | 1 | 4.119e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.902812377322787 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6113667090081827, dt = 0.0015906492177947705
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (0.3%)
patch tree reduce : 1824.00 ns (0.1%)
gen split merge : 942.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 1292.00 ns (0.1%)
LB compute : 2.34 ms (99.1%)
LB move op cnt : 0
LB apply : 3.60 us (0.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.35 us (76.3%)
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.2512e+05 | 262144 | 1 | 4.193e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.655304963920612 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6129573582259775, dt = 0.001590592385958255
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (0.6%)
patch tree reduce : 1924.00 ns (0.2%)
gen split merge : 941.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 991.00 ns (0.1%)
LB compute : 1050.91 us (98.1%)
LB move op cnt : 0
LB apply : 3.75 us (0.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.88 us (74.1%)
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 | 6.2381e+05 | 262144 | 1 | 4.202e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.626184760703898 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6145479506119358, dt = 0.0015905358760676415
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 2.22 us (0.6%)
gen split merge : 932.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1032.00 ns (0.3%)
LB compute : 359.48 us (94.7%)
LB move op cnt : 0
LB apply : 3.60 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.81 us (74.3%)
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 | 6.3326e+05 | 262144 | 1 | 4.140e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.832104165631764 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6161384864880035, dt = 0.001590479724650708
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (0.2%)
patch tree reduce : 1733.00 ns (0.0%)
gen split merge : 942.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 872.00 ns (0.0%)
LB compute : 3.61 ms (99.5%)
LB move op cnt : 0
LB apply : 3.44 us (0.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.36 us (71.9%)
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 | 6.2117e+05 | 262144 | 1 | 4.220e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.567650279056696 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6177289662126542, dt = 0.001590423966663734
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (0.1%)
patch tree reduce : 1774.00 ns (0.0%)
gen split merge : 1132.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 1213.00 ns (0.0%)
LB compute : 6.12 ms (99.6%)
LB move op cnt : 0
LB apply : 4.18 us (0.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.35 us (66.2%)
Info: cfl dt = 0.0015903686347135443 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 6.1101e+05 | 262144 | 1 | 4.290e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.345168364613382 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.619319390179318, dt = 0.0015903686347135443
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 2.04 us (0.6%)
gen split merge : 942.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1212.00 ns (0.3%)
LB compute : 339.19 us (94.2%)
LB move op cnt : 0
LB apply : 3.72 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.00 us (75.9%)
Info: cfl dt = 0.0015903137557810444 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 6.3069e+05 | 262144 | 1 | 4.156e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.774479894211394 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6209097588140315, dt = 0.0015903137557810444
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.3%)
patch tree reduce : 1853.00 ns (0.3%)
gen split merge : 1263.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 851.00 ns (0.2%)
LB compute : 523.47 us (96.2%)
LB move op cnt : 0
LB apply : 3.41 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.69 us (73.7%)
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 | 6.2816e+05 | 262144 | 1 | 4.173e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.718732315664354 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6225000725698127, dt = 0.0015902593499170926
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1763.00 ns (0.4%)
gen split merge : 1022.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 872.00 ns (0.2%)
LB compute : 395.33 us (95.0%)
LB move op cnt : 0
LB apply : 4.20 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.89 us (74.2%)
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 | 6.3237e+05 | 262144 | 1 | 4.145e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.81017775313874 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6240903319197297, dt = 0.0015902054314758324
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (0.6%)
patch tree reduce : 1783.00 ns (0.2%)
gen split merge : 1122.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 872.00 ns (0.1%)
LB compute : 1121.02 us (98.2%)
LB move op cnt : 0
LB apply : 3.82 us (0.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.60 us (73.0%)
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 | 6.1712e+05 | 262144 | 1 | 4.248e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.476736555595075 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6256805373512055, dt = 0.0015901520100239084
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.22 us (1.2%)
patch tree reduce : 1873.00 ns (0.3%)
gen split merge : 1062.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 952.00 ns (0.2%)
LB compute : 586.41 us (96.4%)
LB move op cnt : 0
LB apply : 4.03 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.41 us (78.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 | 6.2131e+05 | 262144 | 1 | 4.219e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.567753668466393 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6272706893612294, dt = 0.0015900990913423343
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.9%)
patch tree reduce : 2.09 us (0.6%)
gen split merge : 992.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 861.00 ns (0.2%)
LB compute : 348.06 us (94.2%)
LB move op cnt : 0
LB apply : 3.76 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.75 us (73.7%)
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 | 6.3051e+05 | 262144 | 1 | 4.158e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.768235940340446 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6288607884525719, dt = 0.001590046678478888
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1884.00 ns (0.5%)
gen split merge : 1282.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.2%)
LB compute : 379.89 us (94.7%)
LB move op cnt : 0
LB apply : 3.70 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.69 us (73.8%)
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 | 6.3331e+05 | 262144 | 1 | 4.139e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.828838614841938 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6304508351310507, dt = 0.001589994772302053
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1924.00 ns (0.5%)
gen split merge : 972.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 872.00 ns (0.2%)
LB compute : 345.71 us (94.4%)
LB move op cnt : 0
LB apply : 3.94 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.46 us (75.1%)
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 | 6.3368e+05 | 262144 | 1 | 4.137e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.836611666939243 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6320408299033529, dt = 0.0015899433722952098
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1943.00 ns (0.5%)
gen split merge : 972.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1011.00 ns (0.3%)
LB compute : 353.52 us (94.5%)
LB move op cnt : 0
LB apply : 3.62 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.39 us (72.9%)
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 | 6.3387e+05 | 262144 | 1 | 4.136e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.840199663120238 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.633630773275648, dt = 0.0015898925694677617
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 2.21 us (0.6%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 952.00 ns (0.3%)
LB compute : 351.19 us (94.4%)
LB move op cnt : 0
LB apply : 3.78 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.10 us (76.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 | 6.3316e+05 | 262144 | 1 | 4.140e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.824217906896624 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6352206658451158, dt = 0.0015898423063823387
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.23 us (0.5%)
patch tree reduce : 1653.00 ns (0.1%)
gen split merge : 952.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 1162.00 ns (0.1%)
LB compute : 1557.40 us (98.6%)
LB move op cnt : 0
LB apply : 3.95 us (0.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.24 us (77.8%)
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 | 6.2608e+05 | 262144 | 1 | 4.187e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.669335349208788 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.636810508151498, dt = 0.001589792548670384
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.1%)
patch tree reduce : 1953.00 ns (0.3%)
gen split merge : 942.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 912.00 ns (0.1%)
LB compute : 623.58 us (96.7%)
LB move op cnt : 0
LB apply : 4.45 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.90 us (75.1%)
Info: cfl dt = 0.0015897432723103353 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 6.1958e+05 | 262144 | 1 | 4.231e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.526999190489658 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6384003007001684, dt = 0.0015897432723103353
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (0.1%)
patch tree reduce : 1883.00 ns (0.0%)
gen split merge : 972.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 952.00 ns (0.0%)
LB compute : 6.45 ms (99.7%)
LB move op cnt : 0
LB apply : 4.12 us (0.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.71 us (79.4%)
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 | 6.0931e+05 | 262144 | 1 | 4.302e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.302397568908061 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6399900439724788, dt = 0.0015896944572158264
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.6%)
patch tree reduce : 1844.00 ns (0.4%)
gen split merge : 1091.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.2%)
LB compute : 413.16 us (95.1%)
LB move op cnt : 0
LB apply : 3.76 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.77 us (75.0%)
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 | 6.2555e+05 | 262144 | 1 | 4.191e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.656519650746976 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6415797384296946, dt = 0.0015896461547985317
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.32 us (0.2%)
patch tree reduce : 1743.00 ns (0.1%)
gen split merge : 1162.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.0%)
LB compute : 3.11 ms (99.3%)
LB move op cnt : 0
LB apply : 3.72 us (0.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.84 us (73.5%)
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 | 6.2150e+05 | 262144 | 1 | 4.218e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.567585883359518 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6431693845844932, dt = 0.0015895984085979426
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (0.8%)
patch tree reduce : 2.15 us (0.2%)
gen split merge : 982.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 1062.00 ns (0.1%)
LB compute : 953.06 us (97.7%)
LB move op cnt : 0
LB apply : 4.21 us (0.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.77 us (72.6%)
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 | 6.2559e+05 | 262144 | 1 | 4.190e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.656419357345174 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.644758982993091, dt = 0.001589551209594974
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 2.31 us (0.6%)
gen split merge : 942.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 911.00 ns (0.2%)
LB compute : 369.20 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.91 us (73.4%)
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 | 6.3185e+05 | 262144 | 1 | 4.149e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.79284764401086 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.646348534202686, dt = 0.0015895045301006561
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.9%)
patch tree reduce : 1823.00 ns (0.5%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 942.00 ns (0.3%)
LB compute : 327.86 us (94.2%)
LB move op cnt : 0
LB apply : 3.70 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.90 us (69.0%)
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 | 6.2355e+05 | 262144 | 1 | 4.204e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.611204509247667 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6479380387327867, dt = 0.0015894583365969814
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (0.1%)
patch tree reduce : 2.27 us (0.0%)
gen split merge : 1182.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 1082.00 ns (0.0%)
LB compute : 6.29 ms (99.6%)
LB move op cnt : 0
LB apply : 4.83 us (0.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.68 us (71.0%)
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 | 6.1551e+05 | 262144 | 1 | 4.259e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.43530721844673 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6495274970693836, dt = 0.0015894125999430244
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.8%)
patch tree reduce : 1923.00 ns (0.5%)
gen split merge : 1242.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1022.00 ns (0.3%)
LB compute : 370.40 us (94.7%)
LB move op cnt : 0
LB apply : 3.65 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.62 us (71.0%)
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 | 5.1758e+05 | 262144 | 1 | 5.065e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11.297397123498875 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6511169096693266, dt = 0.0015893672934366332
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1893.00 ns (0.4%)
gen split merge : 1122.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 861.00 ns (0.2%)
LB compute : 401.41 us (95.1%)
LB move op cnt : 0
LB apply : 3.75 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.81 us (74.7%)
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 | 6.2740e+05 | 262144 | 1 | 4.178e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.694017344996666 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6527062769627632, dt = 0.001589322388745958
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.26 us (2.0%)
patch tree reduce : 2.18 us (0.6%)
gen split merge : 942.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 952.00 ns (0.3%)
LB compute : 339.51 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.88 us (74.2%)
Info: cfl dt = 0.0015892778535022446 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 6.3354e+05 | 262144 | 1 | 4.138e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.827649558065602 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6542955993515092, dt = 0.0015892778535022446
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1913.00 ns (0.5%)
gen split merge : 922.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.3%)
LB compute : 351.56 us (94.4%)
LB move op cnt : 0
LB apply : 4.24 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.01 us (75.2%)
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 | 6.3524e+05 | 262144 | 1 | 4.127e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.864301279942376 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6558848772050114, dt = 0.001589233649414269
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.6%)
patch tree reduce : 1964.00 ns (0.5%)
gen split merge : 1042.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 902.00 ns (0.2%)
LB compute : 401.65 us (95.2%)
LB move op cnt : 0
LB apply : 3.46 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.58 us (73.1%)
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 | 6.2506e+05 | 262144 | 1 | 4.194e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.64186399649955 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6574741108544258, dt = 0.00158918973264957
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.8%)
patch tree reduce : 1894.00 ns (0.5%)
gen split merge : 1283.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.3%)
LB compute : 356.38 us (94.3%)
LB move op cnt : 0
LB apply : 4.07 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.92 us (73.9%)
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 | 6.3225e+05 | 262144 | 1 | 4.146e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.798350693256733 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6590633005870754, dt = 0.001589146053909854
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (0.3%)
patch tree reduce : 2.19 us (0.1%)
gen split merge : 932.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 1021.00 ns (0.0%)
LB compute : 2.27 ms (99.1%)
LB move op cnt : 0
LB apply : 3.59 us (0.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.06 us (73.9%)
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 | 6.2746e+05 | 262144 | 1 | 4.178e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.693447888562204 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6606524466409853, dt = 0.0015891025585169744
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1704.00 ns (0.4%)
gen split merge : 951.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 951.00 ns (0.2%)
LB compute : 371.62 us (94.8%)
LB move op cnt : 0
LB apply : 3.40 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.88 us (72.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 | 6.2470e+05 | 262144 | 1 | 4.196e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.632869538813367 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6622415491995024, dt = 0.001589059183607506
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1924.00 ns (0.5%)
gen split merge : 932.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 881.00 ns (0.2%)
LB compute : 334.81 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.73 us (74.4%)
Info: cfl dt = 0.0015890158599363505 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 6.3396e+05 | 262144 | 1 | 4.135e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.834450343029117 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6638306083831098, dt = 0.0015890158599363505
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.8%)
patch tree reduce : 2.08 us (0.5%)
gen split merge : 972.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 952.00 ns (0.2%)
LB compute : 361.63 us (94.5%)
LB move op cnt : 0
LB apply : 3.79 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.23 us (75.8%)
Info: cfl dt = 0.0015889725390866207 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 6.3241e+05 | 262144 | 1 | 4.145e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.800319718137727 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6654196242430461, dt = 0.0015889725390866207
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1753.00 ns (0.4%)
gen split merge : 18.40 us (4.5%)
split / merge op : 0/0
apply split merge : 1192.00 ns (0.3%)
LB compute : 373.29 us (90.8%)
LB move op cnt : 0
LB apply : 3.93 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.92 us (74.5%)
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 | 6.2870e+05 | 262144 | 1 | 4.170e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.71891323184189 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6670085967821326, dt = 0.0015889292251410776
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.0%)
patch tree reduce : 1724.00 ns (0.5%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1002.00 ns (0.3%)
LB compute : 346.86 us (94.3%)
LB move op cnt : 0
LB apply : 3.53 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.69 us (72.9%)
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 | 6.2946e+05 | 262144 | 1 | 4.165e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.73524653282705 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6685975260072736, dt = 0.0015888859185134367
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.7%)
patch tree reduce : 1944.00 ns (0.5%)
gen split merge : 1092.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 852.00 ns (0.2%)
LB compute : 391.81 us (94.9%)
LB move op cnt : 0
LB apply : 3.64 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.20 us (77.0%)
Info: cfl dt = 0.0015888425827464685 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 6.3401e+05 | 262144 | 1 | 4.135e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.834139905059583 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.670186411925787, dt = 0.0015888425827464685
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (0.9%)
patch tree reduce : 1703.00 ns (0.2%)
gen split merge : 992.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 942.00 ns (0.1%)
LB compute : 702.88 us (97.1%)
LB move op cnt : 0
LB apply : 4.59 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.91 us (79.9%)
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 | 6.3237e+05 | 262144 | 1 | 4.145e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.798015448590816 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6717752545085334, dt = 0.0015887991583559784
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1813.00 ns (0.5%)
gen split merge : 922.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 952.00 ns (0.2%)
LB compute : 373.45 us (94.8%)
LB move op cnt : 0
LB apply : 4.04 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.85 us (73.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 | 6.3373e+05 | 262144 | 1 | 4.136e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.827347935128735 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6733640536668895, dt = 0.0015887555663731277
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.7%)
patch tree reduce : 2.02 us (0.5%)
gen split merge : 1263.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.2%)
LB compute : 380.53 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.48 us (79.0%)
Info: cfl dt = 0.0015887117126455186 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 6.3377e+05 | 262144 | 1 | 4.136e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.82774486668622 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6749528092332626, dt = 0.0015887117126455186
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1723.00 ns (0.4%)
gen split merge : 981.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 942.00 ns (0.2%)
LB compute : 363.35 us (94.8%)
LB move op cnt : 0
LB apply : 3.57 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.98 us (74.7%)
Info: cfl dt = 0.0015886674935914735 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 6.3243e+05 | 262144 | 1 | 4.145e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.798177564400065 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.676541520945908, dt = 0.0015886674935914735
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1793.00 ns (0.5%)
gen split merge : 992.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 932.00 ns (0.2%)
LB compute : 375.78 us (94.7%)
LB move op cnt : 0
LB apply : 4.18 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.15 us (75.5%)
Info: cfl dt = 0.0015886228034629993 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 6.3341e+05 | 262144 | 1 | 4.139e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.819207387172693 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6781301884394995, dt = 0.0015886228034629993
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1864.00 ns (0.5%)
gen split merge : 952.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 881.00 ns (0.2%)
LB compute : 392.24 us (95.1%)
LB move op cnt : 0
LB apply : 3.60 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.10 us (75.7%)
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 | 6.3041e+05 | 262144 | 1 | 4.158e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.753307232334635 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6797188112429624, dt = 0.0015885775498870381
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.8%)
patch tree reduce : 1733.00 ns (0.4%)
gen split merge : 942.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.2%)
LB compute : 377.25 us (94.7%)
LB move op cnt : 0
LB apply : 3.79 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.96 us (73.8%)
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 | 6.2775e+05 | 262144 | 1 | 4.176e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.694813336058056 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6813073887928494, dt = 0.0015885316484320886
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.15 us (1.8%)
patch tree reduce : 2.00 us (0.5%)
gen split merge : 932.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 892.00 ns (0.2%)
LB compute : 378.45 us (94.7%)
LB move op cnt : 0
LB apply : 3.77 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.75 us (74.9%)
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 | 6.2695e+05 | 262144 | 1 | 4.181e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.677010588196763 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6828959204412814, dt = 0.0015884850222556194
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1914.00 ns (0.5%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.3%)
LB compute : 332.01 us (94.3%)
LB move op cnt : 0
LB apply : 3.47 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.44 us (76.2%)
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 | 6.3071e+05 | 262144 | 1 | 4.156e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.758633434103002 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.684484405463537, dt = 0.0015884376027602003
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 2.17 us (0.6%)
gen split merge : 962.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 882.00 ns (0.2%)
LB compute : 356.46 us (94.4%)
LB move op cnt : 0
LB apply : 3.45 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.46 us (75.7%)
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 | 6.3307e+05 | 262144 | 1 | 4.141e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.809607280493605 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6860728430662972, dt = 0.001588389329976528
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (0.3%)
patch tree reduce : 2.26 us (0.1%)
gen split merge : 932.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.0%)
LB compute : 2.25 ms (99.1%)
LB move op cnt : 0
LB apply : 3.79 us (0.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.81 us (74.9%)
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 | 6.2839e+05 | 262144 | 1 | 4.172e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.707209554464395 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6876612323962739, dt = 0.0015883401523641154
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (1.9%)
patch tree reduce : 1853.00 ns (0.5%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 961.00 ns (0.3%)
LB compute : 346.86 us (94.3%)
LB move op cnt : 0
LB apply : 3.52 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.64 us (77.2%)
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 | 6.3034e+05 | 262144 | 1 | 4.159e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.74922011685497 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.689249572548638, dt = 0.0015882900260828807
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (0.1%)
patch tree reduce : 1763.00 ns (0.0%)
gen split merge : 952.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 1192.00 ns (0.0%)
LB compute : 6.14 ms (99.7%)
LB move op cnt : 0
LB apply : 3.67 us (0.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.51 us (75.4%)
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.1559e+05 | 262144 | 1 | 4.258e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.42708528126003 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.690837862574721, dt = 0.0015882389505504112
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.7%)
patch tree reduce : 1923.00 ns (0.4%)
gen split merge : 1051.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1252.00 ns (0.3%)
LB compute : 407.34 us (95.0%)
LB move op cnt : 0
LB apply : 3.78 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.18 us (76.4%)
Info: cfl dt = 0.0015881869035424033 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 6.3218e+05 | 262144 | 1 | 4.147e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.788624455880328 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6924261015252713, dt = 0.0015881869035424033
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 2.42 us (0.6%)
gen split merge : 1002.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 961.00 ns (0.2%)
LB compute : 378.46 us (94.7%)
LB move op cnt : 0
LB apply : 4.13 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.14 us (77.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 | 6.2723e+05 | 262144 | 1 | 4.179e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.680050995626402 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6940142884288136, dt = 0.0015881338193154998
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (0.1%)
patch tree reduce : 2.11 us (0.0%)
gen split merge : 992.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 892.00 ns (0.0%)
LB compute : 6.20 ms (99.7%)
LB move op cnt : 0
LB apply : 4.07 us (0.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.22 us (77.0%)
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 | 6.1697e+05 | 262144 | 1 | 4.249e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.455856514814949 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6956024222481292, dt = 0.0015880796266822409
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1763.00 ns (0.5%)
gen split merge : 952.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.3%)
LB compute : 360.40 us (94.6%)
LB move op cnt : 0
LB apply : 3.73 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.44 us (75.7%)
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 | 6.2931e+05 | 262144 | 1 | 4.166e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.724612222399509 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.6971905018748115, dt = 0.0015880242698695197
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 2.15 us (0.5%)
gen split merge : 962.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.2%)
LB compute : 379.07 us (94.8%)
LB move op cnt : 0
LB apply : 3.94 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.30 us (73.4%)
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 | 6.2670e+05 | 262144 | 1 | 4.183e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.667195113738453 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.698778526144681, dt = 0.0015879677439613845
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.8%)
patch tree reduce : 1964.00 ns (0.5%)
gen split merge : 931.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1022.00 ns (0.3%)
LB compute : 367.14 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.93 us (73.9%)
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 | 6.2557e+05 | 262144 | 1 | 4.191e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.64198801856273 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7003664938886425, dt = 0.0015879099912156727
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (0.6%)
patch tree reduce : 2.17 us (0.2%)
gen split merge : 952.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.1%)
LB compute : 1165.70 us (98.3%)
LB move op cnt : 0
LB apply : 3.79 us (0.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.26 us (77.0%)
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 | 6.2626e+05 | 262144 | 1 | 4.186e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.656631923839772 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7019544038798582, dt = 0.0015878509208028424
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1883.00 ns (0.5%)
gen split merge : 952.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.2%)
LB compute : 378.49 us (94.9%)
LB move op cnt : 0
LB apply : 3.51 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.12 us (73.7%)
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 | 6.2857e+05 | 262144 | 1 | 4.171e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.706417249138747 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7035422548006611, dt = 0.0015877905164214153
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.5%)
patch tree reduce : 1863.00 ns (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 : 408.60 us (95.1%)
LB move op cnt : 0
LB apply : 4.35 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.28 us (75.2%)
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 | 6.1916e+05 | 262144 | 1 | 4.234e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.500837367879761 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7051300453170826, dt = 0.0015877288137113583
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.7%)
patch tree reduce : 1974.00 ns (0.5%)
gen split merge : 1102.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 911.00 ns (0.2%)
LB compute : 382.58 us (94.8%)
LB move op cnt : 0
LB apply : 3.66 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.24 us (73.3%)
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 | 6.3200e+05 | 262144 | 1 | 4.148e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.780212258509163 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.706717774130794, dt = 0.0015876658746308444
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (0.4%)
patch tree reduce : 2.09 us (0.1%)
gen split merge : 931.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 951.00 ns (0.1%)
LB compute : 1681.93 us (98.8%)
LB move op cnt : 0
LB apply : 4.40 us (0.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.26 us (77.2%)
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 | 6.2980e+05 | 262144 | 1 | 4.162e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.73175525670379 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7083054400054247, dt = 0.0015876017664143858
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (0.1%)
patch tree reduce : 2.21 us (0.0%)
gen split merge : 952.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 942.00 ns (0.0%)
LB compute : 6.17 ms (99.7%)
LB move op cnt : 0
LB apply : 3.74 us (0.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.04 us (75.8%)
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.1623e+05 | 262144 | 1 | 4.254e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.435267920555411 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7098930417718392, dt = 0.0015875365483246037
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.7%)
patch tree reduce : 2.17 us (0.5%)
gen split merge : 962.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1213.00 ns (0.3%)
LB compute : 395.90 us (94.9%)
LB move op cnt : 0
LB apply : 3.90 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.08 us (75.8%)
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 | 6.3064e+05 | 262144 | 1 | 4.157e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.748796737867844 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7114805783201639, dt = 0.001587470266014295
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (0.2%)
patch tree reduce : 1933.00 ns (0.0%)
gen split merge : 952.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 882.00 ns (0.0%)
LB compute : 4.23 ms (99.5%)
LB move op cnt : 0
LB apply : 3.78 us (0.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.47 us (76.5%)
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 | 6.2550e+05 | 262144 | 1 | 4.191e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.636225684624632 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7130680485861782, dt = 0.001587402952191479
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 2.11 us (0.5%)
gen split merge : 1073.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 961.00 ns (0.2%)
LB compute : 377.35 us (94.9%)
LB move op cnt : 0
LB apply : 3.79 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.79 us (75.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.2928e+05 | 262144 | 1 | 4.166e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.717982615546457 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7146554515383696, dt = 0.0015873346302292478
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (0.1%)
patch tree reduce : 2.15 us (0.0%)
gen split merge : 962.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.0%)
LB compute : 5.91 ms (99.6%)
LB move op cnt : 0
LB apply : 4.03 us (0.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.02 us (77.0%)
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 | 6.1508e+05 | 262144 | 1 | 4.262e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.40789167301764 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.716242786168599, dt = 0.0015872653095774577
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.36 us (0.9%)
patch tree reduce : 1823.00 ns (0.2%)
gen split merge : 1223.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 952.00 ns (0.1%)
LB compute : 825.93 us (97.5%)
LB move op cnt : 0
LB apply : 3.56 us (0.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.48 us (74.5%)
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.3295e+05 | 262144 | 1 | 4.142e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.796980372273055 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7178300514781764, dt = 0.0015871949758724556
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (0.1%)
patch tree reduce : 1854.00 ns (0.0%)
gen split merge : 952.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 1032.00 ns (0.0%)
LB compute : 6.12 ms (99.7%)
LB move op cnt : 0
LB apply : 3.82 us (0.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.75 us (73.1%)
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 | 6.2012e+05 | 262144 | 1 | 4.227e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.516575205202747 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.719417246454049, dt = 0.00037442021261768765
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (0.1%)
patch tree reduce : 1783.00 ns (0.0%)
gen split merge : 952.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.0%)
LB compute : 6.11 ms (99.7%)
LB move op cnt : 0
LB apply : 4.13 us (0.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.04 us (77.1%)
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.1608e+05 | 262144 | 1 | 4.255e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.167786070731623 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 476.75106483800005 (s) [Godunov][rank=0]
Info: dump to _to_trash/ramses_kh/periodic_0014.vtk [VTK Dump][rank=0]
- took 51.58 ms, bandwidth = 756.08 MB/s
amr::Godunov: t = 1.7197916666666666, dt = 0.0015871063022382713
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.7%)
patch tree reduce : 1723.00 ns (0.4%)
gen split merge : 1042.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.2%)
LB compute : 394.63 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.79 us (73.9%)
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.3076e+05 | 262144 | 1 | 4.156e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.74775839843369 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.721378772968905, dt = 0.001587031072596967
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.3%)
patch tree reduce : 2.09 us (0.4%)
gen split merge : 982.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 932.00 ns (0.2%)
LB compute : 483.85 us (95.8%)
LB move op cnt : 0
LB apply : 4.24 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.04 us (75.3%)
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.2509e+05 | 262144 | 1 | 4.194e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.623479357890577 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.722965804041502, dt = 0.0015869557622058262
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 2.12 us (0.6%)
gen split merge : 931.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 891.00 ns (0.2%)
LB compute : 354.70 us (94.5%)
LB move op cnt : 0
LB apply : 3.66 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.71 us (76.9%)
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 | 4.5672e+05 | 262144 | 1 | 5.740e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9.95352606545582 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7245527598037078, dt = 0.0015868800335040335
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.1%)
patch tree reduce : 1993.00 ns (0.3%)
gen split merge : 921.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 942.00 ns (0.1%)
LB compute : 615.69 us (96.7%)
LB move op cnt : 0
LB apply : 3.79 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.56 us (76.8%)
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 | 4.8276e+05 | 262144 | 1 | 5.430e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10.520584281489255 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7261396398372117, dt = 0.0015868038001032457
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.5%)
patch tree reduce : 1704.00 ns (0.4%)
gen split merge : 1262.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.2%)
LB compute : 429.87 us (95.5%)
LB move op cnt : 0
LB apply : 3.62 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.92 us (74.4%)
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.2370e+05 | 262144 | 1 | 4.203e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.591233248174877 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.727726443637315, dt = 0.0015867270964703584
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.5%)
patch tree reduce : 1763.00 ns (0.4%)
gen split merge : 932.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 952.00 ns (0.2%)
LB compute : 411.52 us (95.2%)
LB move op cnt : 0
LB apply : 4.36 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.98 us (75.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 | 6.3169e+05 | 262144 | 1 | 4.150e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.764694793790891 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7293131707337854, dt = 0.0015866501331849698
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.39 us (1.9%)
patch tree reduce : 1864.00 ns (0.5%)
gen split merge : 982.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 872.00 ns (0.2%)
LB compute : 369.09 us (94.6%)
LB move op cnt : 0
LB apply : 3.95 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.81 us (74.5%)
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 | 6.2840e+05 | 262144 | 1 | 4.172e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.692409091808088 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7308998208669704, dt = 0.0015865731387405381
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.4%)
patch tree reduce : 1894.00 ns (0.4%)
gen split merge : 952.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 871.00 ns (0.2%)
LB compute : 454.16 us (95.7%)
LB move op cnt : 0
LB apply : 3.91 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.07 us (75.9%)
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 | 6.3200e+05 | 262144 | 1 | 4.148e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.770151417733285 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.732486394005711, dt = 0.001586496117929906
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.46 us (1.9%)
patch tree reduce : 1994.00 ns (0.5%)
gen split merge : 1132.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.3%)
LB compute : 364.40 us (94.4%)
LB move op cnt : 0
LB apply : 3.69 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.32 us (78.8%)
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 | 6.2172e+05 | 262144 | 1 | 4.216e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.545607563330565 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7340728901236409, dt = 0.0015864189578782282
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.6%)
patch tree reduce : 1853.00 ns (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 : 421.41 us (95.3%)
LB move op cnt : 0
LB apply : 3.90 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.04 us (74.3%)
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 | 6.2050e+05 | 262144 | 1 | 4.225e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.518358226018979 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.735659309081519, dt = 0.0015863414688122275
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.5%)
patch tree reduce : 2.32 us (0.5%)
gen split merge : 932.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 862.00 ns (0.2%)
LB compute : 417.16 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.17 us (78.6%)
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 | 6.2200e+05 | 262144 | 1 | 4.215e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.550255437837272 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7372456505503313, dt = 0.0015862634333217735
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 2.27 us (0.6%)
gen split merge : 972.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 921.00 ns (0.2%)
LB compute : 374.61 us (94.7%)
LB move op cnt : 0
LB apply : 3.66 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.08 us (73.8%)
Info: cfl dt = 0.0015861846534949867 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 6.1552e+05 | 262144 | 1 | 4.259e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.408412198122234 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.738831913983653, dt = 0.0015861846534949867
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (0.2%)
patch tree reduce : 1984.00 ns (0.0%)
gen split merge : 962.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.0%)
LB compute : 4.35 ms (99.5%)
LB move op cnt : 0
LB apply : 3.88 us (0.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.79 us (75.6%)
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 | 6.2357e+05 | 262144 | 1 | 4.204e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.583233205636448 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.740418098637148, dt = 0.001586104986777074
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.1%)
patch tree reduce : 1973.00 ns (0.3%)
gen split merge : 962.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 882.00 ns (0.1%)
LB compute : 593.58 us (96.7%)
LB move op cnt : 0
LB apply : 3.72 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.29 us (77.9%)
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 | 6.2939e+05 | 262144 | 1 | 4.165e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.709247289136458 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7420042036239252, dt = 0.0015860243530605735
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 2.12 us (0.4%)
gen split merge : 972.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 952.00 ns (0.2%)
LB compute : 539.75 us (96.4%)
LB move op cnt : 0
LB apply : 3.50 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.79 us (72.8%)
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 | 6.2462e+05 | 262144 | 1 | 4.197e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.604665886078458 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7435902279769857, dt = 0.0015859427393698478
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.2%)
patch tree reduce : 2.25 us (0.4%)
gen split merge : 992.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 942.00 ns (0.2%)
LB compute : 528.44 us (96.3%)
LB move op cnt : 0
LB apply : 3.64 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.73 us (72.1%)
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 | 6.3474e+05 | 262144 | 1 | 4.130e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.824327819682251 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7451761707163556, dt = 0.0015858602106070831
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.1%)
patch tree reduce : 1894.00 ns (0.0%)
gen split merge : 972.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 1173.00 ns (0.0%)
LB compute : 5.23 ms (99.6%)
LB move op cnt : 0
LB apply : 4.13 us (0.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.77 us (73.7%)
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 | 6.1842e+05 | 262144 | 1 | 4.239e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.468217232027198 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7467620309269627, dt = 0.001585776891122271
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.8%)
patch tree reduce : 1934.00 ns (0.5%)
gen split merge : 951.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 892.00 ns (0.2%)
LB compute : 369.86 us (94.7%)
LB move op cnt : 0
LB apply : 3.32 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.77 us (74.9%)
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 | 6.3101e+05 | 262144 | 1 | 4.154e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.741738855785306 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.748347807818085, dt = 0.0015856929304162157
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.6%)
patch tree reduce : 1973.00 ns (0.5%)
gen split merge : 941.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 961.00 ns (0.2%)
LB compute : 405.58 us (95.2%)
LB move op cnt : 0
LB apply : 3.82 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.16 us (75.2%)
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 | 6.3728e+05 | 262144 | 1 | 4.113e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.87760993731264 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.749933500748501, dt = 0.0015856084919782074
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (0.1%)
patch tree reduce : 1864.00 ns (0.0%)
gen split merge : 952.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 1182.00 ns (0.0%)
LB compute : 6.21 ms (99.7%)
LB move op cnt : 0
LB apply : 4.12 us (0.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.50 us (78.4%)
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 | 5.9615e+05 | 262144 | 1 | 4.397e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12.981094522392153 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7515191092404794, dt = 0.0015855237061495361
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 2.15 us (0.5%)
gen split merge : 942.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 882.00 ns (0.2%)
LB compute : 374.94 us (90.9%)
LB move op cnt : 0
LB apply : 19.94 us (4.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.09 us (75.1%)
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 | 5.9727e+05 | 262144 | 1 | 4.389e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.004774388578957 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7531046329466289, dt = 0.0015854386913996905
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (0.6%)
patch tree reduce : 1803.00 ns (0.2%)
gen split merge : 961.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 851.00 ns (0.1%)
LB compute : 978.90 us (98.0%)
LB move op cnt : 0
LB apply : 3.64 us (0.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.41 us (75.4%)
Info: cfl dt = 0.0015853535555037635 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 6.3467e+05 | 262144 | 1 | 4.130e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.818435712341458 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7546900716380285, dt = 0.0015853535555037635
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1893.00 ns (0.5%)
gen split merge : 972.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 872.00 ns (0.2%)
LB compute : 377.86 us (94.8%)
LB move op cnt : 0
LB apply : 3.74 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.79 us (74.6%)
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 | 6.3576e+05 | 262144 | 1 | 4.123e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.841543314075386 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7562754251935322, dt = 0.0015852683860852947
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (0.3%)
patch tree reduce : 1954.00 ns (0.1%)
gen split merge : 1002.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.0%)
LB compute : 2.10 ms (99.0%)
LB move op cnt : 0
LB apply : 3.84 us (0.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.83 us (74.2%)
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 | 6.1953e+05 | 262144 | 1 | 4.231e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.487469251264246 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7578606935796175, dt = 0.0015851832239474934
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 2.02 us (0.5%)
gen split merge : 1272.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 951.00 ns (0.2%)
LB compute : 378.32 us (94.9%)
LB move op cnt : 0
LB apply : 3.65 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.08 us (73.8%)
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 | 6.3054e+05 | 262144 | 1 | 4.157e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.72634021795129 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.759445876803565, dt = 0.0015850980373658668
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 2.13 us (0.6%)
gen split merge : 962.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.3%)
LB compute : 335.60 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.21 us (74.8%)
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 | 6.2524e+05 | 262144 | 1 | 4.193e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.610211291966067 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.761030974840931, dt = 0.0015850128270553994
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (0.3%)
patch tree reduce : 1803.00 ns (0.1%)
gen split merge : 1002.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 871.00 ns (0.0%)
LB compute : 2.64 ms (99.2%)
LB move op cnt : 0
LB apply : 3.90 us (0.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.02 us (73.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 | 6.3110e+05 | 262144 | 1 | 4.154e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.736957518972236 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7626159876679863, dt = 0.0015849275712205297
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.7%)
patch tree reduce : 1874.00 ns (0.4%)
gen split merge : 1122.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 952.00 ns (0.2%)
LB compute : 398.24 us (94.9%)
LB move op cnt : 0
LB apply : 3.88 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.87 us (74.5%)
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 | 6.3098e+05 | 262144 | 1 | 4.155e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.733706758621429 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7642009152392069, dt = 0.0015848422367242003
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.8%)
patch tree reduce : 1783.00 ns (0.5%)
gen split merge : 942.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 872.00 ns (0.2%)
LB compute : 365.89 us (94.7%)
LB move op cnt : 0
LB apply : 3.75 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.12 us (77.2%)
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 | 6.3186e+05 | 262144 | 1 | 4.149e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.752029987478915 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.765785757475931, dt = 0.0015847567907436957
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (0.5%)
patch tree reduce : 1773.00 ns (0.1%)
gen split merge : 952.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 881.00 ns (0.1%)
LB compute : 1422.85 us (98.2%)
LB move op cnt : 0
LB apply : 9.15 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.98 us (75.8%)
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 | 6.1964e+05 | 262144 | 1 | 4.231e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.485368114880652 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7673705142666747, dt = 0.0015846712105739085
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1763.00 ns (0.5%)
gen split merge : 942.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 891.00 ns (0.2%)
LB compute : 364.23 us (94.8%)
LB move op cnt : 0
LB apply : 3.51 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.32 us (70.5%)
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 | 6.2776e+05 | 262144 | 1 | 4.176e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.661457243805097 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7689551854772485, dt = 0.0015845854893256652
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.2%)
patch tree reduce : 1683.00 ns (0.3%)
gen split merge : 922.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.2%)
LB compute : 529.97 us (96.2%)
LB move op cnt : 0
LB apply : 4.35 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.24 us (75.6%)
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 | 6.1055e+05 | 262144 | 1 | 4.294e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.286078391278293 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7705397709665742, dt = 0.0015844996399188992
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.7%)
patch tree reduce : 1773.00 ns (0.4%)
gen split merge : 942.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 892.00 ns (0.2%)
LB compute : 393.64 us (95.0%)
LB move op cnt : 0
LB apply : 3.79 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.90 us (73.6%)
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 | 6.2261e+05 | 262144 | 1 | 4.210e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.547864264068709 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.772124270606493, dt = 0.0015844136947143778
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (0.8%)
patch tree reduce : 2.00 us (0.3%)
gen split merge : 942.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 882.00 ns (0.1%)
LB compute : 778.78 us (97.4%)
LB move op cnt : 0
LB apply : 4.12 us (0.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.92 us (75.6%)
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 | 6.3128e+05 | 262144 | 1 | 4.153e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.73578581599808 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7737086843012073, dt = 0.001584327701612378
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 2.18 us (0.5%)
gen split merge : 1153.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.2%)
LB compute : 384.44 us (94.8%)
LB move op cnt : 0
LB apply : 3.75 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.45 us (77.5%)
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 | 6.2440e+05 | 262144 | 1 | 4.198e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.585306764919112 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7752930120028196, dt = 0.0015842417181715753
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 2.08 us (0.5%)
gen split merge : 962.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 871.00 ns (0.2%)
LB compute : 371.28 us (94.9%)
LB move op cnt : 0
LB apply : 3.67 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.52 us (70.0%)
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 | 5.7689e+05 | 262144 | 1 | 4.544e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12.55100029543226 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7768772537209911, dt = 0.0015841558057555236
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.25 us (1.5%)
patch tree reduce : 2.25 us (0.5%)
gen split merge : 972.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 871.00 ns (0.2%)
LB compute : 467.08 us (95.5%)
LB move op cnt : 0
LB apply : 3.86 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.88 us (74.5%)
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 | 6.1659e+05 | 262144 | 1 | 4.251e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.414013680463457 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7784614095267466, dt = 0.0015840700245957108
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (0.1%)
patch tree reduce : 2.31 us (0.1%)
gen split merge : 961.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 872.00 ns (0.0%)
LB compute : 4.61 ms (99.5%)
LB move op cnt : 0
LB apply : 4.05 us (0.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.14 us (75.2%)
Info: cfl dt = 0.001583984429093736 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 6.1390e+05 | 262144 | 1 | 4.270e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.354613548854987 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7800454795513423, dt = 0.001583984429093736
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (0.5%)
patch tree reduce : 2.21 us (0.2%)
gen split merge : 942.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 872.00 ns (0.1%)
LB compute : 1437.39 us (98.5%)
LB move op cnt : 0
LB apply : 4.45 us (0.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.56 us (79.1%)
Info: cfl dt = 0.0015838990665825478 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 6.2700e+05 | 262144 | 1 | 4.181e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.638880093470513 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.781629463980436, dt = 0.0015838990665825478
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (0.1%)
patch tree reduce : 2.24 us (0.0%)
gen split merge : 952.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.0%)
LB compute : 6.15 ms (99.7%)
LB move op cnt : 0
LB apply : 3.92 us (0.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.00 us (76.1%)
Info: cfl dt = 0.0015838139740259752 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 6.2442e+05 | 262144 | 1 | 4.198e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.582060761007293 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7832133630470186, dt = 0.0015838139740259752
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (0.1%)
patch tree reduce : 1883.00 ns (0.0%)
gen split merge : 982.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 1033.00 ns (0.0%)
LB compute : 5.44 ms (99.6%)
LB move op cnt : 0
LB apply : 4.00 us (0.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.90 us (76.9%)
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 | 6.1700e+05 | 262144 | 1 | 4.249e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.419932852380024 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7847971770210447, dt = 0.001583729182867976
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.24 us (0.3%)
patch tree reduce : 2.27 us (0.1%)
gen split merge : 962.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 1162.00 ns (0.1%)
LB compute : 2.28 ms (99.1%)
LB move op cnt : 0
LB apply : 4.19 us (0.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.11 us (73.6%)
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 | 6.2179e+05 | 262144 | 1 | 4.216e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.523381297461981 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7863809062039127, dt = 0.0015836447219619387
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1673.00 ns (0.4%)
gen split merge : 962.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 961.00 ns (0.3%)
LB compute : 361.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 : 3.57 us (77.1%)
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 | 6.3050e+05 | 262144 | 1 | 4.158e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.712235064635903 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7879645509258746, dt = 0.0015835606193269412
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1773.00 ns (0.5%)
gen split merge : 952.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 902.00 ns (0.2%)
LB compute : 361.00 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.87 us (75.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 | 6.2864e+05 | 262144 | 1 | 4.170e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.671000374260636 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7895481115452014, dt = 0.0015834769000961058
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.47 us (2.0%)
patch tree reduce : 1814.00 ns (0.5%)
gen split merge : 972.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 862.00 ns (0.2%)
LB compute : 361.48 us (94.4%)
LB move op cnt : 0
LB apply : 3.62 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.79 us (72.2%)
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 | 6.1830e+05 | 262144 | 1 | 4.240e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.445321798234932 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7911315884452976, dt = 0.0015833935857472543
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1753.00 ns (0.5%)
gen split merge : 1092.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1122.00 ns (0.3%)
LB compute : 343.98 us (94.2%)
LB move op cnt : 0
LB apply : 3.77 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.90 us (74.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 | 6.2699e+05 | 262144 | 1 | 4.181e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.633653468252275 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7927149820310448, dt = 0.0015833106959922782
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 2.25 us (0.5%)
gen split merge : 951.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.2%)
LB compute : 389.37 us (94.8%)
LB move op cnt : 0
LB apply : 3.60 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.77 us (74.5%)
Info: cfl dt = 0.0015832282524374458 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 6.2853e+05 | 262144 | 1 | 4.171e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.6664760787123 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7942982927270372, dt = 0.0015832282524374458
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1884.00 ns (0.5%)
gen split merge : 951.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 881.00 ns (0.2%)
LB compute : 395.37 us (95.1%)
LB move op cnt : 0
LB apply : 3.80 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.79 us (72.6%)
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 | 6.1572e+05 | 262144 | 1 | 4.258e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.387123237831558 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7958815209794747, dt = 0.0015831462816845606
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1773.00 ns (0.5%)
gen split merge : 942.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.2%)
LB compute : 369.27 us (94.8%)
LB move op cnt : 0
LB apply : 3.53 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.12 us (74.2%)
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 | 6.3323e+05 | 262144 | 1 | 4.140e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.767090967971084 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.7974646672611594, dt = 0.0015830648375315833
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.5%)
patch tree reduce : 1914.00 ns (0.4%)
gen split merge : 962.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 931.00 ns (0.2%)
LB compute : 420.60 us (95.3%)
LB move op cnt : 0
LB apply : 3.99 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.77 us (74.6%)
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 | 6.3190e+05 | 262144 | 1 | 4.149e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.737504533786696 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.799047732098691, dt = 0.00158298398380343
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (0.6%)
patch tree reduce : 1813.00 ns (0.2%)
gen split merge : 942.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 1002.00 ns (0.1%)
LB compute : 1092.88 us (98.1%)
LB move op cnt : 0
LB apply : 4.37 us (0.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.95 us (75.8%)
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 | 6.2390e+05 | 262144 | 1 | 4.202e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.56289951510584 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8006307160824946, dt = 0.0015829037762628768
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.8%)
patch tree reduce : 2.27 us (0.6%)
gen split merge : 1262.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.3%)
LB compute : 347.71 us (94.2%)
LB move op cnt : 0
LB apply : 3.76 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.23 us (74.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 | 6.3275e+05 | 262144 | 1 | 4.143e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.754584408929245 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8022136198587575, dt = 0.0015828242672142059
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 2.17 us (0.6%)
gen split merge : 931.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 872.00 ns (0.2%)
LB compute : 360.25 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.81 us (75.9%)
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 | 6.3288e+05 | 262144 | 1 | 4.142e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.756724224065842 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8037964441259717, dt = 0.0015827455087754018
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1763.00 ns (0.5%)
gen split merge : 942.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 872.00 ns (0.2%)
LB compute : 370.57 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.81 us (74.1%)
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 | 6.4000e+05 | 262144 | 1 | 4.096e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.910756516447542 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.805379189634747, dt = 0.001582667537379213
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.3%)
patch tree reduce : 2.23 us (0.4%)
gen split merge : 1252.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 901.00 ns (0.2%)
LB compute : 492.03 us (95.8%)
LB move op cnt : 0
LB apply : 3.88 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.26 us (77.0%)
Info: cfl dt = 0.0015825903951639199 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 6.2479e+05 | 262144 | 1 | 4.196e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.579675738765417 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8069618571721262, dt = 0.0015825903951639199
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.16 us (0.7%)
patch tree reduce : 1764.00 ns (0.2%)
gen split merge : 942.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 952.00 ns (0.1%)
LB compute : 945.46 us (97.8%)
LB move op cnt : 0
LB apply : 3.90 us (0.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.99 us (74.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 | 6.2804e+05 | 262144 | 1 | 4.174e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.649637584345513 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.80854444756729, dt = 0.001582514115653605
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (0.2%)
patch tree reduce : 2.08 us (0.1%)
gen split merge : 972.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 952.00 ns (0.0%)
LB compute : 3.85 ms (99.4%)
LB move op cnt : 0
LB apply : 4.12 us (0.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.41 us (77.3%)
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 | 6.1561e+05 | 262144 | 1 | 4.258e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.378866325731586 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8101269616829436, dt = 0.001582438719197088
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (0.3%)
patch tree reduce : 1874.00 ns (0.1%)
gen split merge : 971.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.0%)
LB compute : 2.66 ms (99.2%)
LB move op cnt : 0
LB apply : 4.16 us (0.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.94 us (75.7%)
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 | 6.2186e+05 | 262144 | 1 | 4.215e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.514022348417353 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8117094004021408, dt = 0.0015823642078576104
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (0.3%)
patch tree reduce : 2.00 us (0.1%)
gen split merge : 952.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.0%)
LB compute : 2.06 ms (99.0%)
LB move op cnt : 0
LB apply : 4.09 us (0.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.94 us (76.0%)
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 | 6.2648e+05 | 262144 | 1 | 4.184e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.613595158084912 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8132917646099984, dt = 0.0015822905619909307
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.45 us (0.2%)
patch tree reduce : 1954.00 ns (0.0%)
gen split merge : 931.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 1082.00 ns (0.0%)
LB compute : 4.27 ms (99.5%)
LB move op cnt : 0
LB apply : 4.09 us (0.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.32 us (77.5%)
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 | 5.9772e+05 | 262144 | 1 | 4.386e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12.988041100849438 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8148740551719893, dt = 0.0015822177600858368
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.22 us (1.6%)
patch tree reduce : 1883.00 ns (0.4%)
gen split merge : 942.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.2%)
LB compute : 436.25 us (95.4%)
LB move op cnt : 0
LB apply : 4.07 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.90 us (74.9%)
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 | 6.2552e+05 | 262144 | 1 | 4.191e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.591615941076258 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8164562729320752, dt = 0.0015821458330701045
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (0.4%)
patch tree reduce : 1933.00 ns (0.1%)
gen split merge : 982.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 952.00 ns (0.0%)
LB compute : 1990.01 us (98.9%)
LB move op cnt : 0
LB apply : 3.90 us (0.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.30 us (76.5%)
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 | 6.2105e+05 | 262144 | 1 | 4.221e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.493805643911656 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8180384187651453, dt = 0.0015820746211568802
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1794.00 ns (0.4%)
gen split merge : 1082.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.2%)
LB compute : 397.97 us (95.0%)
LB move op cnt : 0
LB apply : 3.72 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.50 us (72.8%)
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 | 6.1762e+05 | 262144 | 1 | 4.244e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.418770995443884 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.819620493386302, dt = 0.0015820040858815071
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.2%)
patch tree reduce : 1743.00 ns (0.3%)
gen split merge : 942.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 973.00 ns (0.2%)
LB compute : 484.05 us (95.9%)
LB move op cnt : 0
LB apply : 3.75 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.25 us (77.3%)
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 | 6.2489e+05 | 262144 | 1 | 4.195e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.575964832710111 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8212024974721837, dt = 0.0015819342149161484
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.4%)
patch tree reduce : 1793.00 ns (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 : 459.68 us (95.6%)
LB move op cnt : 0
LB apply : 3.81 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.58 us (71.2%)
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 | 6.2358e+05 | 262144 | 1 | 4.204e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.547086829283904 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8227844316870998, dt = 0.0015818649547881796
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.6%)
patch tree reduce : 2.19 us (0.5%)
gen split merge : 982.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 872.00 ns (0.2%)
LB compute : 383.82 us (95.0%)
LB move op cnt : 0
LB apply : 3.61 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.09 us (72.0%)
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 | 6.2494e+05 | 262144 | 1 | 4.195e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.57594845558018 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8243662966418879, dt = 0.0015817962397569143
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (0.2%)
patch tree reduce : 1853.00 ns (0.1%)
gen split merge : 991.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 862.00 ns (0.0%)
LB compute : 3.28 ms (99.4%)
LB move op cnt : 0
LB apply : 3.99 us (0.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.33 us (77.6%)
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.1259e+05 | 262144 | 1 | 4.279e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.307079910685195 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8259480928816447, dt = 0.0015817279924629478
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (0.8%)
patch tree reduce : 2.00 us (0.2%)
gen split merge : 972.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 872.00 ns (0.1%)
LB compute : 816.65 us (97.5%)
LB move op cnt : 0
LB apply : 3.56 us (0.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.04 us (77.3%)
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 | 6.2527e+05 | 262144 | 1 | 4.193e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.581871952386857 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8275298208741078, dt = 0.001581660124952271
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1854.00 ns (0.5%)
gen split merge : 1132.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 922.00 ns (0.2%)
LB compute : 374.55 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.69 us (71.3%)
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 | 6.2964e+05 | 262144 | 1 | 4.163e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.676307258570313 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.82911148099906, dt = 0.001581592559347961
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1633.00 ns (0.4%)
gen split merge : 952.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1172.00 ns (0.3%)
LB compute : 367.33 us (94.7%)
LB move op cnt : 0
LB apply : 3.56 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.92 us (75.4%)
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 | 6.2886e+05 | 262144 | 1 | 4.169e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.658723718646335 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.830693073558408, dt = 0.0015815252217648763
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.11 us (0.6%)
gen split merge : 1223.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 952.00 ns (0.3%)
LB compute : 352.77 us (94.4%)
LB move op cnt : 0
LB apply : 3.60 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.71 us (72.0%)
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 | 6.3349e+05 | 262144 | 1 | 4.138e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.758647834283243 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8322745987801727, dt = 0.0015814580416405712
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1853.00 ns (0.5%)
gen split merge : 1282.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 862.00 ns (0.2%)
LB compute : 376.22 us (94.7%)
LB move op cnt : 0
LB apply : 3.63 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.12 us (77.2%)
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 | 6.3420e+05 | 262144 | 1 | 4.133e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.77356103718575 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8338560568218134, dt = 0.0015813909588030556
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 2.18 us (0.5%)
gen split merge : 952.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1283.00 ns (0.3%)
LB compute : 376.92 us (94.8%)
LB move op cnt : 0
LB apply : 3.43 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.77 us (75.1%)
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 | 6.0105e+05 | 262144 | 1 | 4.361e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.05309967329049 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8354374477806166, dt = 0.0015813239295782195
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.8%)
patch tree reduce : 1893.00 ns (0.5%)
gen split merge : 1032.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 882.00 ns (0.2%)
LB compute : 385.45 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.43 us (74.3%)
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 | 6.2449e+05 | 262144 | 1 | 4.198e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.561608457306383 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.837018771710195, dt = 0.001581256929384904
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1884.00 ns (0.5%)
gen split merge : 981.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1012.00 ns (0.3%)
LB compute : 380.24 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.20 us (77.0%)
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 | 6.3400e+05 | 262144 | 1 | 4.135e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.767444380936952 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8386000286395798, dt = 0.001581189951230182
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1874.00 ns (0.5%)
gen split merge : 1132.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1153.00 ns (0.3%)
LB compute : 356.99 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 (74.4%)
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 | 6.3410e+05 | 262144 | 1 | 4.134e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.76905187436678 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.84018121859081, dt = 0.0015811229999034815
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1793.00 ns (0.5%)
gen split merge : 961.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 871.00 ns (0.2%)
LB compute : 358.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.82 us (75.2%)
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 | 6.2996e+05 | 262144 | 1 | 4.161e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.67865766058122 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8417623415907134, dt = 0.0015810560678330737
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1763.00 ns (0.4%)
gen split merge : 1002.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 871.00 ns (0.2%)
LB compute : 377.80 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.90 us (74.7%)
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 | 6.3484e+05 | 262144 | 1 | 4.129e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.78392436864296 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8433433976585465, dt = 0.0015809891210397137
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1783.00 ns (0.4%)
gen split merge : 982.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1002.00 ns (0.2%)
LB compute : 393.50 us (95.2%)
LB move op cnt : 0
LB apply : 3.43 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.85 us (75.1%)
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 | 6.2402e+05 | 262144 | 1 | 4.201e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.548357426493196 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8449243867795861, dt = 0.0015809220888743872
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1773.00 ns (0.4%)
gen split merge : 902.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 861.00 ns (0.2%)
LB compute : 382.67 us (95.0%)
LB move op cnt : 0
LB apply : 3.76 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.59 us (75.2%)
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 | 6.2836e+05 | 262144 | 1 | 4.172e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.642165446522364 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8465053088684604, dt = 0.001580854879154291
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (1.9%)
patch tree reduce : 1894.00 ns (0.5%)
gen split merge : 1133.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1202.00 ns (0.3%)
LB compute : 346.78 us (94.2%)
LB move op cnt : 0
LB apply : 3.76 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.48 us (72.7%)
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 | 6.2556e+05 | 262144 | 1 | 4.191e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.580844728854526 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8480861637476147, dt = 0.0015807874013534528
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.1%)
patch tree reduce : 2.06 us (0.3%)
gen split merge : 942.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1202.00 ns (0.2%)
LB compute : 602.69 us (96.7%)
LB move op cnt : 0
LB apply : 3.89 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.56 us (70.7%)
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 | 6.2491e+05 | 262144 | 1 | 4.195e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.566029849852677 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.849666951148968, dt = 0.0015807195847624671
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.6%)
patch tree reduce : 1923.00 ns (0.4%)
gen split merge : 1082.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 961.00 ns (0.2%)
LB compute : 416.71 us (95.3%)
LB move op cnt : 0
LB apply : 3.52 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.75 us (73.7%)
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 | 6.2825e+05 | 262144 | 1 | 4.173e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.63786828826242 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8512476707337304, dt = 0.0008356625996028821
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.8%)
patch tree reduce : 1743.00 ns (0.4%)
gen split merge : 1283.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 882.00 ns (0.2%)
LB compute : 376.79 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.90 us (75.4%)
Info: cfl dt = 0.0015806232894894 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 6.3188e+05 | 262144 | 1 | 4.149e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 7.251552468233333 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 512.81837898 (s) [Godunov][rank=0]
Info: dump to _to_trash/ramses_kh/periodic_0015.vtk [VTK Dump][rank=0]
- took 56.06 ms, bandwidth = 695.68 MB/s
amr::Godunov: t = 1.8520833333333333, dt = 0.0015806232894894
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (0.2%)
patch tree reduce : 1954.00 ns (0.1%)
gen split merge : 982.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 1002.00 ns (0.0%)
LB compute : 3.82 ms (99.5%)
LB move op cnt : 0
LB apply : 3.85 us (0.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.62 us (70.2%)
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.0507e+05 | 262144 | 1 | 4.332e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.134079592901236 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8536639566228228, dt = 0.0015805507457941795
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 2.13 us (0.5%)
gen split merge : 942.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 861.00 ns (0.2%)
LB compute : 396.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 : 3.36 us (73.9%)
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.3026e+05 | 262144 | 1 | 4.159e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.680072877213407 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.855244507368617, dt = 0.0015804771659557696
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (1.8%)
patch tree reduce : 1804.00 ns (0.4%)
gen split merge : 951.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.2%)
LB compute : 384.92 us (94.9%)
LB move op cnt : 0
LB apply : 3.67 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.69 us (73.5%)
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 | 6.3336e+05 | 262144 | 1 | 4.139e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.746774406296401 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8568249845345728, dt = 0.0015804039544034248
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1914.00 ns (0.5%)
gen split merge : 972.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 902.00 ns (0.2%)
LB compute : 386.63 us (94.9%)
LB move op cnt : 0
LB apply : 3.72 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.24 us (73.9%)
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 | 6.2474e+05 | 262144 | 1 | 4.196e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.559030974727168 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8584053884889762, dt = 0.0015803317231266674
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (0.2%)
patch tree reduce : 1823.00 ns (0.1%)
gen split merge : 952.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 871.00 ns (0.0%)
LB compute : 2.74 ms (99.3%)
LB move op cnt : 0
LB apply : 3.92 us (0.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.15 us (75.1%)
Info: cfl dt = 0.0015802606009600057 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 6.1682e+05 | 262144 | 1 | 4.250e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.386504853471793 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8599857202121028, dt = 0.0015802606009600057
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (0.3%)
patch tree reduce : 1823.00 ns (0.1%)
gen split merge : 982.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 862.00 ns (0.0%)
LB compute : 2.58 ms (99.2%)
LB move op cnt : 0
LB apply : 4.50 us (0.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.79 us (71.2%)
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.0956e+05 | 262144 | 1 | 4.301e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.228520188132993 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.861565980813063, dt = 0.0015801904810615463
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.1%)
patch tree reduce : 2.02 us (0.0%)
gen split merge : 982.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.0%)
LB compute : 5.59 ms (99.6%)
LB move op cnt : 0
LB apply : 4.03 us (0.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.36 us (73.8%)
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 | 5.9110e+05 | 262144 | 1 | 4.435e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12.827189578807532 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8631461712941244, dt = 0.0015801211301293627
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1733.00 ns (0.4%)
gen split merge : 932.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1252.00 ns (0.3%)
LB compute : 429.34 us (95.4%)
LB move op cnt : 0
LB apply : 3.51 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.48 us (72.1%)
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 | 6.0899e+05 | 262144 | 1 | 4.305e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.214981159015743 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8647262924242538, dt = 0.0015800522603152541
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (0.9%)
patch tree reduce : 1793.00 ns (0.2%)
gen split merge : 942.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 892.00 ns (0.1%)
LB compute : 785.86 us (97.4%)
LB move op cnt : 0
LB apply : 3.89 us (0.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.16 us (73.9%)
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 | 6.2543e+05 | 262144 | 1 | 4.191e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.570962321886686 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8663063446845691, dt = 0.0015799835648910476
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (0.8%)
patch tree reduce : 1864.00 ns (0.2%)
gen split merge : 932.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 1303.00 ns (0.2%)
LB compute : 821.29 us (97.5%)
LB move op cnt : 0
LB apply : 3.53 us (0.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.73 us (75.2%)
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 | 6.2426e+05 | 262144 | 1 | 4.199e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.544983023403658 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8678863282494602, dt = 0.0015799147390715704
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1994.00 ns (0.5%)
gen split merge : 952.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 862.00 ns (0.2%)
LB compute : 375.66 us (94.8%)
LB move op cnt : 0
LB apply : 3.92 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.89 us (73.7%)
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 | 6.3216e+05 | 262144 | 1 | 4.147e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.715820447977839 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8694662429885318, dt = 0.0015798454978037915
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (0.3%)
patch tree reduce : 1754.00 ns (0.1%)
gen split merge : 1202.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 872.00 ns (0.0%)
LB compute : 2.49 ms (99.2%)
LB move op cnt : 0
LB apply : 3.86 us (0.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.94 us (74.8%)
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 | 6.2187e+05 | 262144 | 1 | 4.215e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.49210684993016 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8710460884863356, dt = 0.0015797755957472578
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.4%)
patch tree reduce : 1753.00 ns (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 : 427.76 us (95.4%)
LB move op cnt : 0
LB apply : 4.39 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.75 us (74.5%)
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 | 6.3149e+05 | 262144 | 1 | 4.151e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.700211125454812 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8726258640820828, dt = 0.0015797048664977333
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 2.08 us (0.6%)
gen split merge : 1111.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 871.00 ns (0.2%)
LB compute : 352.22 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.56 us (71.7%)
Info: cfl dt = 0.001579633315408822 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 6.3389e+05 | 262144 | 1 | 4.135e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.751519731047786 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8742055689485806, dt = 0.001579633315408822
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (0.3%)
patch tree reduce : 1753.00 ns (0.1%)
gen split merge : 942.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 1223.00 ns (0.1%)
LB compute : 2.02 ms (98.9%)
LB move op cnt : 0
LB apply : 4.20 us (0.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.92 us (75.0%)
Info: cfl dt = 0.0015795609701777585 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 6.1589e+05 | 262144 | 1 | 4.256e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.360548320209219 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8757852022639894, dt = 0.0015795609701777585
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.8%)
patch tree reduce : 1963.00 ns (0.5%)
gen split merge : 952.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1002.00 ns (0.2%)
LB compute : 384.88 us (94.7%)
LB move op cnt : 0
LB apply : 3.81 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.90 us (71.3%)
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 | 6.3402e+05 | 262144 | 1 | 4.135e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.753134820453651 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8773647632341672, dt = 0.0015794878618322922
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.15 us (1.0%)
patch tree reduce : 1783.00 ns (0.2%)
gen split merge : 952.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 1192.00 ns (0.2%)
LB compute : 711.11 us (97.0%)
LB move op cnt : 0
LB apply : 4.11 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.16 us (77.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 | 6.3289e+05 | 262144 | 1 | 4.142e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.728012175818774 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8789442510959995, dt = 0.0015794140291659502
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1834.00 ns (0.5%)
gen split merge : 932.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1142.00 ns (0.3%)
LB compute : 369.64 us (94.6%)
LB move op cnt : 0
LB apply : 3.90 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.96 us (74.5%)
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 | 6.3334e+05 | 262144 | 1 | 4.139e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.737049721376462 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8805236651251656, dt = 0.0015793395484693911
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (0.5%)
patch tree reduce : 1874.00 ns (0.2%)
gen split merge : 971.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 871.00 ns (0.1%)
LB compute : 1226.44 us (98.4%)
LB move op cnt : 0
LB apply : 4.02 us (0.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.81 us (71.9%)
Info: cfl dt = 0.0015792645326103555 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 6.2412e+05 | 262144 | 1 | 4.200e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.53654540866192 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.882103004673635, dt = 0.0015792645326103555
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (0.3%)
patch tree reduce : 2.01 us (0.1%)
gen split merge : 1042.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 862.00 ns (0.0%)
LB compute : 2.33 ms (99.1%)
LB move op cnt : 0
LB apply : 3.80 us (0.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.79 us (73.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 | 6.2109e+05 | 262144 | 1 | 4.221e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.470053279625782 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8836822692062452, dt = 0.0015791891299893534
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.4%)
patch tree reduce : 1793.00 ns (0.4%)
gen split merge : 1202.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 881.00 ns (0.2%)
LB compute : 459.86 us (95.8%)
LB move op cnt : 0
LB apply : 3.54 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.77 us (71.9%)
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 | 6.3571e+05 | 262144 | 1 | 4.124e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.786567235013246 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8852614583362346, dt = 0.0015791135021103932
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (0.9%)
patch tree reduce : 1974.00 ns (0.3%)
gen split merge : 1252.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.1%)
LB compute : 724.16 us (97.2%)
LB move op cnt : 0
LB apply : 3.89 us (0.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.71 us (72.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 | 6.1777e+05 | 262144 | 1 | 4.243e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.396929866083495 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.886840571838345, dt = 0.0015790377921010294
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (0.1%)
patch tree reduce : 1873.00 ns (0.0%)
gen split merge : 922.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 902.00 ns (0.0%)
LB compute : 5.16 ms (99.6%)
LB move op cnt : 0
LB apply : 3.75 us (0.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.81 us (74.9%)
Info: cfl dt = 0.001578962097834102 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 6.1998e+05 | 262144 | 1 | 4.228e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.444058407543432 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.888419609630446, dt = 0.001578962097834102
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (0.1%)
patch tree reduce : 1753.00 ns (0.0%)
gen split merge : 1242.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 942.00 ns (0.0%)
LB compute : 6.12 ms (99.7%)
LB move op cnt : 0
LB apply : 3.93 us (0.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.02 us (77.0%)
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 | 6.1421e+05 | 262144 | 1 | 4.268e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.318267500920362 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8899985717282801, dt = 0.0015788864564034947
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (0.1%)
patch tree reduce : 1773.00 ns (0.0%)
gen split merge : 972.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.0%)
LB compute : 6.12 ms (99.7%)
LB move op cnt : 0
LB apply : 3.87 us (0.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.00 us (73.7%)
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 | 6.1749e+05 | 262144 | 1 | 4.245e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.388756029169011 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8915774581846836, dt = 0.001578810831956447
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (0.1%)
patch tree reduce : 1813.00 ns (0.0%)
gen split merge : 962.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 1312.00 ns (0.0%)
LB compute : 6.21 ms (99.6%)
LB move op cnt : 0
LB apply : 4.49 us (0.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.90 us (78.1%)
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 | 6.1619e+05 | 262144 | 1 | 4.254e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.359936454714182 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8931562690166401, dt = 0.001578735150092831
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (0.3%)
patch tree reduce : 1794.00 ns (0.1%)
gen split merge : 951.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 1252.00 ns (0.1%)
LB compute : 2.07 ms (99.0%)
LB move op cnt : 0
LB apply : 4.00 us (0.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.94 us (74.4%)
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 | 6.2047e+05 | 262144 | 1 | 4.225e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.452116820455718 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.894735004166733, dt = 0.0015786593261673094
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1884.00 ns (0.2%)
gen split merge : 1032.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 872.00 ns (0.1%)
LB compute : 1052.02 us (98.1%)
LB move op cnt : 0
LB apply : 3.72 us (0.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.96 us (75.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.2628e+05 | 262144 | 1 | 4.186e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.57743349679059 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8963136634929003, dt = 0.0015785832842373556
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.1%)
patch tree reduce : 1784.00 ns (0.0%)
gen split merge : 992.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 1212.00 ns (0.0%)
LB compute : 6.19 ms (99.7%)
LB move op cnt : 0
LB apply : 3.90 us (0.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.02 us (74.2%)
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 | 6.1605e+05 | 262144 | 1 | 4.255e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.355057402295198 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8978922467771377, dt = 0.0015785069791278928
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (0.9%)
patch tree reduce : 1853.00 ns (0.3%)
gen split merge : 962.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 952.00 ns (0.1%)
LB compute : 677.95 us (97.1%)
LB move op cnt : 0
LB apply : 3.85 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.77 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 | 6.1728e+05 | 262144 | 1 | 4.247e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.381031860290998 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.8994707537562656, dt = 0.001578430449923564
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1924.00 ns (0.5%)
gen split merge : 942.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 872.00 ns (0.2%)
LB compute : 398.54 us (95.0%)
LB move op cnt : 0
LB apply : 3.96 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.89 us (73.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 | 6.2789e+05 | 262144 | 1 | 4.175e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.610460598115322 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9010491842061892, dt = 0.0015783538091770322
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (0.2%)
patch tree reduce : 1884.00 ns (0.1%)
gen split merge : 952.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.0%)
LB compute : 3.26 ms (99.4%)
LB move op cnt : 0
LB apply : 3.86 us (0.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.11 us (74.5%)
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 | 6.2700e+05 | 262144 | 1 | 4.181e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.590370334455097 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.902627538015366, dt = 0.0015782774608375891
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.4%)
patch tree reduce : 1833.00 ns (0.4%)
gen split merge : 1252.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 892.00 ns (0.2%)
LB compute : 472.68 us (95.7%)
LB move op cnt : 0
LB apply : 4.04 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.02 us (76.4%)
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 | 6.2591e+05 | 262144 | 1 | 4.188e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.566246361935702 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9042058154762036, dt = 0.0015782015331111546
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (0.1%)
patch tree reduce : 1783.00 ns (0.0%)
gen split merge : 962.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 971.00 ns (0.0%)
LB compute : 5.29 ms (99.6%)
LB move op cnt : 0
LB apply : 4.02 us (0.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.17 us (77.5%)
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 | 6.1599e+05 | 262144 | 1 | 4.256e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.350473587918259 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9057840170093148, dt = 0.0015781258993824844
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.5%)
patch tree reduce : 1944.00 ns (0.4%)
gen split merge : 1322.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 892.00 ns (0.2%)
LB compute : 427.84 us (95.2%)
LB move op cnt : 0
LB apply : 3.84 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.81 us (74.9%)
Info: cfl dt = 0.0015780500849913292 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 6.2408e+05 | 262144 | 1 | 4.201e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.52512883414852 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9073621429086973, dt = 0.0015780500849913292
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.1%)
patch tree reduce : 2.21 us (0.0%)
gen split merge : 942.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 871.00 ns (0.0%)
LB compute : 6.12 ms (99.7%)
LB move op cnt : 0
LB apply : 3.99 us (0.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.90 us (73.9%)
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 | 6.0885e+05 | 262144 | 1 | 4.306e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.194507401724588 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9089401929936887, dt = 0.0015779740528016344
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.2%)
patch tree reduce : 1923.00 ns (0.3%)
gen split merge : 1112.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 971.00 ns (0.2%)
LB compute : 539.70 us (96.3%)
LB move op cnt : 0
LB apply : 3.62 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.00 us (73.9%)
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 | 6.2651e+05 | 262144 | 1 | 4.184e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.576619490641551 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9105181670464904, dt = 0.001577897729433147
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1764.00 ns (0.4%)
gen split merge : 922.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 952.00 ns (0.2%)
LB compute : 380.55 us (95.0%)
LB move op cnt : 0
LB apply : 3.58 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.77 us (72.4%)
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.2566e+05 | 262144 | 1 | 4.190e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.557418028593125 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9120960647759235, dt = 0.0015778209900359954
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (0.2%)
patch tree reduce : 2.08 us (0.1%)
gen split merge : 1242.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 881.00 ns (0.0%)
LB compute : 4.10 ms (99.5%)
LB move op cnt : 0
LB apply : 4.04 us (0.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.96 us (73.6%)
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 | 6.2967e+05 | 262144 | 1 | 4.163e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.643722245734912 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9136738857659594, dt = 0.0015777436935336046
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1773.00 ns (0.4%)
gen split merge : 1243.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.2%)
LB compute : 396.40 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.60 us (73.0%)
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 | 6.3035e+05 | 262144 | 1 | 4.159e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.657829476292937 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.915251629459493, dt = 0.0015776657051518681
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1653.00 ns (0.4%)
gen split merge : 962.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 902.00 ns (0.2%)
LB compute : 373.01 us (94.8%)
LB move op cnt : 0
LB apply : 3.51 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 19.84 us (94.8%)
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 | 6.2835e+05 | 262144 | 1 | 4.172e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.61373862864478 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9168292951646448, dt = 0.0015775869364822712
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 23.73 us (5.6%)
patch tree reduce : 1944.00 ns (0.5%)
gen split merge : 982.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 862.00 ns (0.2%)
LB compute : 382.76 us (90.9%)
LB move op cnt : 0
LB apply : 4.04 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.65 us (73.6%)
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 | 6.3125e+05 | 262144 | 1 | 4.153e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.675949306331844 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.918406882101127, dt = 0.0015774929207565747
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 2.14 us (0.6%)
gen split merge : 1002.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 872.00 ns (0.2%)
LB compute : 362.12 us (94.5%)
LB move op cnt : 0
LB apply : 4.01 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.89 us (74.2%)
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 | 6.2461e+05 | 262144 | 1 | 4.197e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.531197114869132 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9199843750218837, dt = 0.0015773791727278128
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1823.00 ns (0.5%)
gen split merge : 1122.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 861.00 ns (0.2%)
LB compute : 364.02 us (94.5%)
LB move op cnt : 0
LB apply : 4.09 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.33 us (76.5%)
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 | 6.3458e+05 | 262144 | 1 | 4.131e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.746347314824627 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9215617541946115, dt = 0.0015772642528392587
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 2.09 us (0.5%)
gen split merge : 941.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 871.00 ns (0.2%)
LB compute : 387.56 us (94.9%)
LB move op cnt : 0
LB apply : 3.42 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.52 us (72.1%)
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 | 6.3346e+05 | 262144 | 1 | 4.138e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.72109888772973 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9231390184474508, dt = 0.001577148327744611
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1844.00 ns (0.5%)
gen split merge : 962.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.3%)
LB compute : 334.12 us (94.4%)
LB move op cnt : 0
LB apply : 3.58 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.00 us (71.0%)
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.3172e+05 | 262144 | 1 | 4.150e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.682318806917712 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9247161667751955, dt = 0.0015770316393149506
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.7%)
patch tree reduce : 1943.00 ns (0.5%)
gen split merge : 1213.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.2%)
LB compute : 397.41 us (94.8%)
LB move op cnt : 0
LB apply : 4.15 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.31 us (74.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.0807e+05 | 262144 | 1 | 4.311e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.169146441667493 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9262931984145104, dt = 0.0015769144607263239
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.6%)
patch tree reduce : 1773.00 ns (0.4%)
gen split merge : 1172.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 961.00 ns (0.2%)
LB compute : 419.37 us (95.3%)
LB move op cnt : 0
LB apply : 3.69 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.79 us (73.2%)
Info: cfl dt = 0.0015767970554532646 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 6.3362e+05 | 262144 | 1 | 4.137e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.72140712646773 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9278701128752367, dt = 0.0015767970554532646
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 2.11 us (0.6%)
gen split merge : 942.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.3%)
LB compute : 345.57 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.88 us (73.4%)
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 | 6.3376e+05 | 262144 | 1 | 4.136e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.72337297930766 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.92944690993069, dt = 0.0015766796100187086
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance 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.14 us (3.6%)
patch tree reduce : 1813.00 ns (0.4%)
gen split merge : 952.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 872.00 ns (0.2%)
LB compute : 396.38 us (93.2%)
LB move op cnt : 0
LB apply : 3.71 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.96 us (73.0%)
Info: cfl dt = 0.0015765621228255023 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 6.2594e+05 | 262144 | 1 | 4.188e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.553206392887406 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9310235895407086, dt = 0.0015765621228255023
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1754.00 ns (0.4%)
gen split merge : 952.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 871.00 ns (0.2%)
LB compute : 376.08 us (94.9%)
LB move op cnt : 0
LB apply : 3.50 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.75 us (69.4%)
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 | 6.2974e+05 | 262144 | 1 | 4.163e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.63436464732414 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.932600151663534, dt = 0.0015764445321348485
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (0.1%)
patch tree reduce : 1764.00 ns (0.0%)
gen split merge : 1071.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 881.00 ns (0.0%)
LB compute : 6.17 ms (99.7%)
LB move op cnt : 0
LB apply : 3.86 us (0.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.94 us (74.7%)
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 | 6.0337e+05 | 262144 | 1 | 4.345e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.062487761394152 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.934176596195669, dt = 0.0015763269358672943
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1954.00 ns (0.5%)
gen split merge : 971.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 871.00 ns (0.2%)
LB compute : 373.76 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.60 us (72.8%)
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 | 6.1936e+05 | 262144 | 1 | 4.232e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.407686889826913 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9357529231315362, dt = 0.0015762095538758923
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1834.00 ns (0.4%)
gen split merge : 962.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.2%)
LB compute : 395.57 us (95.1%)
LB move op cnt : 0
LB apply : 3.80 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.98 us (74.2%)
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 | 6.3015e+05 | 262144 | 1 | 4.160e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.640285084521677 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.937329132685412, dt = 0.001576092661739618
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 2.05 us (0.5%)
gen split merge : 942.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1303.00 ns (0.3%)
LB compute : 374.46 us (94.6%)
LB move op cnt : 0
LB apply : 3.72 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.83 us (73.5%)
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 | 6.3641e+05 | 262144 | 1 | 4.119e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.77461313176583 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9389052253471517, dt = 0.001575976525308858
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.8%)
patch tree reduce : 1893.00 ns (0.5%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 871.00 ns (0.2%)
LB compute : 356.91 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.60 us (77.5%)
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 | 6.2857e+05 | 262144 | 1 | 4.170e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.604000510234082 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9404812018724606, dt = 0.00157586135869243
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1794.00 ns (0.5%)
gen split merge : 962.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.2%)
LB compute : 367.54 us (94.8%)
LB move op cnt : 0
LB apply : 3.64 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.85 us (74.2%)
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 | 6.2919e+05 | 262144 | 1 | 4.166e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.616347996609035 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9420570632311531, dt = 0.0015757472772909668
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1803.00 ns (0.5%)
gen split merge : 1002.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 892.00 ns (0.2%)
LB compute : 368.97 us (94.7%)
LB move op cnt : 0
LB apply : 3.94 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.39 us (76.8%)
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 | 6.2421e+05 | 262144 | 1 | 4.200e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.507650189014992 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9436328105084442, dt = 0.0015756343421861484
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (0.7%)
patch tree reduce : 1824.00 ns (0.2%)
gen split merge : 1322.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 881.00 ns (0.1%)
LB compute : 982.86 us (97.9%)
LB move op cnt : 0
LB apply : 3.92 us (0.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.96 us (75.2%)
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 | 6.2772e+05 | 262144 | 1 | 4.176e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.582695493687254 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9452084448506304, dt = 0.0015755226095214598
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.2%)
patch tree reduce : 1874.00 ns (0.1%)
gen split merge : 962.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 862.00 ns (0.0%)
LB compute : 3.25 ms (99.4%)
LB move op cnt : 0
LB apply : 4.05 us (0.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.37 us (75.7%)
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 | 6.2032e+05 | 262144 | 1 | 4.226e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.421589403790557 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.946783967460152, dt = 0.0015754121449091034
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1814.00 ns (0.5%)
gen split merge : 962.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 882.00 ns (0.2%)
LB compute : 372.71 us (94.7%)
LB move op cnt : 0
LB apply : 3.59 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.94 us (71.7%)
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 | 6.2534e+05 | 262144 | 1 | 4.192e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.529325750364281 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9483593796050611, dt = 0.0015753022980713927
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 2.02 us (0.5%)
gen split merge : 962.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 881.00 ns (0.2%)
LB compute : 394.42 us (94.9%)
LB move op cnt : 0
LB apply : 4.11 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.03 us (76.1%)
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.3023e+05 | 262144 | 1 | 4.159e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.634069588374043 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9499346819031325, dt = 0.0015751932056359975
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1683.00 ns (0.4%)
gen split merge : 992.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 882.00 ns (0.2%)
LB compute : 362.27 us (94.6%)
LB move op cnt : 0
LB apply : 3.59 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.92 us (75.4%)
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 | 6.3182e+05 | 262144 | 1 | 4.149e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.66745210240112 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9515098751087685, dt = 0.0015750850018395111
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.7%)
patch tree reduce : 1833.00 ns (0.5%)
gen split merge : 1042.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1002.00 ns (0.3%)
LB compute : 375.21 us (94.6%)
LB move op cnt : 0
LB apply : 3.63 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.87 us (70.3%)
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 | 6.3103e+05 | 262144 | 1 | 4.154e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.649427169204841 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.953084960110608, dt = 0.0015749777457034092
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (0.3%)
patch tree reduce : 1844.00 ns (0.1%)
gen split merge : 1002.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 902.00 ns (0.0%)
LB compute : 2.27 ms (99.1%)
LB move op cnt : 0
LB apply : 4.00 us (0.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.87 us (74.5%)
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 | 6.2188e+05 | 262144 | 1 | 4.215e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.450625499532979 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9546599378563114, dt = 0.0015748713935884663
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.5%)
patch tree reduce : 2.12 us (0.5%)
gen split merge : 951.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1162.00 ns (0.3%)
LB compute : 433.44 us (95.3%)
LB move op cnt : 0
LB apply : 3.64 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.78 us (73.7%)
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.2529e+05 | 262144 | 1 | 4.192e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.523409644274818 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9562348092498998, dt = 0.001574765792795056
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1824.00 ns (0.5%)
gen split merge : 952.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 872.00 ns (0.2%)
LB compute : 375.93 us (94.7%)
LB move op cnt : 0
LB apply : 3.76 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.25 us (78.3%)
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 | 6.2096e+05 | 262144 | 1 | 4.222e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.428972642142908 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.957809575042695, dt = 0.0015746606767940653
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (0.1%)
patch tree reduce : 1763.00 ns (0.0%)
gen split merge : 1072.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 1001.00 ns (0.0%)
LB compute : 6.12 ms (99.7%)
LB move op cnt : 0
LB apply : 3.71 us (0.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.50 us (79.3%)
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 | 6.1362e+05 | 262144 | 1 | 4.272e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.26927596065579 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.959384235719489, dt = 0.001574555528817814
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.3%)
patch tree reduce : 1803.00 ns (0.3%)
gen split merge : 942.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1283.00 ns (0.2%)
LB compute : 548.25 us (96.3%)
LB move op cnt : 0
LB apply : 3.45 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.62 us (72.8%)
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 | 6.2628e+05 | 262144 | 1 | 4.186e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.542244874596562 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9609587912483069, dt = 0.0015744500466265971
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.9%)
patch tree reduce : 1873.00 ns (0.5%)
gen split merge : 941.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 881.00 ns (0.2%)
LB compute : 372.86 us (94.6%)
LB move op cnt : 0
LB apply : 4.01 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.97 us (74.2%)
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 | 6.1334e+05 | 262144 | 1 | 4.274e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.26143091527361 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9625332412949335, dt = 0.0015743439423451897
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1914.00 ns (0.5%)
gen split merge : 962.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 862.00 ns (0.2%)
LB compute : 374.74 us (94.8%)
LB move op cnt : 0
LB apply : 3.73 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.65 us (79.8%)
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 | 6.3197e+05 | 262144 | 1 | 4.148e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.663392521375485 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9641075852372787, dt = 0.001574237034484914
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 24.31 us (0.5%)
patch tree reduce : 2.06 us (0.0%)
gen split merge : 962.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.0%)
LB compute : 4.67 ms (99.2%)
LB move op cnt : 0
LB apply : 4.40 us (0.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.55 us (79.0%)
Info: cfl dt = 0.0015741292166097118 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 6.2098e+05 | 262144 | 1 | 4.221e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.424894055613404 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9656818222717636, dt = 0.0015741292166097118
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1783.00 ns (0.5%)
gen split merge : 932.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 862.00 ns (0.2%)
LB compute : 352.78 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.62 us (75.7%)
Info: cfl dt = 0.0015740202878713034 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 6.2993e+05 | 262144 | 1 | 4.161e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.61741035671003 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9672559514883734, dt = 0.0015740202878713034
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 2.01 us (0.5%)
gen split merge : 941.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 882.00 ns (0.2%)
LB compute : 362.37 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.81 us (74.7%)
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 | 6.1010e+05 | 262144 | 1 | 4.297e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.187870886107284 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9688299717762447, dt = 0.0015739101092634195
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1753.00 ns (0.5%)
gen split merge : 1122.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 892.00 ns (0.2%)
LB compute : 348.47 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.00 us (75.5%)
Info: cfl dt = 0.0015737987297015645 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 6.2450e+05 | 262144 | 1 | 4.198e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.498134020928227 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.970403881885508, dt = 0.0015737987297015645
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1993.00 ns (0.5%)
gen split merge : 941.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 951.00 ns (0.3%)
LB compute : 353.12 us (93.6%)
LB move op cnt : 0
LB apply : 7.09 us (1.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.94 us (74.4%)
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 | 6.3182e+05 | 262144 | 1 | 4.149e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.65544996531033 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9719776806152096, dt = 0.0015736862702453705
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1773.00 ns (0.5%)
gen split merge : 1153.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1172.00 ns (0.3%)
LB compute : 359.37 us (94.5%)
LB move op cnt : 0
LB apply : 3.72 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.41 us (74.4%)
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 | 6.2562e+05 | 262144 | 1 | 4.190e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.520561581752096 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.973551366885455, dt = 0.0015735728023633568
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 2.14 us (0.5%)
gen split merge : 922.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.2%)
LB compute : 384.40 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.87 us (75.3%)
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 | 6.3157e+05 | 262144 | 1 | 4.151e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.648131249744884 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9751249396878183, dt = 0.0015734583972690165
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1964.00 ns (0.5%)
gen split merge : 972.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 861.00 ns (0.2%)
LB compute : 353.04 us (94.5%)
LB move op cnt : 0
LB apply : 3.68 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.18 us (76.0%)
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 | 6.2749e+05 | 262144 | 1 | 4.178e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.558960285070901 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9766983980850874, dt = 0.0015733433876565573
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 2.09 us (0.6%)
gen split merge : 961.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 912.00 ns (0.2%)
LB compute : 346.80 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.58 us (74.5%)
Info: cfl dt = 0.0015732278618424142 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 6.2537e+05 | 262144 | 1 | 4.192e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.51208272121379 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.978271741472744, dt = 0.0015732278618424142
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1673.00 ns (0.5%)
gen split merge : 1082.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1273.00 ns (0.4%)
LB compute : 342.94 us (94.3%)
LB move op cnt : 0
LB apply : 3.75 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.71 us (73.4%)
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 | 6.3134e+05 | 262144 | 1 | 4.152e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.64007771722324 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9798449693345863, dt = 0.001573112407838256
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (0.4%)
patch tree reduce : 1884.00 ns (0.1%)
gen split merge : 1062.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 912.00 ns (0.1%)
LB compute : 1454.27 us (98.6%)
LB move op cnt : 0
LB apply : 4.45 us (0.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.02 us (72.6%)
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 | 6.2201e+05 | 262144 | 1 | 4.214e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.437596649897639 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9814180817424245, dt = 0.0015729978998000398
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1953.00 ns (0.5%)
gen split merge : 972.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 862.00 ns (0.2%)
LB compute : 352.19 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.49 us (74.4%)
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 | 6.2779e+05 | 262144 | 1 | 4.176e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.56151968799301 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9829910796422245, dt = 0.0013839203577754589
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1803.00 ns (0.5%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 872.00 ns (0.2%)
LB compute : 349.06 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.57 us (75.9%)
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 | 6.2963e+05 | 262144 | 1 | 4.163e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11.966358426715907 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 548.78545732 (s) [Godunov][rank=0]
Info: dump to _to_trash/ramses_kh/periodic_0016.vtk [VTK Dump][rank=0]
- took 51.31 ms, bandwidth = 760.05 MB/s
amr::Godunov: t = 1.984375, dt = 0.001572784238966956
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.7%)
patch tree reduce : 1834.00 ns (0.4%)
gen split merge : 932.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 952.00 ns (0.2%)
LB compute : 392.06 us (94.9%)
LB move op cnt : 0
LB apply : 4.21 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.56 us (71.1%)
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.3386e+05 | 262144 | 1 | 4.136e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.690756574918433 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.985947784238967, dt = 0.001572670309774088
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (0.2%)
patch tree reduce : 1774.00 ns (0.1%)
gen split merge : 1092.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.0%)
LB compute : 3.34 ms (99.4%)
LB move op cnt : 0
LB apply : 3.91 us (0.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.91 us (76.0%)
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 | 6.2096e+05 | 262144 | 1 | 4.222e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.411127408510572 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.987520454548741, dt = 0.001572558239837081
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.7%)
patch tree reduce : 1784.00 ns (0.4%)
gen split merge : 1222.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.2%)
LB compute : 395.91 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.92 us (74.6%)
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 | 6.3131e+05 | 262144 | 1 | 4.152e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.633659150017872 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9890930127885782, dt = 0.0015724472863284256
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (0.1%)
patch tree reduce : 1904.00 ns (0.0%)
gen split merge : 962.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 872.00 ns (0.0%)
LB compute : 6.16 ms (99.7%)
LB move op cnt : 0
LB apply : 4.35 us (0.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.31 us (75.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 | 6.1566e+05 | 262144 | 1 | 4.258e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.294817928004989 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9906654600749065, dt = 0.0015723370604613298
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 2.09 us (0.5%)
gen split merge : 961.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 961.00 ns (0.2%)
LB compute : 413.59 us (95.1%)
LB move op cnt : 0
LB apply : 4.38 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.15 us (75.7%)
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 | 6.2012e+05 | 262144 | 1 | 4.227e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.390015146480282 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9922377971353677, dt = 0.0015722272804233313
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 2.15 us (0.6%)
gen split merge : 962.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.3%)
LB compute : 333.71 us (94.1%)
LB move op cnt : 0
LB apply : 3.49 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.52 us (73.4%)
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 | 6.2387e+05 | 262144 | 1 | 4.202e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.470194053761402 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.993810024415791, dt = 0.001572117700738971
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.1%)
patch tree reduce : 2.00 us (0.3%)
gen split merge : 962.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 892.00 ns (0.2%)
LB compute : 561.11 us (96.5%)
LB move op cnt : 0
LB apply : 3.68 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.27 us (76.3%)
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 | 6.2508e+05 | 262144 | 1 | 4.194e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.495346574206339 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.99538214211653, dt = 0.0015720081252827197
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 2.05 us (0.5%)
gen split merge : 942.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 942.00 ns (0.3%)
LB compute : 355.53 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.98 us (74.1%)
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 | 5.9633e+05 | 262144 | 1 | 4.396e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12.873740030080771 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9969541502418129, dt = 0.0015718984266116704
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.7%)
patch tree reduce : 1994.00 ns (0.5%)
gen split merge : 982.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 912.00 ns (0.2%)
LB compute : 386.42 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 (74.1%)
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 | 6.3339e+05 | 262144 | 1 | 4.139e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.672779180645325 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 1.9985260486684246, dt = 0.0015717885347377597
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.5%)
patch tree reduce : 1763.00 ns (0.4%)
gen split merge : 1062.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.2%)
LB compute : 415.32 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.77 us (72.1%)
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 | 6.3211e+05 | 262144 | 1 | 4.147e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.64434275396108 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.0000978372031626, dt = 0.0015716784112680135
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 2.05 us (0.5%)
gen split merge : 942.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.2%)
LB compute : 373.17 us (94.7%)
LB move op cnt : 0
LB apply : 3.69 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.09 us (76.4%)
Info: cfl dt = 0.0015715680753612823 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 6.2653e+05 | 262144 | 1 | 4.184e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.52283109353461 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.0016695156144304, dt = 0.0015715680753612823
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.1%)
patch tree reduce : 1683.00 ns (0.0%)
gen split merge : 942.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 882.00 ns (0.0%)
LB compute : 5.36 ms (99.6%)
LB move op cnt : 0
LB apply : 4.08 us (0.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.30 us (75.3%)
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 | 6.1709e+05 | 262144 | 1 | 4.248e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.318232907311739 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.0032410836897916, dt = 0.0015714575843124837
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1944.00 ns (0.5%)
gen split merge : 952.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 882.00 ns (0.2%)
LB compute : 369.74 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.90 us (75.7%)
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 | 6.3419e+05 | 262144 | 1 | 4.134e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.686151384452254 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.004812541274104, dt = 0.0015713470039562217
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1774.00 ns (0.5%)
gen split merge : 972.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1092.00 ns (0.3%)
LB compute : 353.98 us (94.5%)
LB move op cnt : 0
LB apply : 3.48 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.07 us (77.1%)
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.2420e+05 | 262144 | 1 | 4.200e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.469637862032084 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.00638388827806, dt = 0.001571236541763131
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1663.00 ns (0.4%)
gen split merge : 922.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1133.00 ns (0.3%)
LB compute : 398.46 us (95.0%)
LB move op cnt : 0
LB apply : 3.86 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.40 us (76.9%)
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 | 6.3355e+05 | 262144 | 1 | 4.138e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.6706064911744 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.0079551248198233, dt = 0.0015711264041415429
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1873.00 ns (0.5%)
gen split merge : 1203.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.2%)
LB compute : 378.90 us (94.5%)
LB move op cnt : 0
LB apply : 4.20 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.21 us (76.7%)
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 | 6.2234e+05 | 262144 | 1 | 4.212e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.427782464619115 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.009526251223965, dt = 0.0015710167540618192
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 2.12 us (0.6%)
gen split merge : 941.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 872.00 ns (0.2%)
LB compute : 349.83 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.53 us (75.2%)
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 | 6.3190e+05 | 262144 | 1 | 4.148e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.633105683890197 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.011097267978027, dt = 0.0015709076940289546
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (0.2%)
patch tree reduce : 1903.00 ns (0.0%)
gen split merge : 1213.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 872.00 ns (0.0%)
LB compute : 4.50 ms (99.5%)
LB move op cnt : 0
LB apply : 4.35 us (0.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.73 us (78.5%)
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.1870e+05 | 262144 | 1 | 4.237e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.347350728228696 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.0126681756720557, dt = 0.0015707992588035126
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.6%)
patch tree reduce : 1803.00 ns (0.4%)
gen split merge : 1253.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.2%)
LB compute : 414.11 us (95.0%)
LB move op cnt : 0
LB apply : 4.07 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.05 us (75.8%)
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 | 6.2510e+05 | 262144 | 1 | 4.194e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.48443286864265 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.0142389749308593, dt = 0.0015706914259236617
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1773.00 ns (0.5%)
gen split merge : 962.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 892.00 ns (0.2%)
LB compute : 369.76 us (94.9%)
LB move op cnt : 0
LB apply : 3.63 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.06 us (68.9%)
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 | 6.3186e+05 | 262144 | 1 | 4.149e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.629228908629344 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.015809666356783, dt = 0.0015705841437434157
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1814.00 ns (0.4%)
gen split merge : 1001.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 871.00 ns (0.2%)
LB compute : 405.96 us (95.1%)
LB move op cnt : 0
LB apply : 3.81 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.14 us (76.0%)
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 | 6.3426e+05 | 262144 | 1 | 4.133e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.680052189093436 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.0173802505005263, dt = 0.0015704773707229428
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (0.9%)
patch tree reduce : 1874.00 ns (0.2%)
gen split merge : 962.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.1%)
LB compute : 767.46 us (97.4%)
LB move op cnt : 0
LB apply : 3.74 us (0.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.98 us (76.4%)
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 | 6.2561e+05 | 262144 | 1 | 4.190e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.49261843668037 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.0189507278712493, dt = 0.0015703711111830262
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (0.1%)
patch tree reduce : 2.14 us (0.0%)
gen split merge : 952.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 882.00 ns (0.0%)
LB compute : 6.16 ms (99.6%)
LB move op cnt : 0
LB apply : 4.40 us (0.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.59 us (79.7%)
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 | 6.1513e+05 | 262144 | 1 | 4.262e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.265711713253173 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.0205210989824325, dt = 0.001570265435266097
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (0.6%)
patch tree reduce : 2.16 us (0.2%)
gen split merge : 942.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.1%)
LB compute : 1039.82 us (98.0%)
LB move op cnt : 0
LB apply : 3.77 us (0.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.81 us (75.7%)
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 | 6.2276e+05 | 262144 | 1 | 4.209e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.429481272713058 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.0220913644176988, dt = 0.0015701604953057896
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.16 us (0.4%)
patch tree reduce : 1843.00 ns (0.1%)
gen split merge : 961.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 892.00 ns (0.1%)
LB compute : 1650.38 us (98.7%)
LB move op cnt : 0
LB apply : 3.77 us (0.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.77 us (73.7%)
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 | 6.1912e+05 | 262144 | 1 | 4.234e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.34996305234731 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.0236615249130048, dt = 0.0015700564644186227
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.0%)
patch tree reduce : 1783.00 ns (0.3%)
gen split merge : 951.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 971.00 ns (0.1%)
LB compute : 631.32 us (96.9%)
LB move op cnt : 0
LB apply : 3.92 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.05 us (75.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 | 6.2648e+05 | 262144 | 1 | 4.184e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.50783194360428 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.0252315813774233, dt = 0.0015699535616738379
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.18 us (2.0%)
patch tree reduce : 1984.00 ns (0.5%)
gen split merge : 1242.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 871.00 ns (0.2%)
LB compute : 343.07 us (94.1%)
LB move op cnt : 0
LB apply : 3.67 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.10 us (75.0%)
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 | 6.3333e+05 | 262144 | 1 | 4.139e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.654603497701673 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.0268015349390973, dt = 0.0015698520432793502
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.6%)
patch tree reduce : 1783.00 ns (0.4%)
gen split merge : 942.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 861.00 ns (0.2%)
LB compute : 398.73 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.90 us (72.4%)
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 | 6.2324e+05 | 262144 | 1 | 4.206e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.436130902135215 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.0283713869823767, dt = 0.0015697521607166557
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1874.00 ns (0.5%)
gen split merge : 992.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 942.00 ns (0.2%)
LB compute : 394.79 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.98 us (75.6%)
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 | 6.1859e+05 | 262144 | 1 | 4.238e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.335134014620445 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.0299411391430935, dt = 0.0015696541151086001
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (0.1%)
patch tree reduce : 1874.00 ns (0.0%)
gen split merge : 982.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 1182.00 ns (0.0%)
LB compute : 6.12 ms (99.6%)
LB move op cnt : 0
LB apply : 3.85 us (0.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.25 us (73.6%)
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 | 6.2020e+05 | 262144 | 1 | 4.227e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.368973080412903 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.031510793258202, dt = 0.0015695580266598592
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (0.1%)
patch tree reduce : 1783.00 ns (0.0%)
gen split merge : 942.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.0%)
LB compute : 6.11 ms (99.7%)
LB move op cnt : 0
LB apply : 3.70 us (0.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.32 us (74.4%)
Info: cfl dt = 0.0015694639253355184 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 6.1830e+05 | 262144 | 1 | 4.240e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.327116009785417 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.033080351284862, dt = 0.0015694639253355184
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.4%)
patch tree reduce : 1864.00 ns (0.4%)
gen split merge : 1002.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.2%)
LB compute : 431.26 us (95.5%)
LB move op cnt : 0
LB apply : 3.68 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.26 us (75.4%)
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 | 6.1889e+05 | 262144 | 1 | 4.236e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.339225966452087 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.0346498152101975, dt = 0.0015693717555950659
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (1.6%)
patch tree reduce : 1833.00 ns (0.4%)
gen split merge : 1302.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.2%)
LB compute : 440.67 us (95.4%)
LB move op cnt : 0
LB apply : 3.65 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.31 us (70.4%)
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 | 6.0164e+05 | 262144 | 1 | 4.357e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12.966509354376106 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.0362191869657926, dt = 0.0015692814961796872
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.47 us (0.2%)
patch tree reduce : 1834.00 ns (0.1%)
gen split merge : 942.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 961.00 ns (0.0%)
LB compute : 3.45 ms (99.4%)
LB move op cnt : 0
LB apply : 4.47 us (0.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.88 us (74.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 | 6.2092e+05 | 262144 | 1 | 4.222e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.381357418238922 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.0377884684619723, dt = 0.0015691932056701597
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (0.1%)
patch tree reduce : 1914.00 ns (0.0%)
gen split merge : 942.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 902.00 ns (0.0%)
LB compute : 6.12 ms (99.6%)
LB move op cnt : 0
LB apply : 4.05 us (0.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.21 us (73.9%)
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 | 6.1818e+05 | 262144 | 1 | 4.241e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.321617725023055 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.0393576616676423, dt = 0.0015691069403027276
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (0.2%)
patch tree reduce : 1773.00 ns (0.1%)
gen split merge : 952.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 1233.00 ns (0.0%)
LB compute : 3.08 ms (99.3%)
LB move op cnt : 0
LB apply : 4.35 us (0.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.75 us (74.2%)
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 | 6.2164e+05 | 262144 | 1 | 4.217e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.395337630621505 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.040926768607945, dt = 0.0015690226646586179
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (0.4%)
patch tree reduce : 2.00 us (0.1%)
gen split merge : 992.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.1%)
LB compute : 1538.05 us (98.6%)
LB move op cnt : 0
LB apply : 3.80 us (0.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.90 us (72.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 | 6.2492e+05 | 262144 | 1 | 4.195e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.46527913067747 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.0424957912726036, dt = 0.001568940262310863
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (0.5%)
patch tree reduce : 1833.00 ns (0.1%)
gen split merge : 962.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.1%)
LB compute : 1240.22 us (98.4%)
LB move op cnt : 0
LB apply : 3.82 us (0.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.04 us (76.1%)
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 | 6.2643e+05 | 262144 | 1 | 4.185e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.497146423935732 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.0440647315349145, dt = 0.0015688595757366167
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (0.1%)
patch tree reduce : 1874.00 ns (0.0%)
gen split merge : 952.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 932.00 ns (0.0%)
LB compute : 6.13 ms (99.7%)
LB move op cnt : 0
LB apply : 4.05 us (0.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.48 us (72.2%)
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 | 6.1796e+05 | 262144 | 1 | 4.242e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.314021526430688 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.045633591110651, dt = 0.0015687804424354256
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.3%)
patch tree reduce : 1784.00 ns (0.1%)
gen split merge : 942.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 952.00 ns (0.0%)
LB compute : 2.45 ms (99.1%)
LB move op cnt : 0
LB apply : 4.24 us (0.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.10 us (76.3%)
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.2232e+05 | 262144 | 1 | 4.212e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.407301567965142 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.0472023715530865, dt = 0.0015687027339200649
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (0.6%)
patch tree reduce : 1803.00 ns (0.2%)
gen split merge : 1082.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 881.00 ns (0.1%)
LB compute : 1132.88 us (98.2%)
LB move op cnt : 0
LB apply : 3.68 us (0.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.90 us (75.3%)
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 | 6.2109e+05 | 262144 | 1 | 4.221e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.38004388860605 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.0487710742870067, dt = 0.0015686263347459242
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (0.3%)
patch tree reduce : 1814.00 ns (0.1%)
gen split merge : 951.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.0%)
LB compute : 2.27 ms (99.1%)
LB move op cnt : 0
LB apply : 4.21 us (0.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.06 us (71.7%)
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 | 6.1303e+05 | 262144 | 1 | 4.276e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.205875503550853 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.0503397006217527, dt = 0.0015685511817150166
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (0.4%)
patch tree reduce : 1813.00 ns (0.1%)
gen split merge : 942.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 911.00 ns (0.0%)
LB compute : 1841.98 us (98.9%)
LB move op cnt : 0
LB apply : 3.94 us (0.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.02 us (75.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 | 6.2247e+05 | 262144 | 1 | 4.211e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.40844136391854 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.051908251803468, dt = 0.001568477222016397
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.62 us (0.7%)
patch tree reduce : 1804.00 ns (0.2%)
gen split merge : 1113.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 882.00 ns (0.1%)
LB compute : 1045.18 us (98.0%)
LB move op cnt : 0
LB apply : 3.70 us (0.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.98 us (75.8%)
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 | 6.2389e+05 | 262144 | 1 | 4.202e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.438434813146324 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.0534767290254843, dt = 0.0015684044127318348
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (0.1%)
patch tree reduce : 2.00 us (0.0%)
gen split merge : 951.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 851.00 ns (0.0%)
LB compute : 6.13 ms (99.7%)
LB move op cnt : 0
LB apply : 3.72 us (0.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.72 us (75.3%)
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 | 6.1668e+05 | 262144 | 1 | 4.251e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.282506420415466 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.0550451334382163, dt = 0.0015683327886699436
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (0.7%)
patch tree reduce : 2.16 us (0.2%)
gen split merge : 982.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 961.00 ns (0.1%)
LB compute : 994.43 us (97.9%)
LB move op cnt : 0
LB apply : 4.00 us (0.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.48 us (78.5%)
Info: cfl dt = 0.0015682623575360415 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 6.2800e+05 | 262144 | 1 | 4.174e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.525723260361815 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.056613466226886, dt = 0.0015682623575360415
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1803.00 ns (0.4%)
gen split merge : 931.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1142.00 ns (0.3%)
LB compute : 402.53 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.62 us (73.2%)
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 | 6.2469e+05 | 262144 | 1 | 4.196e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.45376978650589 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.058181728584422, dt = 0.0015681931328958999
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (0.6%)
patch tree reduce : 1874.00 ns (0.2%)
gen split merge : 951.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 1212.00 ns (0.1%)
LB compute : 1208.03 us (98.3%)
LB move op cnt : 0
LB apply : 4.08 us (0.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.30 us (77.2%)
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 | 6.2607e+05 | 262144 | 1 | 4.187e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.482875786309267 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.0597499217173176, dt = 0.0015681251545762345
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 2.07 us (0.5%)
gen split merge : 931.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 932.00 ns (0.2%)
LB compute : 376.45 us (94.9%)
LB move op cnt : 0
LB apply : 3.29 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.54 us (72.3%)
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 | 6.2773e+05 | 262144 | 1 | 4.176e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.518037183240516 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.061318046871894, dt = 0.0015680584778896157
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (0.1%)
patch tree reduce : 1783.00 ns (0.0%)
gen split merge : 932.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.0%)
LB compute : 6.17 ms (99.7%)
LB move op cnt : 0
LB apply : 3.70 us (0.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.48 us (76.1%)
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 | 6.1846e+05 | 262144 | 1 | 4.239e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.317837455713683 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.0628861053497833, dt = 0.0015679931599174432
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1814.00 ns (0.5%)
gen split merge : 962.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 861.00 ns (0.2%)
LB compute : 377.13 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.36 us (74.1%)
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 | 6.2922e+05 | 262144 | 1 | 4.166e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.549140344730718 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.064454098509701, dt = 0.0015679292740564243
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.9%)
patch tree reduce : 1803.00 ns (0.5%)
gen split merge : 1353.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1042.00 ns (0.3%)
LB compute : 340.76 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.99 us (74.7%)
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 | 6.2639e+05 | 262144 | 1 | 4.185e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.48761221609256 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.0660220277837573, dt = 0.0015678669805294517
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.69 us (0.6%)
patch tree reduce : 1974.00 ns (0.1%)
gen split merge : 982.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 872.00 ns (0.1%)
LB compute : 1354.79 us (98.4%)
LB move op cnt : 0
LB apply : 3.92 us (0.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.01 us (75.6%)
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 | 6.1791e+05 | 262144 | 1 | 4.242e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.304481591367088 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.0675898947642866, dt = 0.001567806288350672
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (0.2%)
patch tree reduce : 1854.00 ns (0.1%)
gen split merge : 952.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.0%)
LB compute : 3.10 ms (99.3%)
LB move op cnt : 0
LB apply : 3.96 us (0.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.71 us (73.8%)
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 | 6.0790e+05 | 262144 | 1 | 4.312e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.088389486131204 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.0691577010526374, dt = 0.0015677470960003942
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.3%)
patch tree reduce : 1773.00 ns (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 : 443.70 us (95.7%)
LB move op cnt : 0
LB apply : 4.02 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.90 us (70.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 | 6.1924e+05 | 262144 | 1 | 4.233e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.332005427010555 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.0707254481486377, dt = 0.0015676892736442313
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.5%)
patch tree reduce : 1874.00 ns (0.4%)
gen split merge : 982.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 882.00 ns (0.2%)
LB compute : 438.82 us (95.5%)
LB move op cnt : 0
LB apply : 3.67 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.46 us (71.9%)
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 | 5.9948e+05 | 262144 | 1 | 4.373e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12.90624867733036 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.0722931374222817, dt = 0.0015676327096910193
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (0.5%)
patch tree reduce : 1944.00 ns (0.1%)
gen split merge : 962.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 882.00 ns (0.1%)
LB compute : 1328.16 us (98.4%)
LB move op cnt : 0
LB apply : 3.85 us (0.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.00 us (73.3%)
Info: cfl dt = 0.0015675773315441501 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 6.0766e+05 | 262144 | 1 | 4.314e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.0818096762038 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.0738607701319727, dt = 0.0015675773315441501
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (0.7%)
patch tree reduce : 1774.00 ns (0.2%)
gen split merge : 971.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 891.00 ns (0.1%)
LB compute : 1020.18 us (98.0%)
LB move op cnt : 0
LB apply : 3.85 us (0.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.02 us (73.4%)
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 | 6.1999e+05 | 262144 | 1 | 4.228e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.346806265778106 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.0754283474635167, dt = 0.0015675231112095064
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.5%)
patch tree reduce : 1674.00 ns (0.4%)
gen split merge : 1172.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1403.00 ns (0.3%)
LB compute : 436.21 us (95.4%)
LB move op cnt : 0
LB apply : 3.74 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.33 us (69.3%)
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 | 6.2739e+05 | 262144 | 1 | 4.178e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.505576460420293 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.0769958705747262, dt = 0.0015674700393651124
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 2.01 us (0.5%)
gen split merge : 942.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1011.00 ns (0.2%)
LB compute : 384.77 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.52 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 | 6.2791e+05 | 262144 | 1 | 4.175e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.516308465344846 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.0785633406140915, dt = 0.001567418170129004
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 23.16 us (6.0%)
patch tree reduce : 1783.00 ns (0.5%)
gen split merge : 1132.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1092.00 ns (0.3%)
LB compute : 348.18 us (90.2%)
LB move op cnt : 0
LB apply : 4.16 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.77 us (74.0%)
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 | 6.2807e+05 | 262144 | 1 | 4.174e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.519246353793523 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.0801307587842204, dt = 0.001567367632429346
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.3%)
patch tree reduce : 2.04 us (0.4%)
gen split merge : 952.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 961.00 ns (0.2%)
LB compute : 501.30 us (96.0%)
LB move op cnt : 0
LB apply : 3.88 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.79 us (72.2%)
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 | 6.3094e+05 | 262144 | 1 | 4.155e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.580593167721524 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.08169812641665, dt = 0.0015673186203880017
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (0.1%)
patch tree reduce : 1753.00 ns (0.0%)
gen split merge : 952.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 882.00 ns (0.0%)
LB compute : 4.54 ms (99.6%)
LB move op cnt : 0
LB apply : 4.02 us (0.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.21 us (76.7%)
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 | 6.2469e+05 | 262144 | 1 | 4.196e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.445796716287061 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.083265445037038, dt = 0.0015672713434120727
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1974.00 ns (0.5%)
gen split merge : 992.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 901.00 ns (0.2%)
LB compute : 352.30 us (90.5%)
LB move op cnt : 0
LB apply : 3.51 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.88 us (73.8%)
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 | 6.2730e+05 | 262144 | 1 | 4.179e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.50143087298708 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.08483271638045, dt = 0.0015672259926631394
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.5%)
patch tree reduce : 2.12 us (0.2%)
gen split merge : 1172.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 952.00 ns (0.1%)
LB compute : 1130.39 us (97.4%)
LB move op cnt : 0
LB apply : 8.62 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.88 us (75.0%)
Info: cfl dt = 0.0015671827435822557 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 6.2293e+05 | 262144 | 1 | 4.208e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.407146348702822 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.0863999423731134, dt = 0.0015671827435822557
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1833.00 ns (0.5%)
gen split merge : 1011.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 871.00 ns (0.2%)
LB compute : 377.10 us (94.9%)
LB move op cnt : 0
LB apply : 3.54 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.65 us (72.3%)
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 | 6.3368e+05 | 262144 | 1 | 4.137e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.637981304893025 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.0879671251166956, dt = 0.0015671417825654653
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.37 us (0.2%)
patch tree reduce : 2.10 us (0.1%)
gen split merge : 1303.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.0%)
LB compute : 3.76 ms (99.4%)
LB move op cnt : 0
LB apply : 3.97 us (0.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.17 us (74.4%)
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 | 6.2405e+05 | 262144 | 1 | 4.201e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.430535288498302 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.089534266899261, dt = 0.0015671032491933596
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.7%)
patch tree reduce : 1674.00 ns (0.4%)
gen split merge : 931.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 891.00 ns (0.2%)
LB compute : 389.72 us (94.8%)
LB move op cnt : 0
LB apply : 4.21 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.94 us (75.4%)
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 | 5.9491e+05 | 262144 | 1 | 4.406e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12.803092622091434 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.091101370148454, dt = 0.00156706716554068
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1763.00 ns (0.4%)
gen split merge : 952.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1223.00 ns (0.3%)
LB compute : 349.88 us (88.9%)
LB move op cnt : 0
LB apply : 26.88 us (6.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.92 us (73.7%)
Info: cfl dt = 0.0015670334330571709 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 5.8543e+05 | 262144 | 1 | 4.478e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12.598643316448351 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.092668437313995, dt = 0.0015670334330571709
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1823.00 ns (0.5%)
gen split merge : 1022.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1333.00 ns (0.3%)
LB compute : 376.90 us (94.6%)
LB move op cnt : 0
LB apply : 3.72 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.00 us (76.7%)
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 | 6.2524e+05 | 262144 | 1 | 4.193e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.455072184726134 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.0942354707470523, dt = 0.0015670019526565116
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 2.01 us (0.5%)
gen split merge : 972.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1293.00 ns (0.3%)
LB compute : 374.89 us (94.7%)
LB move op cnt : 0
LB apply : 3.53 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.28 us (72.8%)
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 | 6.3984e+05 | 262144 | 1 | 4.097e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.768990705958577 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.0958024726997087, dt = 0.0015669727219328644
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (0.2%)
patch tree reduce : 1613.00 ns (0.0%)
gen split merge : 1222.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 961.00 ns (0.0%)
LB compute : 4.14 ms (99.5%)
LB move op cnt : 0
LB apply : 4.01 us (0.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.29 us (75.4%)
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 | 6.2096e+05 | 262144 | 1 | 4.222e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.362538165592008 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.0973694454216414, dt = 0.0015669458525472933
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 2.12 us (0.3%)
gen split merge : 951.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 1022.00 ns (0.1%)
LB compute : 784.97 us (97.5%)
LB move op cnt : 0
LB apply : 3.48 us (0.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.79 us (71.5%)
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 | 6.2181e+05 | 262144 | 1 | 4.216e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.380499831573923 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.0989363912741887, dt = 0.0015669215442107017
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1934.00 ns (0.5%)
gen split merge : 982.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 882.00 ns (0.2%)
LB compute : 357.54 us (94.6%)
LB move op cnt : 0
LB apply : 3.63 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.46 us (66.9%)
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 | 6.2968e+05 | 262144 | 1 | 4.163e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.549664008720331 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.1005033128183994, dt = 0.001566900034301221
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 2.09 us (0.5%)
gen split merge : 962.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 891.00 ns (0.2%)
LB compute : 376.84 us (94.6%)
LB move op cnt : 0
LB apply : 4.14 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.71 us (72.4%)
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 | 6.3153e+05 | 262144 | 1 | 4.151e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.589341728937947 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.1020702128527007, dt = 0.0015667938942108268
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (0.1%)
patch tree reduce : 1753.00 ns (0.0%)
gen split merge : 982.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 991.00 ns (0.0%)
LB compute : 6.01 ms (99.6%)
LB move op cnt : 0
LB apply : 3.90 us (0.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.12 us (74.6%)
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 | 6.1092e+05 | 262144 | 1 | 4.291e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.144918754647993 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.1036370067469115, dt = 0.0015666514727226627
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1964.00 ns (0.5%)
gen split merge : 1002.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.2%)
LB compute : 375.23 us (94.8%)
LB move op cnt : 0
LB apply : 3.92 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.92 us (73.3%)
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 | 6.2656e+05 | 262144 | 1 | 4.184e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.480343405521953 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.1052036582196343, dt = 0.0015665089989299287
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.7%)
patch tree reduce : 2.12 us (0.5%)
gen split merge : 1343.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 882.00 ns (0.2%)
LB compute : 380.68 us (94.6%)
LB move op cnt : 0
LB apply : 3.89 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.34 us (74.2%)
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 | 6.3189e+05 | 262144 | 1 | 4.149e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.593636722358049 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.1067701672185644, dt = 0.001566366500667422
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1764.00 ns (0.4%)
gen split merge : 961.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1172.00 ns (0.3%)
LB compute : 371.41 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.18 us (75.3%)
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 | 6.3426e+05 | 262144 | 1 | 4.133e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.643428570848938 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.108336533719232, dt = 0.0015662240693167238
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.5%)
patch tree reduce : 1723.00 ns (0.4%)
gen split merge : 972.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1052.00 ns (0.2%)
LB compute : 412.18 us (95.3%)
LB move op cnt : 0
LB apply : 3.72 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.12 us (74.0%)
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 | 6.2371e+05 | 262144 | 1 | 4.203e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.415339566496188 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.1099027577885487, dt = 0.0015660818670461987
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.7%)
patch tree reduce : 1663.00 ns (0.4%)
gen split merge : 1132.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 892.00 ns (0.2%)
LB compute : 379.19 us (94.8%)
LB move op cnt : 0
LB apply : 3.73 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.76 us (74.6%)
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 | 6.2866e+05 | 262144 | 1 | 4.170e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.520507822697065 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.1114688396555947, dt = 0.0015659401085589201
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 2.09 us (0.5%)
gen split merge : 982.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 952.00 ns (0.2%)
LB compute : 375.80 us (94.8%)
LB move op cnt : 0
LB apply : 3.60 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.12 us (72.8%)
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 | 6.2771e+05 | 262144 | 1 | 4.176e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.498945546855 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.1130347797641535, dt = 0.0015657989756030426
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 2.12 us (0.5%)
gen split merge : 1233.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 952.00 ns (0.2%)
LB compute : 374.09 us (94.6%)
LB move op cnt : 0
LB apply : 3.67 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.19 us (72.6%)
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 | 6.3259e+05 | 262144 | 1 | 4.144e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.60264784178555 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.1146005787397564, dt = 0.001565658544722571
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.27 us (1.8%)
patch tree reduce : 1673.00 ns (0.4%)
gen split merge : 952.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.2%)
LB compute : 376.09 us (94.8%)
LB move op cnt : 0
LB apply : 3.53 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.56 us (71.5%)
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 | 6.3213e+05 | 262144 | 1 | 4.147e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.59135349746762 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.116166237284479, dt = 0.0005004293821877503
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.16 us (0.2%)
patch tree reduce : 1894.00 ns (0.0%)
gen split merge : 1032.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 882.00 ns (0.0%)
LB compute : 4.27 ms (99.5%)
LB move op cnt : 0
LB apply : 3.86 us (0.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.75 us (72.9%)
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 | 6.2406e+05 | 262144 | 1 | 4.201e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.288790975445381 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 585.074026308 (s) [Godunov][rank=0]
Info: dump to _to_trash/ramses_kh/periodic_0017.vtk [VTK Dump][rank=0]
- took 51.33 ms, bandwidth = 759.73 MB/s
amr::Godunov: t = 2.1166666666666667, dt = 0.0015654831777232414
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.7%)
patch tree reduce : 1843.00 ns (0.4%)
gen split merge : 982.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1001.00 ns (0.2%)
LB compute : 395.88 us (94.9%)
LB move op cnt : 0
LB apply : 3.89 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.42 us (71.6%)
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.0882e+05 | 262144 | 1 | 4.306e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.088793970574228 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.11823214984439, dt = 0.001565337590710194
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 8.01 us (1.9%)
patch tree reduce : 1904.00 ns (0.5%)
gen split merge : 982.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.2%)
LB compute : 396.27 us (94.5%)
LB move op cnt : 0
LB apply : 4.12 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.07 us (76.9%)
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 | 6.2464e+05 | 262144 | 1 | 4.197e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.427695504444456 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.1197974874351004, dt = 0.0015651920971665372
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.6%)
patch tree reduce : 1784.00 ns (0.4%)
gen split merge : 942.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.2%)
LB compute : 401.85 us (95.1%)
LB move op cnt : 0
LB apply : 3.93 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.00 us (74.0%)
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 | 6.2540e+05 | 262144 | 1 | 4.192e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.442651611916512 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.121362679532267, dt = 0.001565047525572721
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.5%)
patch tree reduce : 1793.00 ns (0.4%)
gen split merge : 932.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1282.00 ns (0.3%)
LB compute : 428.38 us (95.4%)
LB move op cnt : 0
LB apply : 3.97 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.91 us (74.6%)
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 | 6.3104e+05 | 262144 | 1 | 4.154e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.562655773677596 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.1229277270578395, dt = 0.0015649045473800653
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (0.3%)
patch tree reduce : 1914.00 ns (0.1%)
gen split merge : 942.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 1333.00 ns (0.1%)
LB compute : 2.43 ms (99.1%)
LB move op cnt : 0
LB apply : 3.65 us (0.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.36 us (77.7%)
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 | 6.2030e+05 | 262144 | 1 | 4.226e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.330691918831452 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.1244926316052197, dt = 0.0015647635076918476
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (0.5%)
patch tree reduce : 1913.00 ns (0.1%)
gen split merge : 942.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.1%)
LB compute : 1274.99 us (98.4%)
LB move op cnt : 0
LB apply : 3.71 us (0.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.22 us (72.5%)
Info: cfl dt = 0.0015646244444504074 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 6.2273e+05 | 262144 | 1 | 4.210e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.381730576781248 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.1260573951129116, dt = 0.0015646244444504074
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.80 us (1.4%)
patch tree reduce : 1623.00 ns (0.3%)
gen split merge : 952.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 921.00 ns (0.2%)
LB compute : 547.80 us (96.2%)
LB move op cnt : 0
LB apply : 3.97 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.85 us (74.1%)
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.1949e+05 | 262144 | 1 | 4.232e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.310977717204041 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.127622019557362, dt = 0.0015644872272882364
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (1.0%)
patch tree reduce : 1823.00 ns (0.2%)
gen split merge : 942.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 902.00 ns (0.1%)
LB compute : 734.97 us (97.1%)
LB move op cnt : 0
LB apply : 4.21 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.54 us (77.6%)
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 | 6.3111e+05 | 262144 | 1 | 4.154e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.559285174028307 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.1291865067846505, dt = 0.0015643516617685684
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.05 us (1.7%)
patch tree reduce : 1814.00 ns (0.4%)
gen split merge : 1242.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 961.00 ns (0.2%)
LB compute : 396.04 us (95.1%)
LB move op cnt : 0
LB apply : 3.46 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.06 us (76.3%)
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 | 6.3533e+05 | 262144 | 1 | 4.126e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.648795239077108 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.130750858446419, dt = 0.0015642175359979063
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 2.10 us (0.5%)
gen split merge : 931.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 881.00 ns (0.2%)
LB compute : 363.68 us (94.7%)
LB move op cnt : 0
LB apply : 3.88 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.37 us (72.0%)
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.3011e+05 | 262144 | 1 | 4.160e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.53548183549448 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.132315075982417, dt = 0.0015640846262200314
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1894.00 ns (0.4%)
gen split merge : 932.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 862.00 ns (0.2%)
LB compute : 407.66 us (95.1%)
LB move op cnt : 0
LB apply : 4.28 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.12 us (76.6%)
Info: cfl dt = 0.0015639526820639264 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 6.3048e+05 | 262144 | 1 | 4.158e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.542459764505779 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.133879160608637, dt = 0.0015639526820639264
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1944.00 ns (0.5%)
gen split merge : 972.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.3%)
LB compute : 374.73 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.79 us (73.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 | 6.3325e+05 | 262144 | 1 | 4.140e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.600599813270982 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.135443113290701, dt = 0.0015638214087112664
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.8%)
patch tree reduce : 2.06 us (0.5%)
gen split merge : 1082.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.2%)
LB compute : 376.57 us (94.7%)
LB move op cnt : 0
LB apply : 3.55 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.98 us (74.8%)
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 | 6.3220e+05 | 262144 | 1 | 4.147e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.577008018359141 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.137006934699412, dt = 0.0015636904702367974
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance 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.98 us (0.5%)
patch tree reduce : 1963.00 ns (0.1%)
gen split merge : 1212.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 952.00 ns (0.0%)
LB compute : 3.30 ms (99.1%)
LB move op cnt : 0
LB apply : 4.24 us (0.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.75 us (72.5%)
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 | 6.1184e+05 | 262144 | 1 | 4.285e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.138638503222532 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.138570625169649, dt = 0.0015635595645666876
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.15 us (0.2%)
patch tree reduce : 1763.00 ns (0.0%)
gen split merge : 962.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 892.00 ns (0.0%)
LB compute : 4.61 ms (99.5%)
LB move op cnt : 0
LB apply : 3.73 us (0.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.52 us (72.6%)
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 | 6.2640e+05 | 262144 | 1 | 4.185e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.45030604108661 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.1401341847342157, dt = 0.0015634284292350017
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1723.00 ns (0.4%)
gen split merge : 951.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 871.00 ns (0.2%)
LB compute : 396.42 us (93.9%)
LB move op cnt : 0
LB apply : 3.53 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.92 us (73.1%)
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 | 6.3178e+05 | 262144 | 1 | 4.149e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.564587510297164 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.141697613163451, dt = 0.001563296817347579
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1954.00 ns (0.5%)
gen split merge : 1062.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 942.00 ns (0.3%)
LB compute : 338.99 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.58 us (72.6%)
Info: cfl dt = 0.001563164495708653 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 6.3388e+05 | 262144 | 1 | 4.136e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.608576483973419 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.1432609099807984, dt = 0.001563164495708653
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.8%)
patch tree reduce : 2.14 us (0.5%)
gen split merge : 1242.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 911.00 ns (0.2%)
LB compute : 376.31 us (94.7%)
LB move op cnt : 0
LB apply : 3.40 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.60 us (71.7%)
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 | 6.2657e+05 | 262144 | 1 | 4.184e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.450445375189371 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.144824074476507, dt = 0.0015630312658810473
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.5%)
patch tree reduce : 2.15 us (0.5%)
gen split merge : 982.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 872.00 ns (0.2%)
LB compute : 417.00 us (95.2%)
LB move op cnt : 0
LB apply : 3.97 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.89 us (73.7%)
Info: cfl dt = 0.0015628969903294665 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 6.3368e+05 | 262144 | 1 | 4.137e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.60200117329966 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.146387105742388, dt = 0.0015628969903294665
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (0.8%)
patch tree reduce : 1824.00 ns (0.2%)
gen split merge : 972.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 942.00 ns (0.1%)
LB compute : 830.65 us (97.5%)
LB move op cnt : 0
LB apply : 3.87 us (0.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.21 us (74.2%)
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 | 6.2285e+05 | 262144 | 1 | 4.209e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.368382479001946 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.1479500027327174, dt = 0.0015627616075924906
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.16 us (1.8%)
patch tree reduce : 1743.00 ns (0.4%)
gen split merge : 972.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 942.00 ns (0.2%)
LB compute : 366.92 us (94.5%)
LB move op cnt : 0
LB apply : 4.14 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.82 us (74.6%)
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 | 6.3461e+05 | 262144 | 1 | 4.131e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.619562893575859 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.14951276434031, dt = 0.00156262561881976
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1773.00 ns (0.4%)
gen split merge : 1042.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 891.00 ns (0.2%)
LB compute : 387.36 us (95.0%)
LB move op cnt : 0
LB apply : 3.74 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.88 us (73.5%)
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 | 6.3247e+05 | 262144 | 1 | 4.145e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.572418154429455 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.1510753899591295, dt = 0.0015624891527310843
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 2.25 us (0.6%)
gen split merge : 962.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1082.00 ns (0.3%)
LB compute : 370.33 us (94.7%)
LB move op cnt : 0
LB apply : 3.63 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.26 us (73.4%)
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 | 6.2995e+05 | 262144 | 1 | 4.161e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.517201365723833 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.1526378791118606, dt = 0.0015623521995471045
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1763.00 ns (0.4%)
gen split merge : 952.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.3%)
LB compute : 372.79 us (94.8%)
LB move op cnt : 0
LB apply : 3.51 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.15 us (76.6%)
Info: cfl dt = 0.0015622148450169576 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 6.3442e+05 | 262144 | 1 | 4.132e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.61178659799534 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.1542002313114077, dt = 0.0015622148450169576
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 2.00 us (0.5%)
gen split merge : 1042.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 952.00 ns (0.2%)
LB compute : 377.79 us (91.1%)
LB move op cnt : 0
LB apply : 3.68 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.09 us (74.2%)
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 | 6.3007e+05 | 262144 | 1 | 4.161e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.517428833636382 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.155762446156425, dt = 0.0015620772218149484
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.70 us (1.9%)
patch tree reduce : 1974.00 ns (0.5%)
gen split merge : 952.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 952.00 ns (0.2%)
LB compute : 382.08 us (94.7%)
LB move op cnt : 0
LB apply : 3.46 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.83 us (72.7%)
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 | 6.2830e+05 | 262144 | 1 | 4.172e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.478145866220226 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.15732452337824, dt = 0.0015619394873630792
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.7%)
patch tree reduce : 1743.00 ns (0.4%)
gen split merge : 1032.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 872.00 ns (0.2%)
LB compute : 398.03 us (95.0%)
LB move op cnt : 0
LB apply : 3.87 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.99 us (74.7%)
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 | 6.3243e+05 | 262144 | 1 | 4.145e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.565521781905346 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.158886462865603, dt = 0.0015618018069469574
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.2%)
patch tree reduce : 1754.00 ns (0.1%)
gen split merge : 1262.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 961.00 ns (0.0%)
LB compute : 3.48 ms (99.4%)
LB move op cnt : 0
LB apply : 4.23 us (0.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.63 us (75.9%)
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 | 6.2672e+05 | 262144 | 1 | 4.183e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.442049266760204 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.16044826467255, dt = 0.0015616643414717473
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 2.12 us (0.5%)
gen split merge : 942.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 872.00 ns (0.2%)
LB compute : 380.38 us (94.9%)
LB move op cnt : 0
LB apply : 3.38 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.52 us (70.0%)
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 | 6.3374e+05 | 262144 | 1 | 4.136e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.59131608206665 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.1620099290140216, dt = 0.0015615272247862858
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (0.7%)
patch tree reduce : 1883.00 ns (0.2%)
gen split merge : 932.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.1%)
LB compute : 914.00 us (97.8%)
LB move op cnt : 0
LB apply : 3.89 us (0.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.83 us (75.3%)
Info: cfl dt = 0.0015613905521362128 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 6.2680e+05 | 262144 | 1 | 4.182e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.441363041946563 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.1635714562388078, dt = 0.0015613905521362128
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (0.1%)
patch tree reduce : 1753.00 ns (0.0%)
gen split merge : 952.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 1233.00 ns (0.0%)
LB compute : 6.17 ms (99.6%)
LB move op cnt : 0
LB apply : 4.66 us (0.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.03 us (79.1%)
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 | 6.2458e+05 | 262144 | 1 | 4.197e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.392421210202613 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.165132846790944, dt = 0.0015612543879614975
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 2.03 us (0.5%)
gen split merge : 971.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 861.00 ns (0.2%)
LB compute : 395.45 us (95.1%)
LB move op cnt : 0
LB apply : 3.55 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.05 us (75.4%)
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 | 6.3256e+05 | 262144 | 1 | 4.144e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.562438024740251 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.1666941011789054, dt = 0.0015611187530796748
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.25 us (1.8%)
patch tree reduce : 1783.00 ns (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 : 391.43 us (94.8%)
LB move op cnt : 0
LB apply : 3.96 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.90 us (73.0%)
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 | 6.3202e+05 | 262144 | 1 | 4.148e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.54965906955185 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.168255219931985, dt = 0.0015609836111217335
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.6%)
patch tree reduce : 1864.00 ns (0.4%)
gen split merge : 1283.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.2%)
LB compute : 409.67 us (95.1%)
LB move op cnt : 0
LB apply : 3.59 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.96 us (75.5%)
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 | 6.3292e+05 | 262144 | 1 | 4.142e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.567789070087228 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.169816203543107, dt = 0.001560848866445671
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1823.00 ns (0.5%)
gen split merge : 972.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1012.00 ns (0.3%)
LB compute : 382.10 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.67 us (72.6%)
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 | 6.3355e+05 | 262144 | 1 | 4.138e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.58012360482878 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.1713770524095524, dt = 0.0015607143766266521
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1944.00 ns (0.5%)
gen split merge : 952.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1002.00 ns (0.3%)
LB compute : 374.51 us (94.9%)
LB move op cnt : 0
LB apply : 3.45 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.05 us (71.7%)
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 | 6.2849e+05 | 262144 | 1 | 4.171e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.470441623803724 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.172937766786179, dt = 0.0015605801824147328
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (0.3%)
patch tree reduce : 1793.00 ns (0.1%)
gen split merge : 1202.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 18.13 us (0.7%)
LB compute : 2.50 ms (98.5%)
LB move op cnt : 0
LB apply : 3.67 us (0.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.73 us (74.1%)
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 | 6.2518e+05 | 262144 | 1 | 4.193e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.398446058756386 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.1744983469685937, dt = 0.0015604461849923297
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.2%)
patch tree reduce : 1744.00 ns (0.3%)
gen split merge : 962.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 861.00 ns (0.2%)
LB compute : 524.85 us (96.2%)
LB move op cnt : 0
LB apply : 3.82 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.52 us (71.9%)
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 | 6.1993e+05 | 262144 | 1 | 4.229e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.284850994945657 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.176058793153586, dt = 0.001560312229899567
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.5%)
patch tree reduce : 1943.00 ns (0.4%)
gen split merge : 1253.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 872.00 ns (0.2%)
LB compute : 428.73 us (95.4%)
LB move op cnt : 0
LB apply : 3.53 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.88 us (75.0%)
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 | 6.2705e+05 | 262144 | 1 | 4.181e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.43630085654285 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.177619105383486, dt = 0.001560178153356089
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1743.00 ns (0.5%)
gen split merge : 972.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.3%)
LB compute : 353.28 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.91 us (75.1%)
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 | 6.3257e+05 | 262144 | 1 | 4.144e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.553404988815904 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.179179283536842, dt = 0.001560043883515534
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1763.00 ns (0.5%)
gen split merge : 932.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1002.00 ns (0.3%)
LB compute : 348.29 us (94.6%)
LB move op cnt : 0
LB apply : 3.41 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.81 us (75.5%)
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 | 6.3437e+05 | 262144 | 1 | 4.132e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.59076142835011 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.1807393274203575, dt = 0.0015599094636282698
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1884.00 ns (0.3%)
gen split merge : 942.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 1322.00 ns (0.2%)
LB compute : 681.58 us (96.9%)
LB move op cnt : 0
LB apply : 4.41 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.94 us (78.3%)
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 | 6.3540e+05 | 262144 | 1 | 4.126e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.611507819764022 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.1822992368839857, dt = 0.0015597749808167543
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance 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.31 us (2.1%)
patch tree reduce : 3.48 us (0.9%)
gen split merge : 942.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 952.00 ns (0.2%)
LB compute : 365.90 us (93.5%)
LB move op cnt : 0
LB apply : 3.68 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.05 us (74.3%)
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.3285e+05 | 262144 | 1 | 4.142e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.555860021773077 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.1838590118648025, dt = 0.001559640534665567
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.23 us (1.9%)
patch tree reduce : 1733.00 ns (0.4%)
gen split merge : 942.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1252.00 ns (0.3%)
LB compute : 366.18 us (94.4%)
LB move op cnt : 0
LB apply : 3.62 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.78 us (73.5%)
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.3208e+05 | 262144 | 1 | 4.147e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.538107311749886 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.185418652399468, dt = 0.0015594755585195909
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1664.00 ns (0.5%)
gen split merge : 941.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 881.00 ns (0.2%)
LB compute : 345.76 us (94.6%)
LB move op cnt : 0
LB apply : 3.68 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.85 us (74.4%)
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 | 6.3682e+05 | 262144 | 1 | 4.116e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.638158998644172 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.1869781279579876, dt = 0.0015592975306503777
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1764.00 ns (0.5%)
gen split merge : 931.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.3%)
LB compute : 361.36 us (94.6%)
LB move op cnt : 0
LB apply : 3.54 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.72 us (75.7%)
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 | 6.3015e+05 | 262144 | 1 | 4.160e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.493733615456083 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.188537425488638, dt = 0.0015591201572535858
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1963.00 ns (0.5%)
gen split merge : 1082.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.2%)
LB compute : 400.81 us (95.1%)
LB move op cnt : 0
LB apply : 3.81 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.17 us (77.1%)
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 | 6.3225e+05 | 262144 | 1 | 4.146e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.537250964162743 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.1900965456458916, dt = 0.0015589435071901565
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1764.00 ns (0.5%)
gen split merge : 932.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 961.00 ns (0.2%)
LB compute : 371.44 us (94.8%)
LB move op cnt : 0
LB apply : 3.64 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.83 us (74.0%)
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 | 6.3376e+05 | 262144 | 1 | 4.136e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.568121299272114 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.191655489153082, dt = 0.001558767264712717
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1774.00 ns (0.4%)
gen split merge : 961.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.2%)
LB compute : 401.89 us (95.2%)
LB move op cnt : 0
LB apply : 3.66 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.90 us (74.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.3123e+05 | 262144 | 1 | 4.153e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.512433324780122 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.1932142564177948, dt = 0.0015585912251825972
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.03 us (0.5%)
gen split merge : 972.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 881.00 ns (0.2%)
LB compute : 349.90 us (94.6%)
LB move op cnt : 0
LB apply : 3.72 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.56 us (72.6%)
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 | 6.3634e+05 | 262144 | 1 | 4.120e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.620304017505575 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.1947728476429775, dt = 0.0015584152552174156
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 2.01 us (0.5%)
gen split merge : 1223.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 882.00 ns (0.2%)
LB compute : 375.32 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.92 us (74.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 | 6.2900e+05 | 262144 | 1 | 4.168e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.461564702028577 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.196331262898195, dt = 0.0015582392465150563
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (0.7%)
patch tree reduce : 1754.00 ns (0.2%)
gen split merge : 961.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 851.00 ns (0.1%)
LB compute : 899.74 us (97.8%)
LB move op cnt : 0
LB apply : 3.78 us (0.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.31 us (75.3%)
Info: cfl dt = 0.001558063120948792 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 6.2734e+05 | 262144 | 1 | 4.179e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.424518023474215 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.1978895021447102, dt = 0.001558063120948792
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (0.1%)
patch tree reduce : 1793.00 ns (0.0%)
gen split merge : 951.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 871.00 ns (0.0%)
LB compute : 6.16 ms (99.7%)
LB move op cnt : 0
LB apply : 3.79 us (0.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.04 us (75.2%)
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 | 6.0605e+05 | 262144 | 1 | 4.325e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12.967541161543494 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.199447565265659, dt = 0.0015578868292454885
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (0.1%)
patch tree reduce : 1823.00 ns (0.0%)
gen split merge : 1243.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 1172.00 ns (0.0%)
LB compute : 4.65 ms (99.6%)
LB move op cnt : 0
LB apply : 3.89 us (0.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.13 us (76.3%)
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 | 6.1161e+05 | 262144 | 1 | 4.286e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.084901725463594 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.2010054520949045, dt = 0.001557710348906484
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (0.8%)
patch tree reduce : 1803.00 ns (0.2%)
gen split merge : 942.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.1%)
LB compute : 865.22 us (97.6%)
LB move op cnt : 0
LB apply : 4.00 us (0.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.13 us (74.3%)
Info: cfl dt = 0.0015575336862680487 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 6.1490e+05 | 262144 | 1 | 4.263e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.153833906816548 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.202563162443811, dt = 0.0015575336862680487
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (1.6%)
patch tree reduce : 1864.00 ns (0.4%)
gen split merge : 1222.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.2%)
LB compute : 438.62 us (95.2%)
LB move op cnt : 0
LB apply : 4.08 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.02 us (75.5%)
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 | 6.2455e+05 | 262144 | 1 | 4.197e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.35872655642434 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.204120696130079, dt = 0.0015573568759784913
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (0.6%)
patch tree reduce : 2.19 us (0.2%)
gen split merge : 1202.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 871.00 ns (0.1%)
LB compute : 1225.51 us (98.2%)
LB move op cnt : 0
LB apply : 3.83 us (0.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.06 us (75.9%)
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 | 6.2650e+05 | 262144 | 1 | 4.184e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.398887166213834 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.2056780530060576, dt = 0.0015571799625762356
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (1.7%)
patch tree reduce : 1793.00 ns (0.4%)
gen split merge : 942.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1323.00 ns (0.3%)
LB compute : 417.85 us (95.1%)
LB move op cnt : 0
LB apply : 3.81 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.04 us (76.2%)
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 | 6.2837e+05 | 262144 | 1 | 4.172e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.437444985579566 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.207235232968634, dt = 0.0015570030071553544
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (0.2%)
patch tree reduce : 1873.00 ns (0.1%)
gen split merge : 972.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 872.00 ns (0.0%)
LB compute : 3.71 ms (99.5%)
LB move op cnt : 0
LB apply : 3.86 us (0.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.02 us (73.2%)
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 | 6.1394e+05 | 262144 | 1 | 4.270e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.127340743427785 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.2087922359757894, dt = 0.0015568260590071471
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (0.1%)
patch tree reduce : 2.21 us (0.0%)
gen split merge : 1122.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 882.00 ns (0.0%)
LB compute : 4.54 ms (99.5%)
LB move op cnt : 0
LB apply : 4.14 us (0.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.69 us (71.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 | 6.1326e+05 | 262144 | 1 | 4.275e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.111359591589862 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.2103490620347968, dt = 0.0015566492128128353
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.5%)
patch tree reduce : 1883.00 ns (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 : 449.00 us (95.6%)
LB move op cnt : 0
LB apply : 3.63 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.06 us (73.2%)
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 | 5.9257e+05 | 262144 | 1 | 4.424e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12.667598665156053 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.2119057112476095, dt = 0.0015564726518204437
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.0%)
patch tree reduce : 2.17 us (0.3%)
gen split merge : 962.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 1002.00 ns (0.1%)
LB compute : 655.31 us (96.9%)
LB move op cnt : 0
LB apply : 3.68 us (0.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.39 us (73.0%)
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 | 6.1886e+05 | 262144 | 1 | 4.236e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.228006359898481 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.2134621838994297, dt = 0.00155629661655637
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.1%)
patch tree reduce : 1763.00 ns (0.0%)
gen split merge : 952.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 872.00 ns (0.0%)
LB compute : 6.15 ms (99.7%)
LB move op cnt : 0
LB apply : 4.04 us (0.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.41 us (70.6%)
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 | 6.1307e+05 | 262144 | 1 | 4.276e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.102862709089363 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.2150184805159863, dt = 0.0015561213457306858
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.20 us (1.3%)
patch tree reduce : 1863.00 ns (0.3%)
gen split merge : 962.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1153.00 ns (0.2%)
LB compute : 540.89 us (96.2%)
LB move op cnt : 0
LB apply : 3.46 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.19 us (72.3%)
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 | 5.0104e+05 | 262144 | 1 | 5.232e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10.707342121332255 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.216574601861717, dt = 0.0015559470283281255
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.4%)
patch tree reduce : 1954.00 ns (0.4%)
gen split merge : 962.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 882.00 ns (0.2%)
LB compute : 458.74 us (95.6%)
LB move op cnt : 0
LB apply : 3.93 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.73 us (72.7%)
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 | 6.1201e+05 | 262144 | 1 | 4.283e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.07721528557014 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.218130548890045, dt = 0.001555773802772793
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.4%)
patch tree reduce : 1794.00 ns (0.4%)
gen split merge : 961.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 912.00 ns (0.2%)
LB compute : 429.45 us (95.5%)
LB move op cnt : 0
LB apply : 3.71 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.92 us (71.0%)
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 | 6.0992e+05 | 262144 | 1 | 4.298e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.03106237869272 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.2196863226928176, dt = 0.0015556017545607034
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (0.7%)
patch tree reduce : 1873.00 ns (0.2%)
gen split merge : 1333.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 942.00 ns (0.1%)
LB compute : 1019.07 us (97.9%)
LB move op cnt : 0
LB apply : 3.88 us (0.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.93 us (74.9%)
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 | 6.1187e+05 | 262144 | 1 | 4.284e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.071397915052417 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.2212419244473782, dt = 0.0015554309644874324
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.5%)
patch tree reduce : 1884.00 ns (0.4%)
gen split merge : 962.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 862.00 ns (0.2%)
LB compute : 427.10 us (95.4%)
LB move op cnt : 0
LB apply : 3.57 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.47 us (75.2%)
Info: cfl dt = 0.0015552616027311329 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 6.1703e+05 | 262144 | 1 | 4.249e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.180042322798794 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.2227973554118656, dt = 0.0015552616027311329
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (0.2%)
patch tree reduce : 1834.00 ns (0.1%)
gen split merge : 1302.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 902.00 ns (0.0%)
LB compute : 3.00 ms (99.3%)
LB move op cnt : 0
LB apply : 3.80 us (0.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.78 us (73.9%)
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 | 6.2370e+05 | 262144 | 1 | 4.203e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.321168957633544 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.224352617014597, dt = 0.0015550947588586265
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.1%)
patch tree reduce : 1894.00 ns (0.0%)
gen split merge : 1292.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 872.00 ns (0.0%)
LB compute : 4.69 ms (99.5%)
LB move op cnt : 0
LB apply : 4.42 us (0.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.12 us (74.3%)
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 | 6.2250e+05 | 262144 | 1 | 4.211e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.29405798013941 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.2259077117734556, dt = 0.0015549313151491826
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.27 us (0.2%)
patch tree reduce : 1954.00 ns (0.0%)
gen split merge : 1142.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 861.00 ns (0.0%)
LB compute : 4.28 ms (99.5%)
LB move op cnt : 0
LB apply : 3.90 us (0.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.02 us (75.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 | 6.1891e+05 | 262144 | 1 | 4.236e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.216010680125189 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.2274626430886046, dt = 0.0015547706978985651
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (0.4%)
patch tree reduce : 2.26 us (0.2%)
gen split merge : 942.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 951.00 ns (0.1%)
LB compute : 1438.92 us (98.6%)
LB move op cnt : 0
LB apply : 4.04 us (0.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.81 us (72.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 | 6.2288e+05 | 262144 | 1 | 4.209e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.299423101119563 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.229017413786503, dt = 0.0015546117845838291
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.64 us (0.1%)
patch tree reduce : 1803.00 ns (0.0%)
gen split merge : 962.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 1072.00 ns (0.0%)
LB compute : 5.19 ms (99.6%)
LB move op cnt : 0
LB apply : 4.06 us (0.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.39 us (77.3%)
Info: cfl dt = 0.001554456134204013 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 6.0519e+05 | 262144 | 1 | 4.332e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12.920510834800998 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.230572025571087, dt = 0.001554456134204013
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1834.00 ns (0.5%)
gen split merge : 982.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.3%)
LB compute : 354.55 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.29 us (73.4%)
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 | 6.2218e+05 | 262144 | 1 | 4.213e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.281900556596089 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.232126481705291, dt = 0.0015543036024340897
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1723.00 ns (0.4%)
gen split merge : 972.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1152.00 ns (0.3%)
LB compute : 374.11 us (94.8%)
LB move op cnt : 0
LB apply : 3.73 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.28 us (70.6%)
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.3406e+05 | 262144 | 1 | 4.134e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.534152976090143 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.2336807853077247, dt = 0.0015541536977952636
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (0.3%)
patch tree reduce : 1653.00 ns (0.1%)
gen split merge : 942.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 952.00 ns (0.0%)
LB compute : 2.66 ms (99.2%)
LB move op cnt : 0
LB apply : 4.18 us (0.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.06 us (75.5%)
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 | 6.2680e+05 | 262144 | 1 | 4.182e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.377739331225303 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.23523493900552, dt = 0.001554005626076192
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (0.1%)
patch tree reduce : 2.12 us (0.0%)
gen split merge : 1322.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 911.00 ns (0.0%)
LB compute : 5.39 ms (99.6%)
LB move op cnt : 0
LB apply : 3.76 us (0.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.14 us (76.9%)
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 | 6.1615e+05 | 262144 | 1 | 4.255e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.14928704234353 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.2367889446315963, dt = 0.001553858776908766
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (0.3%)
patch tree reduce : 2.00 us (0.1%)
gen split merge : 1102.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 872.00 ns (0.0%)
LB compute : 2.20 ms (99.1%)
LB move op cnt : 0
LB apply : 4.16 us (0.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.17 us (74.0%)
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 | 6.2604e+05 | 262144 | 1 | 4.187e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.35909294555667 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.238342803408505, dt = 0.0015537127403489326
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1964.00 ns (0.5%)
gen split merge : 922.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 952.00 ns (0.2%)
LB compute : 385.71 us (94.8%)
LB move op cnt : 0
LB apply : 4.07 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.79 us (73.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 | 6.3272e+05 | 262144 | 1 | 4.143e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.500292715512808 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.2398965161488538, dt = 0.0015535672725807905
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1793.00 ns (0.5%)
gen split merge : 942.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 851.00 ns (0.2%)
LB compute : 346.05 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 (74.2%)
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 | 6.2888e+05 | 262144 | 1 | 4.168e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.417186006241657 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.2414500834214346, dt = 0.0015534222513093694
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1723.00 ns (0.4%)
gen split merge : 932.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 942.00 ns (0.2%)
LB compute : 382.13 us (95.1%)
LB move op cnt : 0
LB apply : 3.74 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.32 us (74.6%)
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.3588e+05 | 262144 | 1 | 4.123e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.565289673826893 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.243003505672744, dt = 0.0015532776326877612
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.32 us (1.7%)
patch tree reduce : 1763.00 ns (0.4%)
gen split merge : 972.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1002.00 ns (0.2%)
LB compute : 418.26 us (95.1%)
LB move op cnt : 0
LB apply : 3.97 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.23 us (74.4%)
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 | 6.2654e+05 | 262144 | 1 | 4.184e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.364762487251939 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.244556783305432, dt = 0.0015531334306600245
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 23.89 us (5.7%)
patch tree reduce : 2.13 us (0.5%)
gen split merge : 942.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 952.00 ns (0.2%)
LB compute : 381.84 us (90.9%)
LB move op cnt : 0
LB apply : 3.47 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.83 us (73.5%)
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 | 6.3188e+05 | 262144 | 1 | 4.149e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.477407697646273 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.246109916736092, dt = 0.0015529896865552448
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.24 us (1.9%)
patch tree reduce : 2.06 us (0.5%)
gen split merge : 992.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1162.00 ns (0.3%)
LB compute : 367.48 us (94.5%)
LB move op cnt : 0
LB apply : 3.40 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.81 us (73.7%)
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 | 6.3171e+05 | 262144 | 1 | 4.150e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.4724838764961 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.247662906422647, dt = 0.0012954269106861815
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance 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.14 us (3.2%)
patch tree reduce : 2.11 us (0.6%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1282.00 ns (0.3%)
LB compute : 349.42 us (92.9%)
LB move op cnt : 0
LB apply : 3.94 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.15 us (73.7%)
Info: cfl dt = 0.0015527257008772965 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 6.3312e+05 | 262144 | 1 | 4.141e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11.263200022410423 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 621.29125709 (s) [Godunov][rank=0]
Info: dump to _to_trash/ramses_kh/periodic_0018.vtk [VTK Dump][rank=0]
- took 51.00 ms, bandwidth = 764.76 MB/s
amr::Godunov: t = 2.2489583333333334, dt = 0.0015527257008772965
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (0.5%)
patch tree reduce : 1783.00 ns (0.1%)
gen split merge : 982.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.1%)
LB compute : 1357.13 us (98.4%)
LB move op cnt : 0
LB apply : 4.25 us (0.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.54 us (72.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 | 6.2184e+05 | 262144 | 1 | 4.216e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.259844769021859 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.250511059034211, dt = 0.001552579957220312
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.8%)
patch tree reduce : 1783.00 ns (0.4%)
gen split merge : 1253.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 961.00 ns (0.2%)
LB compute : 382.08 us (94.6%)
LB move op cnt : 0
LB apply : 3.64 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.27 us (76.2%)
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.2900e+05 | 262144 | 1 | 4.168e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.411094365779103 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.252063638991431, dt = 0.0015524362180172385
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.16 us (1.3%)
patch tree reduce : 1753.00 ns (0.3%)
gen split merge : 972.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 852.00 ns (0.2%)
LB compute : 544.99 us (96.3%)
LB move op cnt : 0
LB apply : 3.81 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.07 us (74.1%)
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 | 6.2788e+05 | 262144 | 1 | 4.175e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.386065079504633 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.253616075209448, dt = 0.0015522948266187913
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.7%)
patch tree reduce : 2.11 us (0.5%)
gen split merge : 952.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 881.00 ns (0.2%)
LB compute : 398.14 us (94.8%)
LB move op cnt : 0
LB apply : 3.97 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.07 us (75.9%)
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 | 6.3397e+05 | 262144 | 1 | 4.135e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.514751966136112 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.255168370036067, dt = 0.001552155852012846
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.0%)
patch tree reduce : 1753.00 ns (0.5%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 882.00 ns (0.2%)
LB compute : 340.86 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.88 us (74.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 | 6.2946e+05 | 262144 | 1 | 4.165e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.417429896054644 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.25672052588808, dt = 0.001552019082912724
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (0.2%)
patch tree reduce : 2.10 us (0.1%)
gen split merge : 942.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 952.00 ns (0.0%)
LB compute : 4.05 ms (99.5%)
LB move op cnt : 0
LB apply : 3.98 us (0.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.71 us (77.1%)
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 | 6.0391e+05 | 262144 | 1 | 4.341e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12.871512864873786 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.2582725449709926, dt = 0.001551884167468215
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.15 us (0.5%)
patch tree reduce : 1784.00 ns (0.1%)
gen split merge : 992.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 902.00 ns (0.1%)
LB compute : 1394.52 us (98.5%)
LB move op cnt : 0
LB apply : 3.60 us (0.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.08 us (76.6%)
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 | 6.1491e+05 | 262144 | 1 | 4.263e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.104858241000738 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.259824429138461, dt = 0.0015517507748645841
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (0.9%)
patch tree reduce : 2.01 us (0.3%)
gen split merge : 972.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 871.00 ns (0.1%)
LB compute : 731.33 us (97.3%)
LB move op cnt : 0
LB apply : 3.86 us (0.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.94 us (73.4%)
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 | 6.1661e+05 | 262144 | 1 | 4.251e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.139968770749803 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.2613761799133254, dt = 0.0015516185381438095
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (0.1%)
patch tree reduce : 1844.00 ns (0.0%)
gen split merge : 982.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.0%)
LB compute : 5.12 ms (99.6%)
LB move op cnt : 0
LB apply : 4.26 us (0.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.37 us (78.0%)
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 | 6.1679e+05 | 262144 | 1 | 4.250e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.142626211471296 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.2629277984514693, dt = 0.0015514871611110462
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (0.1%)
patch tree reduce : 2.19 us (0.0%)
gen split merge : 942.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 952.00 ns (0.0%)
LB compute : 6.19 ms (99.7%)
LB move op cnt : 0
LB apply : 3.77 us (0.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.33 us (75.1%)
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 | 6.1219e+05 | 262144 | 1 | 4.282e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.043629055997627 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.2644792856125804, dt = 0.0015513565698946732
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (0.1%)
patch tree reduce : 1814.00 ns (0.0%)
gen split merge : 952.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 1022.00 ns (0.0%)
LB compute : 6.15 ms (99.7%)
LB move op cnt : 0
LB apply : 4.31 us (0.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.96 us (73.6%)
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 | 6.1793e+05 | 262144 | 1 | 4.242e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.16467482901247 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.266030642182475, dt = 0.0015512268440674181
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (0.2%)
patch tree reduce : 1763.00 ns (0.0%)
gen split merge : 962.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 1263.00 ns (0.0%)
LB compute : 4.65 ms (99.5%)
LB move op cnt : 0
LB apply : 3.68 us (0.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.52 us (74.5%)
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 | 6.1274e+05 | 262144 | 1 | 4.278e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.05301826842511 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.2675818690265426, dt = 0.0015510981607548089
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (0.1%)
patch tree reduce : 1813.00 ns (0.0%)
gen split merge : 941.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 901.00 ns (0.0%)
LB compute : 5.14 ms (99.6%)
LB move op cnt : 0
LB apply : 4.46 us (0.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.63 us (76.5%)
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 | 6.1411e+05 | 262144 | 1 | 4.269e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.081309629093287 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.2691329671872973, dt = 0.001550970736911927
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance 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.47 us (2.5%)
patch tree reduce : 1683.00 ns (0.3%)
gen split merge : 1192.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 872.00 ns (0.1%)
LB compute : 559.04 us (94.7%)
LB move op cnt : 0
LB apply : 4.07 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.90 us (74.5%)
Info: cfl dt = 0.0015508449219560783 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 6.2555e+05 | 262144 | 1 | 4.191e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.323852527729072 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.2706839379242094, dt = 0.0015508449219560783
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.40 us (1.9%)
patch tree reduce : 1853.00 ns (0.5%)
gen split merge : 1233.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 861.00 ns (0.2%)
LB compute : 364.12 us (94.4%)
LB move op cnt : 0
LB apply : 3.91 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.38 us (69.6%)
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 | 6.2373e+05 | 262144 | 1 | 4.203e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.283995090820975 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.2722347828461653, dt = 0.001550720903276394
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1984.00 ns (0.5%)
gen split merge : 941.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 871.00 ns (0.2%)
LB compute : 420.44 us (95.4%)
LB move op cnt : 0
LB apply : 3.62 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.18 us (76.2%)
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 | 6.0550e+05 | 262144 | 1 | 4.329e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12.894745071613242 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.273785503749442, dt = 0.0015505988740099161
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (1.7%)
patch tree reduce : 2.01 us (0.5%)
gen split merge : 962.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 872.00 ns (0.2%)
LB compute : 387.20 us (94.9%)
LB move op cnt : 0
LB apply : 3.61 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.60 us (72.0%)
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 | 6.0763e+05 | 262144 | 1 | 4.314e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12.939106537178782 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.2753361026234518, dt = 0.0015504789110204645
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (1.5%)
patch tree reduce : 1784.00 ns (0.4%)
gen split merge : 952.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1232.00 ns (0.3%)
LB compute : 446.32 us (95.4%)
LB move op cnt : 0
LB apply : 3.76 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.02 us (75.6%)
Info: cfl dt = 0.0015503609488322582 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 6.0955e+05 | 262144 | 1 | 4.301e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12.978895729644263 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.2768865815344723, dt = 0.0015503609488322582
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.6%)
patch tree reduce : 1823.00 ns (0.4%)
gen split merge : 1152.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 932.00 ns (0.2%)
LB compute : 429.25 us (95.4%)
LB move op cnt : 0
LB apply : 3.59 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.75 us (74.0%)
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 | 5.9171e+05 | 262144 | 1 | 4.430e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12.598070078290963 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.2784369424833044, dt = 0.0015502448463063573
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (0.1%)
patch tree reduce : 1804.00 ns (0.0%)
gen split merge : 942.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 971.00 ns (0.0%)
LB compute : 5.32 ms (99.6%)
LB move op cnt : 0
LB apply : 3.84 us (0.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.71 us (77.4%)
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 | 6.2016e+05 | 262144 | 1 | 4.227e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.2028885938759 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.2799871873296107, dt = 0.0015501304503963416
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.8%)
patch tree reduce : 2.03 us (0.5%)
gen split merge : 972.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.2%)
LB compute : 376.12 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.99 us (75.8%)
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 | 6.2954e+05 | 262144 | 1 | 4.164e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.401604989625964 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.281537317780007, dt = 0.0015500176473088332
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (0.6%)
patch tree reduce : 1914.00 ns (0.2%)
gen split merge : 971.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 881.00 ns (0.1%)
LB compute : 1023.38 us (98.1%)
LB move op cnt : 0
LB apply : 3.80 us (0.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.73 us (74.0%)
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.2007e+05 | 262144 | 1 | 4.228e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.198891016048144 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.283087335427316, dt = 0.0015499064321359624
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.1%)
patch tree reduce : 2.03 us (0.4%)
gen split merge : 952.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 881.00 ns (0.2%)
LB compute : 547.72 us (96.3%)
LB move op cnt : 0
LB apply : 4.43 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.54 us (73.2%)
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 | 6.2682e+05 | 262144 | 1 | 4.182e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.341690603449997 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.2846372418594516, dt = 0.0015497969549200506
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.2%)
patch tree reduce : 1864.00 ns (0.3%)
gen split merge : 1052.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 862.00 ns (0.2%)
LB compute : 537.15 us (96.3%)
LB move op cnt : 0
LB apply : 3.74 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.50 us (73.5%)
Info: cfl dt = 0.001549689365920454 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 6.2265e+05 | 262144 | 1 | 4.210e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.25193734079335 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.2861870388143717, dt = 0.001549689365920454
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.0%)
patch tree reduce : 1683.00 ns (0.5%)
gen split merge : 942.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.3%)
LB compute : 345.41 us (94.3%)
LB move op cnt : 0
LB apply : 3.77 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.58 us (76.0%)
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 | 6.2219e+05 | 262144 | 1 | 4.213e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.241378473086199 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.2877367281802923, dt = 0.0015495837398648536
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (0.1%)
patch tree reduce : 2.17 us (0.0%)
gen split merge : 941.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 951.00 ns (0.0%)
LB compute : 6.17 ms (99.6%)
LB move op cnt : 0
LB apply : 4.52 us (0.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.60 us (78.9%)
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 | 6.0458e+05 | 262144 | 1 | 4.336e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12.86574503332434 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.289286311920157, dt = 0.0015494796984960708
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1994.00 ns (0.5%)
gen split merge : 941.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1022.00 ns (0.3%)
LB compute : 375.43 us (94.7%)
LB move op cnt : 0
LB apply : 3.96 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.08 us (75.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 | 6.2757e+05 | 262144 | 1 | 4.177e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.35391953012034 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.2908357916186532, dt = 0.0015493768340420775
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1934.00 ns (0.5%)
gen split merge : 952.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 862.00 ns (0.2%)
LB compute : 373.35 us (94.8%)
LB move op cnt : 0
LB apply : 3.50 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.16 us (71.8%)
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 | 6.2510e+05 | 262144 | 1 | 4.194e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.300505553463251 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.2923851684526952, dt = 0.0015492749285960523
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.31 us (2.0%)
patch tree reduce : 1853.00 ns (0.5%)
gen split merge : 972.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1123.00 ns (0.3%)
LB compute : 343.24 us (94.0%)
LB move op cnt : 0
LB apply : 3.77 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.86 us (72.9%)
Info: cfl dt = 0.001549173997651582 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 6.3032e+05 | 262144 | 1 | 4.159e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.410651633537034 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.2939344433812914, dt = 0.001549173997651582
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (0.1%)
patch tree reduce : 1794.00 ns (0.0%)
gen split merge : 951.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 892.00 ns (0.0%)
LB compute : 4.57 ms (99.5%)
LB move op cnt : 0
LB apply : 4.58 us (0.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.42 us (74.8%)
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 | 6.1786e+05 | 262144 | 1 | 4.243e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.144772750936536 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.295483617378943, dt = 0.0015490742281864462
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (0.3%)
patch tree reduce : 1803.00 ns (0.1%)
gen split merge : 962.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 862.00 ns (0.0%)
LB compute : 2.39 ms (99.1%)
LB move op cnt : 0
LB apply : 4.05 us (0.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.63 us (79.1%)
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 | 6.1539e+05 | 262144 | 1 | 4.260e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.091441935274833 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.2970326916071295, dt = 0.0015489759142928658
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (0.1%)
patch tree reduce : 2.19 us (0.0%)
gen split merge : 952.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 922.00 ns (0.0%)
LB compute : 5.45 ms (99.6%)
LB move op cnt : 0
LB apply : 4.46 us (0.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.37 us (74.2%)
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 | 6.1698e+05 | 262144 | 1 | 4.249e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.124445290813995 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.2985816675214226, dt = 0.001548879415856253
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.6%)
patch tree reduce : 1914.00 ns (0.4%)
gen split merge : 952.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 912.00 ns (0.2%)
LB compute : 416.96 us (95.1%)
LB move op cnt : 0
LB apply : 3.85 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.33 us (76.5%)
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 | 6.2325e+05 | 262144 | 1 | 4.206e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.256816160751422 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.300130546937279, dt = 0.0015487852856336695
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.2%)
patch tree reduce : 1834.00 ns (0.3%)
gen split merge : 941.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 872.00 ns (0.2%)
LB compute : 550.07 us (96.4%)
LB move op cnt : 0
LB apply : 3.65 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.04 us (74.4%)
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.1684e+05 | 262144 | 1 | 4.250e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.119720987461546 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.3016793322229123, dt = 0.0015486948881037051
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.7%)
patch tree reduce : 2.03 us (0.5%)
gen split merge : 952.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.2%)
LB compute : 375.22 us (94.7%)
LB move op cnt : 0
LB apply : 3.67 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.88 us (75.3%)
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 | 6.2277e+05 | 262144 | 1 | 4.209e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.245052388091406 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.303228027111016, dt = 0.0015486087894969853
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (1.3%)
patch tree reduce : 1804.00 ns (0.3%)
gen split merge : 1002.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 862.00 ns (0.2%)
LB compute : 533.98 us (96.2%)
LB move op cnt : 0
LB apply : 3.61 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.98 us (65.6%)
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 | 6.2697e+05 | 262144 | 1 | 4.181e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.333614919427061 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.304776635900513, dt = 0.0015485272775297698
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.36 us (1.7%)
patch tree reduce : 1863.00 ns (0.4%)
gen split merge : 1203.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.2%)
LB compute : 405.96 us (94.9%)
LB move op cnt : 0
LB apply : 3.87 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.36 us (81.8%)
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 | 6.2128e+05 | 262144 | 1 | 4.219e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.212090852618068 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.306325163178043, dt = 0.0015484508993169512
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.7%)
patch tree reduce : 2.20 us (0.5%)
gen split merge : 951.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 891.00 ns (0.2%)
LB compute : 388.27 us (94.6%)
LB move op cnt : 0
LB apply : 4.06 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.54 us (78.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 | 6.2538e+05 | 262144 | 1 | 4.192e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.298615015140683 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.30787361407736, dt = 0.001548379995720758
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (0.1%)
patch tree reduce : 1864.00 ns (0.0%)
gen split merge : 941.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.0%)
LB compute : 5.22 ms (99.6%)
LB move op cnt : 0
LB apply : 4.02 us (0.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.27 us (77.8%)
Info: cfl dt = 0.001548314434965905 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 6.1112e+05 | 262144 | 1 | 4.290e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12.99463090479827 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.3094219940730807, dt = 0.001548314434965905
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (0.1%)
patch tree reduce : 2.10 us (0.0%)
gen split merge : 992.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 861.00 ns (0.0%)
LB compute : 5.23 ms (99.6%)
LB move op cnt : 0
LB apply : 4.07 us (0.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.15 us (77.1%)
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 | 6.1828e+05 | 262144 | 1 | 4.240e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.146403360940168 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.3109703085080464, dt = 0.0015482538391887429
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 2.02 us (0.5%)
gen split merge : 981.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 872.00 ns (0.2%)
LB compute : 371.50 us (94.6%)
LB move op cnt : 0
LB apply : 3.91 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.14 us (71.0%)
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 | 6.3307e+05 | 262144 | 1 | 4.141e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.460389889076984 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.3125185623472353, dt = 0.0015481977178117732
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (0.8%)
patch tree reduce : 2.04 us (0.3%)
gen split merge : 962.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.1%)
LB compute : 778.86 us (97.4%)
LB move op cnt : 0
LB apply : 3.91 us (0.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.94 us (73.6%)
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 | 6.1731e+05 | 262144 | 1 | 4.247e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.124708850366744 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.314066760065047, dt = 0.0015481455441107505
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 23.80 us (0.5%)
patch tree reduce : 2.11 us (0.0%)
gen split merge : 972.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 1152.00 ns (0.0%)
LB compute : 5.24 ms (99.3%)
LB move op cnt : 0
LB apply : 3.83 us (0.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.22 us (76.1%)
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 | 6.1494e+05 | 262144 | 1 | 4.263e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.073963474704883 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.3156149056091575, dt = 0.0015480968756043404
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1753.00 ns (0.4%)
gen split merge : 1373.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1233.00 ns (0.3%)
LB compute : 408.12 us (94.9%)
LB move op cnt : 0
LB apply : 4.03 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.80 us (73.4%)
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.3097e+05 | 262144 | 1 | 4.155e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.414250270618899 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.317163002484762, dt = 0.0015480513948023713
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.5%)
patch tree reduce : 1923.00 ns (0.5%)
gen split merge : 1072.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1022.00 ns (0.2%)
LB compute : 401.55 us (95.1%)
LB move op cnt : 0
LB apply : 3.78 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.21 us (73.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 | 6.2472e+05 | 262144 | 1 | 4.196e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.280997961244648 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.3187110538795643, dt = 0.0015480088934240613
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.8%)
patch tree reduce : 1804.00 ns (0.4%)
gen split merge : 952.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 882.00 ns (0.2%)
LB compute : 387.71 us (95.0%)
LB move op cnt : 0
LB apply : 3.63 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.22 us (68.7%)
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 | 6.2737e+05 | 262144 | 1 | 4.178e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.337013538622237 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.320259062772988, dt = 0.0015479693586690233
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1673.00 ns (0.4%)
gen split merge : 982.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1082.00 ns (0.3%)
LB compute : 370.30 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.02 us (75.4%)
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 | 6.2410e+05 | 262144 | 1 | 4.200e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.267217528361307 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.321807032131657, dt = 0.0015479328314687822
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.7%)
patch tree reduce : 1873.00 ns (0.5%)
gen split merge : 1293.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.2%)
LB compute : 385.10 us (94.6%)
LB move op cnt : 0
LB apply : 4.11 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.89 us (72.5%)
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 | 6.0837e+05 | 262144 | 1 | 4.309e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12.932514269392554 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.323354964963126, dt = 0.0015478993627471968
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1704.00 ns (0.4%)
gen split merge : 961.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1002.00 ns (0.2%)
LB compute : 386.83 us (94.8%)
LB move op cnt : 0
LB apply : 4.00 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.60 us (71.8%)
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 | 6.0892e+05 | 262144 | 1 | 4.305e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12.943862085058075 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.3249028643258733, dt = 0.001547869072523081
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.6%)
patch tree reduce : 1783.00 ns (0.4%)
gen split merge : 942.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 862.00 ns (0.2%)
LB compute : 405.02 us (95.2%)
LB move op cnt : 0
LB apply : 3.78 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.79 us (74.3%)
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 | 6.1940e+05 | 262144 | 1 | 4.232e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.166438782607914 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.3264507333983966, dt = 0.0015478421381725164
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1964.00 ns (0.5%)
gen split merge : 961.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 952.00 ns (0.2%)
LB compute : 367.40 us (94.7%)
LB move op cnt : 0
LB apply : 4.03 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.73 us (74.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 | 6.2693e+05 | 262144 | 1 | 4.181e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.326349146933898 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.327998575536569, dt = 0.001547818718308709
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.55 us (2.0%)
patch tree reduce : 1883.00 ns (0.5%)
gen split merge : 1302.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1263.00 ns (0.3%)
LB compute : 361.36 us (94.1%)
LB move op cnt : 0
LB apply : 3.94 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.53 us (76.1%)
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 | 6.1761e+05 | 262144 | 1 | 4.244e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.128012252906755 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.3295463942548778, dt = 0.001547799028329616
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1823.00 ns (0.5%)
gen split merge : 942.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 942.00 ns (0.3%)
LB compute : 354.22 us (94.5%)
LB move op cnt : 0
LB apply : 3.59 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.35 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 | 6.1132e+05 | 262144 | 1 | 4.288e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12.994092722125421 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.3310941932832074, dt = 0.0015477832837932884
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (0.8%)
patch tree reduce : 2.05 us (0.2%)
gen split merge : 942.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 892.00 ns (0.1%)
LB compute : 887.49 us (97.6%)
LB move op cnt : 0
LB apply : 3.80 us (0.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.10 us (73.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.2103e+05 | 262144 | 1 | 4.221e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.200435949375157 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.332641976567001, dt = 0.0015477716224789916
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1814.00 ns (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 : 394.60 us (95.0%)
LB move op cnt : 0
LB apply : 4.06 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.58 us (73.3%)
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 | 6.2949e+05 | 262144 | 1 | 4.164e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.38015481050613 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.33418974818948, dt = 0.0015477639800643094
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.7%)
patch tree reduce : 2.22 us (0.6%)
gen split merge : 1002.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 952.00 ns (0.2%)
LB compute : 377.64 us (94.5%)
LB move op cnt : 0
LB apply : 3.95 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.71 us (77.2%)
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 | 6.2668e+05 | 262144 | 1 | 4.183e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.320175490505406 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.3357375121695445, dt = 0.0015477602476969873
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1994.00 ns (0.5%)
gen split merge : 962.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1022.00 ns (0.3%)
LB compute : 357.57 us (94.5%)
LB move op cnt : 0
LB apply : 3.70 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.78 us (76.3%)
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 | 6.2033e+05 | 262144 | 1 | 4.226e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.185227347482993 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.3372852724172417, dt = 0.001547760161057379
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (0.1%)
patch tree reduce : 2.34 us (0.0%)
gen split merge : 1012.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 872.00 ns (0.0%)
LB compute : 6.19 ms (99.6%)
LB move op cnt : 0
LB apply : 4.26 us (0.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.99 us (78.7%)
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 | 6.0873e+05 | 262144 | 1 | 4.306e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12.938615055795008 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.338833032578299, dt = 0.0015477634534562703
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (0.2%)
patch tree reduce : 1904.00 ns (0.0%)
gen split merge : 1272.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.0%)
LB compute : 4.00 ms (99.5%)
LB move op cnt : 0
LB apply : 4.60 us (0.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.42 us (78.0%)
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 | 6.1469e+05 | 262144 | 1 | 4.265e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.065418505061551 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.3403807960317553, dt = 0.0015477702209791462
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1974.00 ns (0.5%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1052.00 ns (0.3%)
LB compute : 359.29 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.30 us (77.2%)
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.2058e+05 | 262144 | 1 | 4.224e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.190772945652554 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.3419285662527343, dt = 0.001547780471778201
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.32 us (0.7%)
patch tree reduce : 2.03 us (0.2%)
gen split merge : 992.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.1%)
LB compute : 1080.12 us (98.0%)
LB move op cnt : 0
LB apply : 3.92 us (0.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.94 us (73.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 | 6.1671e+05 | 262144 | 1 | 4.251e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.10846888449903 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.3434763467245125, dt = 0.0015477942221105824
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (0.8%)
patch tree reduce : 2.16 us (0.3%)
gen split merge : 1313.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 882.00 ns (0.1%)
LB compute : 821.60 us (97.4%)
LB move op cnt : 0
LB apply : 3.71 us (0.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.00 us (72.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 | 6.0161e+05 | 262144 | 1 | 4.357e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12.787687699861802 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.3450241409466233, dt = 0.001547811686672361
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.2%)
patch tree reduce : 1933.00 ns (0.4%)
gen split merge : 962.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 951.00 ns (0.2%)
LB compute : 512.49 us (96.1%)
LB move op cnt : 0
LB apply : 3.88 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.14 us (76.9%)
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 | 6.2341e+05 | 262144 | 1 | 4.205e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.251118756888937 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.3465719526332958, dt = 0.00154770648825969
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (0.7%)
patch tree reduce : 1784.00 ns (0.2%)
gen split merge : 942.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 971.00 ns (0.1%)
LB compute : 886.99 us (97.8%)
LB move op cnt : 0
LB apply : 3.70 us (0.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.42 us (71.0%)
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 | 5.9834e+05 | 262144 | 1 | 4.381e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12.71752731335164 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.3481196591215556, dt = 0.0015475013523674923
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.36 us (1.5%)
patch tree reduce : 1834.00 ns (0.4%)
gen split merge : 973.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1042.00 ns (0.2%)
LB compute : 460.07 us (95.4%)
LB move op cnt : 0
LB apply : 3.79 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.16 us (75.5%)
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 | 5.8366e+05 | 262144 | 1 | 4.491e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12.40366626432818 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.349667160473923, dt = 0.0015472975696186064
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.3%)
patch tree reduce : 2.23 us (0.4%)
gen split merge : 1002.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 892.00 ns (0.2%)
LB compute : 476.08 us (95.8%)
LB move op cnt : 0
LB apply : 4.03 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.04 us (74.6%)
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 | 6.0420e+05 | 262144 | 1 | 4.339e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12.838536974118211 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.351214458043542, dt = 0.001547095208078144
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.5%)
patch tree reduce : 1844.00 ns (0.4%)
gen split merge : 962.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 891.00 ns (0.2%)
LB compute : 429.71 us (95.2%)
LB move op cnt : 0
LB apply : 4.25 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.10 us (76.3%)
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 | 6.1370e+05 | 262144 | 1 | 4.272e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.038775684681102 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.35276155325162, dt = 0.0015468943056792795
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1803.00 ns (0.4%)
gen split merge : 942.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 931.00 ns (0.2%)
LB compute : 392.39 us (95.1%)
LB move op cnt : 0
LB apply : 3.40 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.25 us (72.1%)
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 | 6.2273e+05 | 262144 | 1 | 4.210e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.228982742123165 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.3543084475572993, dt = 0.0015466948339946595
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (0.2%)
patch tree reduce : 2.17 us (0.1%)
gen split merge : 952.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 1232.00 ns (0.0%)
LB compute : 4.16 ms (99.4%)
LB move op cnt : 0
LB apply : 4.71 us (0.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.38 us (79.7%)
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 | 6.0361e+05 | 262144 | 1 | 4.343e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12.820971516662235 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.355855142391294, dt = 0.0015464966854817593
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1793.00 ns (0.4%)
gen split merge : 972.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1122.00 ns (0.3%)
LB compute : 411.89 us (95.2%)
LB move op cnt : 0
LB apply : 3.85 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.39 us (74.5%)
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 | 5.9929e+05 | 262144 | 1 | 4.374e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12.72773567245615 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.357401639076776, dt = 0.0015462996815054295
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (0.1%)
patch tree reduce : 2.08 us (0.0%)
gen split merge : 942.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 892.00 ns (0.0%)
LB compute : 5.10 ms (99.6%)
LB move op cnt : 0
LB apply : 4.40 us (0.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.81 us (80.0%)
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 | 6.1466e+05 | 262144 | 1 | 4.265e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.052347574509628 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.358947938758281, dt = 0.0015461035868972303
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.6%)
patch tree reduce : 1864.00 ns (0.5%)
gen split merge : 982.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.2%)
LB compute : 389.14 us (95.1%)
LB move op cnt : 0
LB apply : 3.45 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.54 us (70.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 | 6.0574e+05 | 262144 | 1 | 4.328e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12.861325250874653 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.360494042345178, dt = 0.0015459081272173488
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.4%)
patch tree reduce : 2.14 us (0.5%)
gen split merge : 972.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1022.00 ns (0.2%)
LB compute : 452.04 us (95.5%)
LB move op cnt : 0
LB apply : 3.51 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.50 us (71.6%)
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 | 6.0600e+05 | 262144 | 1 | 4.326e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12.865168063493071 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.3620399504723957, dt = 0.0015457130271847568
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.45 us (0.6%)
patch tree reduce : 2.20 us (0.2%)
gen split merge : 1293.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 912.00 ns (0.1%)
LB compute : 1208.26 us (98.1%)
LB move op cnt : 0
LB apply : 4.22 us (0.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.53 us (69.6%)
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 | 6.0890e+05 | 262144 | 1 | 4.305e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12.925301768232321 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.36358566349958, dt = 0.0015455180565629946
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.53 us (0.2%)
patch tree reduce : 1934.00 ns (0.1%)
gen split merge : 952.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 872.00 ns (0.0%)
LB compute : 3.27 ms (99.3%)
LB move op cnt : 0
LB apply : 4.53 us (0.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.49 us (81.0%)
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 | 6.0520e+05 | 262144 | 1 | 4.332e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12.844977428887306 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.3651311815561433, dt = 0.0015453230562019308
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (0.1%)
patch tree reduce : 2.03 us (0.0%)
gen split merge : 991.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 871.00 ns (0.0%)
LB compute : 5.78 ms (99.6%)
LB move op cnt : 0
LB apply : 4.71 us (0.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.66 us (74.6%)
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 | 5.9941e+05 | 262144 | 1 | 4.373e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12.720457562527061 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.3666765046123452, dt = 0.0015451279349780855
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (0.2%)
patch tree reduce : 2.16 us (0.0%)
gen split merge : 922.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 952.00 ns (0.0%)
LB compute : 4.47 ms (99.5%)
LB move op cnt : 0
LB apply : 4.86 us (0.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.62 us (78.4%)
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 | 6.0529e+05 | 262144 | 1 | 4.331e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12.843687990124772 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.3682216325473235, dt = 0.001544932661027083
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.93 us (0.3%)
patch tree reduce : 1893.00 ns (0.1%)
gen split merge : 1253.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 882.00 ns (0.0%)
LB compute : 2.27 ms (99.0%)
LB move op cnt : 0
LB apply : 4.67 us (0.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.19 us (82.5%)
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 | 6.0348e+05 | 262144 | 1 | 4.344e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12.803764256434237 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.3697665652083506, dt = 0.0015447372567894196
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.2%)
patch tree reduce : 2.11 us (0.3%)
gen split merge : 932.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 912.00 ns (0.1%)
LB compute : 595.42 us (96.4%)
LB move op cnt : 0
LB apply : 4.28 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.20 us (80.6%)
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 | 6.1079e+05 | 262144 | 1 | 4.292e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12.957206880337829 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.37131130246514, dt = 0.0015445416715574804
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance 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.72 us (0.4%)
patch tree reduce : 1924.00 ns (0.1%)
gen split merge : 1232.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 882.00 ns (0.0%)
LB compute : 1931.99 us (98.7%)
LB move op cnt : 0
LB apply : 4.64 us (0.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.23 us (80.9%)
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 | 6.1567e+05 | 262144 | 1 | 4.258e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.058956940297424 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.3728558441366974, dt = 0.0015443459287062967
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (0.3%)
patch tree reduce : 2.02 us (0.1%)
gen split merge : 982.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 1132.00 ns (0.0%)
LB compute : 2.38 ms (99.0%)
LB move op cnt : 0
LB apply : 4.75 us (0.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.57 us (75.2%)
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 | 5.9949e+05 | 262144 | 1 | 4.373e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12.714271508937536 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.3744001900654035, dt = 0.001544150392494705
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.99 us (0.2%)
patch tree reduce : 1834.00 ns (0.0%)
gen split merge : 1082.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.0%)
LB compute : 4.92 ms (99.5%)
LB move op cnt : 0
LB apply : 4.74 us (0.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.62 us (80.7%)
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 | 6.0379e+05 | 262144 | 1 | 4.342e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12.803865016443366 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.3759443404578984, dt = 0.0015439553368333167
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.6%)
patch tree reduce : 2.22 us (0.5%)
gen split merge : 962.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.2%)
LB compute : 410.29 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.37 us (76.9%)
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 | 6.1541e+05 | 262144 | 1 | 4.260e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.048473637968275 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.377488295794732, dt = 0.001543760980547729
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.1%)
patch tree reduce : 1993.00 ns (0.5%)
gen split merge : 1042.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.3%)
LB compute : 349.77 us (93.9%)
LB move op cnt : 0
LB apply : 4.18 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.22 us (74.5%)
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 | 6.1760e+05 | 262144 | 1 | 4.245e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.093329562226383 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.3790320567752796, dt = 0.0015435675061446208
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.25 us (2.0%)
patch tree reduce : 1964.00 ns (0.5%)
gen split merge : 972.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1002.00 ns (0.3%)
LB compute : 345.61 us (94.1%)
LB move op cnt : 0
LB apply : 3.92 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.67 us (78.4%)
Info: cfl dt = 0.00154337505637506 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 6.1988e+05 | 262144 | 1 | 4.229e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.140028218069297 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.380575624281424, dt = 0.0006743757185758703
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (0.1%)
patch tree reduce : 1763.00 ns (0.0%)
gen split merge : 952.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 1032.00 ns (0.0%)
LB compute : 6.19 ms (99.7%)
LB move op cnt : 0
LB apply : 4.44 us (0.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.66 us (79.7%)
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 | 6.1489e+05 | 262144 | 1 | 4.263e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 5.694559629994574 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 658.4123640160001 (s) [Godunov][rank=0]
Info: dump to _to_trash/ramses_kh/periodic_0019.vtk [VTK Dump][rank=0]
- took 54.96 ms, bandwidth = 709.57 MB/s
amr::Godunov: t = 2.38125, dt = 0.0015433196899775087
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (0.1%)
patch tree reduce : 2.01 us (0.0%)
gen split merge : 992.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 912.00 ns (0.0%)
LB compute : 5.81 ms (99.6%)
LB move op cnt : 0
LB apply : 3.90 us (0.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.56 us (71.4%)
Info: cfl dt = 0.0015431178413618145 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 6.0728e+05 | 262144 | 1 | 4.317e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12.870756816802672 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.3827933196899775, dt = 0.0015431178413618145
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1864.00 ns (0.5%)
gen split merge : 942.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.2%)
LB compute : 390.65 us (95.0%)
LB move op cnt : 0
LB apply : 3.79 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.49 us (71.9%)
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 | 6.3432e+05 | 262144 | 1 | 4.133e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.442189205301618 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.3843364375313394, dt = 0.0015428823614649888
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.6%)
patch tree reduce : 2.08 us (0.5%)
gen split merge : 931.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 901.00 ns (0.2%)
LB compute : 387.38 us (94.9%)
LB move op cnt : 0
LB apply : 3.45 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.60 us (72.6%)
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 | 6.2535e+05 | 262144 | 1 | 4.192e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.250010288753709 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.3858793198928043, dt = 0.0015426488912321445
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.6%)
patch tree reduce : 1703.00 ns (0.4%)
gen split merge : 982.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1012.00 ns (0.2%)
LB compute : 419.16 us (95.2%)
LB move op cnt : 0
LB apply : 3.72 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.95 us (70.9%)
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 | 6.3181e+05 | 262144 | 1 | 4.149e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.385025786429566 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.3874219687840363, dt = 0.001542417252791636
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (0.3%)
patch tree reduce : 1674.00 ns (0.1%)
gen split merge : 971.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 911.00 ns (0.0%)
LB compute : 2.57 ms (99.2%)
LB move op cnt : 0
LB apply : 4.04 us (0.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.32 us (78.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 | 6.1889e+05 | 262144 | 1 | 4.236e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.109210152008842 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.388964386036828, dt = 0.0015421872145210966
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (0.8%)
patch tree reduce : 2.18 us (0.3%)
gen split merge : 992.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.1%)
LB compute : 812.62 us (97.4%)
LB move op cnt : 0
LB apply : 3.95 us (0.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.17 us (74.4%)
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 | 5.9789e+05 | 262144 | 1 | 4.385e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12.662446251749511 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.390506573251349, dt = 0.0015419585672339082
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.5%)
patch tree reduce : 1993.00 ns (0.4%)
gen split merge : 982.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 991.00 ns (0.2%)
LB compute : 435.22 us (95.1%)
LB move op cnt : 0
LB apply : 4.75 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.35 us (69.8%)
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 | 6.0519e+05 | 262144 | 1 | 4.332e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12.815283454429272 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.392048531818583, dt = 0.0015417311823756584
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.57 us (1.1%)
patch tree reduce : 1873.00 ns (0.3%)
gen split merge : 992.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 882.00 ns (0.1%)
LB compute : 653.51 us (96.6%)
LB move op cnt : 0
LB apply : 4.20 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.91 us (78.7%)
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.0183e+05 | 262144 | 1 | 4.356e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12.742289855275475 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.3935902630009585, dt = 0.0015415049796988654
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.76 us (1.8%)
patch tree reduce : 2.16 us (0.5%)
gen split merge : 962.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1042.00 ns (0.2%)
LB compute : 400.77 us (94.2%)
LB move op cnt : 0
LB apply : 4.52 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.64 us (74.7%)
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 | 6.0422e+05 | 262144 | 1 | 4.339e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12.79096083764272 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.3951317679806574, dt = 0.0015412799033136374
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.25 us (0.3%)
patch tree reduce : 2.22 us (0.1%)
gen split merge : 952.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 1182.00 ns (0.0%)
LB compute : 2.47 ms (99.0%)
LB move op cnt : 0
LB apply : 5.06 us (0.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.00 us (75.9%)
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.0684e+05 | 262144 | 1 | 4.320e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12.844479078290318 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.396673047883971, dt = 0.0015410559119217366
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 2.14 us (0.5%)
gen split merge : 962.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1172.00 ns (0.3%)
LB compute : 401.30 us (94.9%)
LB move op cnt : 0
LB apply : 3.95 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.24 us (76.1%)
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.0987e+05 | 262144 | 1 | 4.298e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12.90682558279796 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.3982141037958926, dt = 0.001540832989039267
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.61 us (1.8%)
patch tree reduce : 1773.00 ns (0.4%)
gen split merge : 1303.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1042.00 ns (0.2%)
LB compute : 399.05 us (94.6%)
LB move op cnt : 0
LB apply : 4.00 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.70 us (74.0%)
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 | 6.1963e+05 | 262144 | 1 | 4.231e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.111381059354162 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.399754936784932, dt = 0.0015406116567339553
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1764.00 ns (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 : 372.79 us (94.7%)
LB move op cnt : 0
LB apply : 3.86 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.16 us (76.5%)
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 | 6.3374e+05 | 262144 | 1 | 4.136e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.407998396055257 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.401295548441666, dt = 0.0015403919396052546
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.6%)
patch tree reduce : 1723.00 ns (0.4%)
gen split merge : 992.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.2%)
LB compute : 404.64 us (95.2%)
LB move op cnt : 0
LB apply : 4.08 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.86 us (72.7%)
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 | 6.3040e+05 | 262144 | 1 | 4.158e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.335491885846164 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.402835940381271, dt = 0.0015401739535564503
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 2.14 us (0.6%)
gen split merge : 972.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.3%)
LB compute : 336.89 us (94.1%)
LB move op cnt : 0
LB apply : 3.58 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.37 us (70.1%)
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 | 6.3930e+05 | 262144 | 1 | 4.100e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.521940116631026 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.4043761143348275, dt = 0.0015399578472977732
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1903.00 ns (0.5%)
gen split merge : 962.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.3%)
LB compute : 334.66 us (94.3%)
LB move op cnt : 0
LB apply : 3.79 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.19 us (72.9%)
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 | 6.2888e+05 | 262144 | 1 | 4.168e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.29961050163779 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.405916072182125, dt = 0.001539743663133891
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (0.1%)
patch tree reduce : 1763.00 ns (0.0%)
gen split merge : 1173.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 882.00 ns (0.0%)
LB compute : 7.43 ms (99.7%)
LB move op cnt : 0
LB apply : 4.25 us (0.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.91 us (74.8%)
Info: cfl dt = 0.001539531637344346 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 6.1537e+05 | 262144 | 1 | 4.260e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.01215866894538 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.407455815845259, dt = 0.001539531637344346
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (0.1%)
patch tree reduce : 2.10 us (0.0%)
gen split merge : 962.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 1162.00 ns (0.0%)
LB compute : 6.15 ms (99.6%)
LB move op cnt : 0
LB apply : 4.13 us (0.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.62 us (71.9%)
Info: cfl dt = 0.001539321880955655 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 6.0870e+05 | 262144 | 1 | 4.307e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12.869274747631072 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.4089953474826036, dt = 0.001539321880955655
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.22 us (1.7%)
patch tree reduce : 1983.00 ns (0.5%)
gen split merge : 962.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1022.00 ns (0.2%)
LB compute : 409.86 us (95.0%)
LB move op cnt : 0
LB apply : 3.89 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.60 us (71.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 | 6.2049e+05 | 262144 | 1 | 4.225e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.116670216182534 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.4105346693635594, dt = 0.0015391148274851332
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1794.00 ns (0.4%)
gen split merge : 951.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1041.00 ns (0.3%)
LB compute : 393.85 us (95.0%)
LB move op cnt : 0
LB apply : 3.66 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.14 us (75.4%)
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 | 6.3415e+05 | 262144 | 1 | 4.134e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.40367998332285 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.4120737841910445, dt = 0.001538910574996254
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (0.7%)
patch tree reduce : 2.07 us (0.2%)
gen split merge : 952.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 1012.00 ns (0.1%)
LB compute : 993.14 us (97.9%)
LB move op cnt : 0
LB apply : 3.83 us (0.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.00 us (74.9%)
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 | 6.2492e+05 | 262144 | 1 | 4.195e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.206853201748476 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.413612694766041, dt = 0.0015387086948866755
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1914.00 ns (0.5%)
gen split merge : 982.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 891.00 ns (0.2%)
LB compute : 375.66 us (94.8%)
LB move op cnt : 0
LB apply : 3.86 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.24 us (73.4%)
Info: cfl dt = 0.001538508832154608 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 6.2618e+05 | 262144 | 1 | 4.186e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.231862922275074 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.4151514034609276, dt = 0.001538508832154608
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 2.22 us (0.6%)
gen split merge : 942.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1022.00 ns (0.3%)
LB compute : 353.42 us (94.2%)
LB move op cnt : 0
LB apply : 3.84 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.31 us (75.5%)
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 | 6.3035e+05 | 262144 | 1 | 4.159e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.318142113433245 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.4166899122930823, dt = 0.0015383106920138182
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1813.00 ns (0.5%)
gen split merge : 1263.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.2%)
LB compute : 371.82 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.04 us (76.3%)
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 | 6.2830e+05 | 262144 | 1 | 4.172e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.273188139590335 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.418228222985096, dt = 0.0015381141456191393
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1904.00 ns (0.5%)
gen split merge : 1002.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1252.00 ns (0.3%)
LB compute : 386.29 us (94.9%)
LB move op cnt : 0
LB apply : 3.74 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.83 us (72.1%)
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 | 6.2132e+05 | 262144 | 1 | 4.219e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.123935579580671 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.4197663371307154, dt = 0.0015379192413236976
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.6%)
patch tree reduce : 1784.00 ns (0.4%)
gen split merge : 952.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1132.00 ns (0.3%)
LB compute : 404.52 us (94.9%)
LB move op cnt : 0
LB apply : 4.30 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.70 us (79.0%)
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 | 6.2431e+05 | 262144 | 1 | 4.199e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.18556526315364 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.4213042563720393, dt = 0.0015377261751939077
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (1.7%)
patch tree reduce : 1984.00 ns (0.5%)
gen split merge : 1182.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 922.00 ns (0.2%)
LB compute : 410.48 us (94.9%)
LB move op cnt : 0
LB apply : 3.98 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.55 us (75.3%)
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 | 6.2332e+05 | 262144 | 1 | 4.206e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.16285445434985 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.4228419825472334, dt = 0.0015375352626941059
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 8.28 us (1.8%)
patch tree reduce : 2.18 us (0.5%)
gen split merge : 981.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 911.00 ns (0.2%)
LB compute : 433.52 us (94.8%)
LB move op cnt : 0
LB apply : 4.29 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.72 us (76.5%)
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 | 6.1439e+05 | 262144 | 1 | 4.267e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12.972679366273296 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.4243795178099274, dt = 0.0015373468797657834
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.32 us (1.9%)
patch tree reduce : 1984.00 ns (0.5%)
gen split merge : 1243.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.3%)
LB compute : 373.10 us (94.4%)
LB move op cnt : 0
LB apply : 3.96 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.75 us (76.6%)
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 | 6.0288e+05 | 262144 | 1 | 4.348e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12.728083303478355 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.425916864689693, dt = 0.0015371614658333374
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.97 us (1.9%)
patch tree reduce : 2.63 us (0.6%)
gen split merge : 992.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1001.00 ns (0.2%)
LB compute : 386.49 us (94.1%)
LB move op cnt : 0
LB apply : 4.81 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.70 us (74.3%)
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 | 6.0951e+05 | 262144 | 1 | 4.301e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12.86655620847271 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.4274540261555266, dt = 0.0015369792580788783
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.15 us (0.1%)
patch tree reduce : 2.16 us (0.0%)
gen split merge : 1012.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 1182.00 ns (0.0%)
LB compute : 5.76 ms (99.6%)
LB move op cnt : 0
LB apply : 4.65 us (0.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.81 us (81.8%)
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 | 5.9688e+05 | 262144 | 1 | 4.392e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12.59838426269976 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.4289910054136055, dt = 0.0015368004425451811
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance 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.44 us (2.1%)
patch tree reduce : 2.25 us (0.6%)
gen split merge : 982.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.3%)
LB compute : 372.53 us (94.0%)
LB move op cnt : 0
LB apply : 3.86 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.70 us (75.2%)
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 | 5.0082e+05 | 262144 | 1 | 5.234e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10.569743698906144 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.430527805856151, dt = 0.0015366251151530403
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.87 us (1.9%)
patch tree reduce : 1934.00 ns (0.5%)
gen split merge : 1252.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 961.00 ns (0.2%)
LB compute : 398.14 us (94.6%)
LB move op cnt : 0
LB apply : 3.75 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.76 us (75.3%)
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 | 6.0141e+05 | 262144 | 1 | 4.359e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12.691232477491916 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.432064430971304, dt = 0.0015364534402596088
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (0.2%)
patch tree reduce : 1893.00 ns (0.0%)
gen split merge : 932.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 1022.00 ns (0.0%)
LB compute : 4.08 ms (99.4%)
LB move op cnt : 0
LB apply : 4.98 us (0.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.40 us (78.7%)
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 | 5.9500e+05 | 262144 | 1 | 4.406e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12.554454325920327 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.4336008844115637, dt = 0.001536285483206555
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.4%)
patch tree reduce : 1844.00 ns (0.4%)
gen split merge : 942.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.2%)
LB compute : 458.73 us (95.6%)
LB move op cnt : 0
LB apply : 4.04 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.15 us (75.3%)
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 | 5.8978e+05 | 262144 | 1 | 4.445e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12.44303416595711 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.4351371698947704, dt = 0.001536121259677576
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.90 us (1.8%)
patch tree reduce : 1723.00 ns (0.4%)
gen split merge : 952.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1012.00 ns (0.2%)
LB compute : 428.31 us (95.2%)
LB move op cnt : 0
LB apply : 3.78 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.45 us (70.8%)
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 | 6.1363e+05 | 262144 | 1 | 4.272e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12.94487028678256 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.436673291154448, dt = 0.0015359607368198908
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1743.00 ns (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 : 420.99 us (95.4%)
LB move op cnt : 0
LB apply : 3.81 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.67 us (72.0%)
Info: cfl dt = 0.0015358037755112193 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 6.2715e+05 | 262144 | 1 | 4.180e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.228638099458337 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.438209251891268, dt = 0.0015358037755112193
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.6%)
patch tree reduce : 1834.00 ns (0.4%)
gen split merge : 982.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.2%)
LB compute : 394.28 us (95.0%)
LB move op cnt : 0
LB apply : 4.00 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.56 us (70.3%)
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 | 6.0382e+05 | 262144 | 1 | 4.341e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12.735227282978801 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.439745055666779, dt = 0.0015356504717378974
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.6%)
patch tree reduce : 2.04 us (0.4%)
gen split merge : 961.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1213.00 ns (0.3%)
LB compute : 441.20 us (95.3%)
LB move op cnt : 0
LB apply : 4.08 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.67 us (74.1%)
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 | 5.8429e+05 | 262144 | 1 | 4.487e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12.322110466287384 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.441280706138517, dt = 0.0015355005530195837
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.4%)
patch tree reduce : 1763.00 ns (0.4%)
gen split merge : 952.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1092.00 ns (0.2%)
LB compute : 459.41 us (95.7%)
LB move op cnt : 0
LB apply : 3.58 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.75 us (73.5%)
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 | 6.0628e+05 | 262144 | 1 | 4.324e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12.784631827310507 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.4428162066915364, dt = 0.0015353533042214186
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (0.3%)
patch tree reduce : 2.09 us (0.1%)
gen split merge : 942.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.0%)
LB compute : 1946.88 us (98.9%)
LB move op cnt : 0
LB apply : 4.02 us (0.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.77 us (74.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 | 6.2246e+05 | 262144 | 1 | 4.211e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.12449819920798 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.444351559995758, dt = 0.0015352082573317797
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.6%)
patch tree reduce : 1823.00 ns (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 : 403.01 us (95.0%)
LB move op cnt : 0
LB apply : 3.99 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.54 us (75.8%)
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 | 6.2746e+05 | 262144 | 1 | 4.178e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.228630265785357 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.44588676825309, dt = 0.001535065106869614
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.05 us (1.1%)
patch tree reduce : 2.01 us (0.3%)
gen split merge : 942.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 942.00 ns (0.2%)
LB compute : 603.32 us (96.3%)
LB move op cnt : 0
LB apply : 4.75 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.30 us (71.7%)
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 | 6.2603e+05 | 262144 | 1 | 4.187e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.197218541538248 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.4474218333599596, dt = 0.0015349235985058997
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1913.00 ns (0.5%)
gen split merge : 1323.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 1192.00 ns (0.3%)
LB compute : 346.39 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 (71.2%)
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 | 6.3192e+05 | 262144 | 1 | 4.148e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.32011860360459 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.4489567569584656, dt = 0.0015347861533115828
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1824.00 ns (0.5%)
gen split merge : 951.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1052.00 ns (0.3%)
LB compute : 380.80 us (94.8%)
LB move op cnt : 0
LB apply : 3.92 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.69 us (73.9%)
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 | 6.3267e+05 | 262144 | 1 | 4.143e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.33493237714314 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.4504915431117773, dt = 0.0015346530749092632
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.18 us (2.0%)
patch tree reduce : 1753.00 ns (0.5%)
gen split merge : 1303.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 892.00 ns (0.3%)
LB compute : 334.59 us (93.9%)
LB move op cnt : 0
LB apply : 3.94 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.50 us (70.1%)
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 | 6.3316e+05 | 262144 | 1 | 4.140e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.343988466123411 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.4520261961866865, dt = 0.001534524692186529
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.2%)
patch tree reduce : 2.11 us (0.4%)
gen split merge : 901.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 852.00 ns (0.1%)
LB compute : 562.90 us (96.4%)
LB move op cnt : 0
LB apply : 3.95 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.90 us (74.5%)
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 | 6.2975e+05 | 262144 | 1 | 4.163e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.270994850410998 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.453560720878873, dt = 0.0015344012995661502
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.7%)
patch tree reduce : 1823.00 ns (0.4%)
gen split merge : 951.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 951.00 ns (0.2%)
LB compute : 388.43 us (94.9%)
LB move op cnt : 0
LB apply : 3.80 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.86 us (74.6%)
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 | 6.3447e+05 | 262144 | 1 | 4.132e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.369339816695437 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.455095122178439, dt = 0.0015342830036932462
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1833.00 ns (0.4%)
gen split merge : 952.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 891.00 ns (0.2%)
LB compute : 390.01 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.79 us (73.4%)
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 | 6.3226e+05 | 262144 | 1 | 4.146e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.321758231025889 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.4566294051821322, dt = 0.0015341697297122684
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 2.07 us (0.5%)
gen split merge : 932.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1303.00 ns (0.3%)
LB compute : 381.19 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.87 us (74.5%)
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 | 6.3257e+05 | 262144 | 1 | 4.144e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.327449352117652 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.4581635749118447, dt = 0.0015340612687947607
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (0.7%)
patch tree reduce : 1823.00 ns (0.2%)
gen split merge : 982.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.1%)
LB compute : 881.17 us (97.8%)
LB move op cnt : 0
LB apply : 3.54 us (0.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.19 us (76.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 | 6.3360e+05 | 262144 | 1 | 4.137e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.348145437466115 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.4596976361806395, dt = 0.0015339573253628721
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 2.06 us (0.6%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 892.00 ns (0.2%)
LB compute : 341.71 us (94.3%)
LB move op cnt : 0
LB apply : 3.46 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.24 us (74.6%)
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 | 6.2944e+05 | 262144 | 1 | 4.165e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.259556178577238 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.4612315935060023, dt = 0.0015338576274854876
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (0.3%)
patch tree reduce : 1793.00 ns (0.1%)
gen split merge : 952.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 881.00 ns (0.0%)
LB compute : 2.19 ms (99.1%)
LB move op cnt : 0
LB apply : 3.63 us (0.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.94 us (76.1%)
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 | 6.1747e+05 | 262144 | 1 | 4.245e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.006496740792743 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.462765451133488, dt = 0.0015337621210216206
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (1.9%)
patch tree reduce : 1903.00 ns (0.5%)
gen split merge : 982.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 942.00 ns (0.3%)
LB compute : 353.73 us (94.3%)
LB move op cnt : 0
LB apply : 3.73 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.91 us (73.2%)
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 | 6.3320e+05 | 262144 | 1 | 4.140e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.337138046702991 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.4642992132545096, dt = 0.001533670463111871
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 2.04 us (0.5%)
gen split merge : 972.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 952.00 ns (0.3%)
LB compute : 359.29 us (94.5%)
LB move op cnt : 0
LB apply : 3.99 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.97 us (74.2%)
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 | 6.3246e+05 | 262144 | 1 | 4.145e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.320652641272538 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.4658328837176215, dt = 0.001533582126025953
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 2.01 us (0.5%)
gen split merge : 972.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 871.00 ns (0.2%)
LB compute : 381.29 us (94.9%)
LB move op cnt : 0
LB apply : 3.58 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.59 us (74.9%)
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 | 6.3164e+05 | 262144 | 1 | 4.150e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.302655383790789 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.4673664658436474, dt = 0.001533496583768701
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1763.00 ns (0.5%)
gen split merge : 1042.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1172.00 ns (0.3%)
LB compute : 359.62 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.33 us (76.1%)
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 | 6.2875e+05 | 262144 | 1 | 4.169e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.241071744048613 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.468899962427416, dt = 0.0015334134850591694
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.39 us (1.8%)
patch tree reduce : 1764.00 ns (0.4%)
gen split merge : 931.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 861.00 ns (0.2%)
LB compute : 385.41 us (94.8%)
LB move op cnt : 0
LB apply : 3.69 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.65 us (71.4%)
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 | 6.3435e+05 | 262144 | 1 | 4.132e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.358240567108712 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.4704333759124752, dt = 0.0015333326373369823
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1814.00 ns (0.5%)
gen split merge : 942.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 871.00 ns (0.2%)
LB compute : 371.32 us (94.6%)
LB move op cnt : 0
LB apply : 4.07 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.58 us (78.1%)
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 | 6.2703e+05 | 262144 | 1 | 4.181e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.203343426799163 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.4719667085498123, dt = 0.0015332539953926796
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (0.1%)
patch tree reduce : 2.17 us (0.0%)
gen split merge : 952.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.0%)
LB compute : 6.22 ms (99.6%)
LB move op cnt : 0
LB apply : 4.53 us (0.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.22 us (80.7%)
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 | 6.1192e+05 | 262144 | 1 | 4.284e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12.884676205171658 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.4734999625452048, dt = 0.0015331776465434418
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1894.00 ns (0.5%)
gen split merge : 1152.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1192.00 ns (0.3%)
LB compute : 380.81 us (94.8%)
LB move op cnt : 0
LB apply : 3.98 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.37 us (76.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 | 6.1645e+05 | 262144 | 1 | 4.252e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12.97932158614703 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.4750331401917482, dt = 0.0015331039520878544
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.8%)
patch tree reduce : 1924.00 ns (0.5%)
gen split merge : 972.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.2%)
LB compute : 380.45 us (94.6%)
LB move op cnt : 0
LB apply : 3.74 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.31 us (75.9%)
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 | 6.0878e+05 | 262144 | 1 | 4.306e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12.817161232381462 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.4765662441438363, dt = 0.00153303326818513
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 2.01 us (0.5%)
gen split merge : 962.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.2%)
LB compute : 382.94 us (94.6%)
LB move op cnt : 0
LB apply : 4.29 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.64 us (76.1%)
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 | 6.0711e+05 | 262144 | 1 | 4.318e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12.781507095285798 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.4780992774120216, dt = 0.0015329658608266101
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance 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.24 us (2.0%)
patch tree reduce : 2.08 us (0.5%)
gen split merge : 962.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 872.00 ns (0.2%)
LB compute : 387.58 us (94.3%)
LB move op cnt : 0
LB apply : 4.31 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.86 us (75.8%)
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 | 6.0613e+05 | 262144 | 1 | 4.325e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12.760245123080404 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.479632243272848, dt = 0.0015329018890725822
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (0.2%)
patch tree reduce : 2.21 us (0.0%)
gen split merge : 941.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.0%)
LB compute : 4.54 ms (99.5%)
LB move op cnt : 0
LB apply : 4.49 us (0.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.72 us (80.7%)
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 | 5.9599e+05 | 262144 | 1 | 4.398e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12.546234321017604 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.4811651451619205, dt = 0.0015328415256369273
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.39 us (1.2%)
patch tree reduce : 2.08 us (0.3%)
gen split merge : 982.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.2%)
LB compute : 573.67 us (96.2%)
LB move op cnt : 0
LB apply : 3.90 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.16 us (76.8%)
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 | 5.9225e+05 | 262144 | 1 | 4.426e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12.467168980562787 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.4826979866875574, dt = 0.001532785022502376
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance 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.57 us (0.2%)
patch tree reduce : 2.32 us (0.0%)
gen split merge : 1092.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 1002.00 ns (0.0%)
LB compute : 5.65 ms (99.6%)
LB move op cnt : 0
LB apply : 4.81 us (0.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 5.14 us (77.0%)
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 | 6.1416e+05 | 262144 | 1 | 4.268e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12.92777421632505 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.4842307717100596, dt = 0.0015327326953037087
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.7%)
patch tree reduce : 1994.00 ns (0.5%)
gen split merge : 942.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 892.00 ns (0.2%)
LB compute : 390.52 us (95.0%)
LB move op cnt : 0
LB apply : 3.59 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.72 us (75.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 | 6.2656e+05 | 262144 | 1 | 4.184e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.188422320038185 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.485763504405363, dt = 0.0015326849218365074
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (0.9%)
patch tree reduce : 1963.00 ns (0.3%)
gen split merge : 941.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 902.00 ns (0.1%)
LB compute : 714.76 us (94.7%)
LB move op cnt : 0
LB apply : 23.24 us (3.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.12 us (75.5%)
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 | 6.2077e+05 | 262144 | 1 | 4.223e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.066157369688593 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.4872961893272, dt = 0.001532642136982887
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.7%)
patch tree reduce : 1803.00 ns (0.5%)
gen split merge : 942.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.3%)
LB compute : 369.04 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.13 us (76.7%)
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 | 6.2452e+05 | 262144 | 1 | 4.198e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.14472191454136 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.4888288314641827, dt = 0.0015326047975781339
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 2.08 us (0.5%)
gen split merge : 952.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.2%)
LB compute : 400.43 us (94.9%)
LB move op cnt : 0
LB apply : 4.14 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.52 us (69.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 | 6.1405e+05 | 262144 | 1 | 4.269e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12.924074544659282 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.490361436261761, dt = 0.0015325733347290396
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (1.7%)
patch tree reduce : 1914.00 ns (0.5%)
gen split merge : 1152.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 872.00 ns (0.2%)
LB compute : 387.05 us (94.9%)
LB move op cnt : 0
LB apply : 4.02 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.08 us (74.6%)
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 | 6.2578e+05 | 262144 | 1 | 4.189e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.170562153315577 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.49189400959649, dt = 0.0015325481365923957
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (0.2%)
patch tree reduce : 1823.00 ns (0.0%)
gen split merge : 972.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 1292.00 ns (0.0%)
LB compute : 4.36 ms (99.5%)
LB move op cnt : 0
LB apply : 4.31 us (0.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.35 us (82.3%)
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.0118e+05 | 262144 | 1 | 4.361e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12.652563210990024 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.4934265577330823, dt = 0.001532529565498667
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.15 us (1.3%)
patch tree reduce : 1823.00 ns (0.3%)
gen split merge : 942.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.2%)
LB compute : 535.81 us (96.3%)
LB move op cnt : 0
LB apply : 3.45 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.69 us (72.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.2532e+05 | 262144 | 1 | 4.192e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.160567939221249 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.494959087298581, dt = 0.0015325178824759872
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.2%)
patch tree reduce : 1733.00 ns (0.3%)
gen split merge : 922.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.2%)
LB compute : 558.25 us (96.4%)
LB move op cnt : 0
LB apply : 3.57 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.37 us (77.8%)
Info: cfl dt = 0.001532513212852055 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 6.2840e+05 | 262144 | 1 | 4.172e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.225224010527418 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.496491605181057, dt = 0.001532513212852055
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 2.14 us (0.5%)
gen split merge : 921.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 961.00 ns (0.2%)
LB compute : 369.40 us (94.8%)
LB move op cnt : 0
LB apply : 3.69 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.89 us (75.2%)
Info: cfl dt = 0.0015325155651717967 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 6.3370e+05 | 262144 | 1 | 4.137e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.33677043609751 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.498024118393909, dt = 0.0015325155651717967
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.7%)
patch tree reduce : 1753.00 ns (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 : 371.55 us (94.7%)
LB move op cnt : 0
LB apply : 3.67 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.50 us (70.6%)
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 | 6.2385e+05 | 262144 | 1 | 4.202e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.12940041561702 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.499556633959081, dt = 0.001532524869662734
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (0.4%)
patch tree reduce : 2.15 us (0.1%)
gen split merge : 962.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 861.00 ns (0.1%)
LB compute : 1642.26 us (98.7%)
LB move op cnt : 0
LB apply : 4.40 us (0.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.75 us (79.4%)
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 | 6.1995e+05 | 262144 | 1 | 4.228e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.047480756781905 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.501089158828744, dt = 0.001532541033168537
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.3%)
patch tree reduce : 1904.00 ns (0.3%)
gen split merge : 941.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 961.00 ns (0.2%)
LB compute : 538.60 us (96.2%)
LB move op cnt : 0
LB apply : 3.52 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.05 us (76.8%)
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 | 6.3160e+05 | 262144 | 1 | 4.151e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.292711840770993 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.5026216998619124, dt = 0.0015325637530323058
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.02 us (2.0%)
patch tree reduce : 1913.00 ns (0.5%)
gen split merge : 1283.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 872.00 ns (0.2%)
LB compute : 333.49 us (94.1%)
LB move op cnt : 0
LB apply : 3.72 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.20 us (75.4%)
Info: cfl dt = 0.00153259278565155 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 6.3267e+05 | 262144 | 1 | 4.143e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.315610119650998 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.5041542636149448, dt = 0.00153259278565155
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.8%)
patch tree reduce : 1823.00 ns (0.5%)
gen split merge : 1223.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1192.00 ns (0.3%)
LB compute : 369.76 us (94.6%)
LB move op cnt : 0
LB apply : 3.54 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.73 us (73.8%)
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 | 6.3177e+05 | 262144 | 1 | 4.149e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.296858914019 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.5056868564005965, dt = 0.0015326280397987293
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.1%)
patch tree reduce : 1763.00 ns (0.3%)
gen split merge : 1021.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1112.00 ns (0.2%)
LB compute : 565.66 us (96.4%)
LB move op cnt : 0
LB apply : 4.25 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.75 us (74.7%)
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 | 6.2725e+05 | 262144 | 1 | 4.179e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.201971546199879 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.5072194844403954, dt = 0.0015326695254708074
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.1%)
patch tree reduce : 2.06 us (0.3%)
gen split merge : 952.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1002.00 ns (0.2%)
LB compute : 587.67 us (96.6%)
LB move op cnt : 0
LB apply : 3.96 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.94 us (75.1%)
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 | 6.2212e+05 | 262144 | 1 | 4.214e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.094350829296198 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.508752153965866, dt = 0.0015327173404116573
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.8%)
patch tree reduce : 1934.00 ns (0.5%)
gen split merge : 1102.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 862.00 ns (0.2%)
LB compute : 366.74 us (94.6%)
LB move op cnt : 0
LB apply : 3.69 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.29 us (71.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 | 6.2414e+05 | 262144 | 1 | 4.200e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.137226908756702 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.5102848713062778, dt = 0.0015327475333932884
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (0.9%)
patch tree reduce : 1643.00 ns (0.2%)
gen split merge : 1163.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 952.00 ns (0.1%)
LB compute : 683.66 us (97.0%)
LB move op cnt : 0
LB apply : 4.18 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.88 us (79.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 | 6.0022e+05 | 262144 | 1 | 4.367e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12.63413083186796 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.5118176188396713, dt = 0.0015327449709586014
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.46 us (2.0%)
patch tree reduce : 2.02 us (0.5%)
gen split merge : 941.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1212.00 ns (0.3%)
LB compute : 356.44 us (94.3%)
LB move op cnt : 0
LB apply : 3.94 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.86 us (75.2%)
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 | 6.3258e+05 | 262144 | 1 | 4.144e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.315105490664646 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.51335036381063, dt = 0.0001913028560367458
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1643.00 ns (0.4%)
gen split merge : 1463.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 871.00 ns (0.2%)
LB compute : 397.19 us (94.8%)
LB move op cnt : 0
LB apply : 4.18 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.25 us (77.0%)
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 | 6.3320e+05 | 262144 | 1 | 4.140e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.6635083918752303 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 695.8534947410001 (s) [Godunov][rank=0]
Info: dump to _to_trash/ramses_kh/periodic_0020.vtk [VTK Dump][rank=0]
- took 54.06 ms, bandwidth = 721.49 MB/s
amr::Godunov: t = 2.513541666666667, dt = 0.0015327616877064353
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (0.5%)
patch tree reduce : 1703.00 ns (0.1%)
gen split merge : 1242.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 1193.00 ns (0.1%)
LB compute : 1245.79 us (98.3%)
LB move op cnt : 0
LB apply : 3.92 us (0.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 10.08 us (79.3%)
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.1092e+05 | 262144 | 1 | 4.291e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12.859402817939948 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.515074428354373, dt = 0.0015327681115312724
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (0.1%)
patch tree reduce : 1844.00 ns (0.0%)
gen split merge : 942.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 1162.00 ns (0.0%)
LB compute : 5.05 ms (99.5%)
LB move op cnt : 0
LB apply : 4.39 us (0.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.89 us (79.5%)
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 | 6.1941e+05 | 262144 | 1 | 4.232e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.03824697823803 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.5166071964659045, dt = 0.0015327809378905856
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.36 us (1.7%)
patch tree reduce : 1913.00 ns (0.5%)
gen split merge : 1233.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 871.00 ns (0.2%)
LB compute : 400.02 us (94.8%)
LB move op cnt : 0
LB apply : 4.42 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.75 us (80.1%)
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 | 6.2646e+05 | 262144 | 1 | 4.185e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.186708280482016 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.518139977403795, dt = 0.0015328004064925353
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 2.15 us (0.5%)
gen split merge : 951.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 871.00 ns (0.2%)
LB compute : 382.56 us (94.8%)
LB move op cnt : 0
LB apply : 4.15 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.65 us (71.8%)
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 | 6.1252e+05 | 262144 | 1 | 4.280e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12.893331615400053 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.5196727778102876, dt = 0.0015326075254425548
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.1%)
patch tree reduce : 1853.00 ns (0.3%)
gen split merge : 952.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 961.00 ns (0.2%)
LB compute : 588.40 us (96.7%)
LB move op cnt : 0
LB apply : 3.68 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.88 us (73.3%)
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 | 6.2750e+05 | 262144 | 1 | 4.178e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.207019725243072 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.52120538533573, dt = 0.0015323731348162698
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1883.00 ns (0.5%)
gen split merge : 962.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.2%)
LB compute : 364.65 us (94.5%)
LB move op cnt : 0
LB apply : 4.41 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.42 us (71.3%)
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 | 6.3347e+05 | 262144 | 1 | 4.138e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.330628819322225 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.5227377584705466, dt = 0.001532140402906045
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (0.3%)
patch tree reduce : 2.04 us (0.1%)
gen split merge : 1062.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.0%)
LB compute : 2.83 ms (99.2%)
LB move op cnt : 0
LB apply : 4.02 us (0.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.51 us (77.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 | 6.2259e+05 | 262144 | 1 | 4.211e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.099758212863676 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.5242698988734524, dt = 0.0015319093161106911
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (0.2%)
patch tree reduce : 1743.00 ns (0.0%)
gen split merge : 942.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.0%)
LB compute : 3.50 ms (99.4%)
LB move op cnt : 0
LB apply : 3.81 us (0.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.35 us (77.0%)
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 | 6.2022e+05 | 262144 | 1 | 4.227e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.04784246528444 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.5258018081895632, dt = 0.0015316798472978206
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (0.2%)
patch tree reduce : 1994.00 ns (0.0%)
gen split merge : 922.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 942.00 ns (0.0%)
LB compute : 4.03 ms (99.5%)
LB move op cnt : 0
LB apply : 3.85 us (0.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.81 us (78.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 | 6.1848e+05 | 262144 | 1 | 4.239e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.009396448288747 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.527333488036861, dt = 0.0015314519437618712
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.5%)
patch tree reduce : 2.03 us (0.4%)
gen split merge : 1002.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 882.00 ns (0.2%)
LB compute : 459.32 us (95.6%)
LB move op cnt : 0
LB apply : 3.62 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.79 us (74.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 | 6.3447e+05 | 262144 | 1 | 4.132e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.34366668791062 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.528864939980623, dt = 0.0015312255592229373
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.07 us (2.0%)
patch tree reduce : 1753.00 ns (0.5%)
gen split merge : 942.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1142.00 ns (0.3%)
LB compute : 340.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.77 us (73.3%)
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 | 6.2902e+05 | 262144 | 1 | 4.167e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.227176030568765 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.530396165539846, dt = 0.0015310007067458828
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1903.00 ns (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 : 342.68 us (94.3%)
LB move op cnt : 0
LB apply : 3.73 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.14 us (71.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 | 6.2179e+05 | 262144 | 1 | 4.216e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.073185655467602 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.5319271662465916, dt = 0.0015307774465628857
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (0.9%)
patch tree reduce : 1763.00 ns (0.2%)
gen split merge : 1263.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 882.00 ns (0.1%)
LB compute : 767.68 us (97.4%)
LB move op cnt : 0
LB apply : 3.69 us (0.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.96 us (76.0%)
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 | 6.3438e+05 | 262144 | 1 | 4.132e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.33604186178926 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.5334579436931546, dt = 0.0015305558413498295
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (0.1%)
patch tree reduce : 1844.00 ns (0.0%)
gen split merge : 982.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 882.00 ns (0.0%)
LB compute : 5.77 ms (99.6%)
LB move op cnt : 0
LB apply : 3.98 us (0.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.57 us (70.5%)
Info: cfl dt = 0.0015303359449257712 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 6.1809e+05 | 262144 | 1 | 4.241e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12.991521060274724 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.5349884995345042, dt = 0.0015303359449257712
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1834.00 ns (0.5%)
gen split merge : 952.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 862.00 ns (0.2%)
LB compute : 371.18 us (94.9%)
LB move op cnt : 0
LB apply : 3.50 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.02 us (72.2%)
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 | 6.2962e+05 | 262144 | 1 | 4.164e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.231979824259703 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.53651883547943, dt = 0.0015301177976569512
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1884.00 ns (0.5%)
gen split merge : 942.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 892.00 ns (0.2%)
LB compute : 365.97 us (94.6%)
LB move op cnt : 0
LB apply : 4.01 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.56 us (73.3%)
Info: cfl dt = 0.0015299013218799022 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 6.2589e+05 | 262144 | 1 | 4.188e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.151710773371779 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.538048953277087, dt = 0.0015299013218799022
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.1%)
patch tree reduce : 1823.00 ns (0.3%)
gen split merge : 962.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1082.00 ns (0.2%)
LB compute : 562.88 us (96.5%)
LB move op cnt : 0
LB apply : 3.72 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.83 us (73.7%)
Info: cfl dt = 0.0015296862290721232 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 6.3411e+05 | 262144 | 1 | 4.134e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.322687297347231 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.539578854598967, dt = 0.0015296862290721232
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (0.3%)
patch tree reduce : 2.12 us (0.1%)
gen split merge : 1112.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 952.00 ns (0.0%)
LB compute : 2.18 ms (99.0%)
LB move op cnt : 0
LB apply : 4.13 us (0.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.85 us (75.1%)
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 | 6.2304e+05 | 262144 | 1 | 4.208e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.088173933578965 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.5411085408280387, dt = 0.0015294725530553537
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1703.00 ns (0.4%)
gen split merge : 1002.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 872.00 ns (0.2%)
LB compute : 364.92 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.99 us (74.7%)
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.2913e+05 | 262144 | 1 | 4.167e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.21428726721361 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.542638013381094, dt = 0.0015292603044379277
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (1.9%)
patch tree reduce : 1814.00 ns (0.5%)
gen split merge : 992.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1122.00 ns (0.3%)
LB compute : 345.14 us (94.2%)
LB move op cnt : 0
LB apply : 3.72 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.02 us (74.1%)
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 | 6.2496e+05 | 262144 | 1 | 4.195e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.124869454527705 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.5441672736855323, dt = 0.0015290494743725328
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.7%)
patch tree reduce : 2.08 us (0.5%)
gen split merge : 942.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 882.00 ns (0.2%)
LB compute : 372.69 us (94.7%)
LB move op cnt : 0
LB apply : 3.50 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.08 us (75.7%)
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 | 6.3238e+05 | 262144 | 1 | 4.145e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.27895308164381 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.545696323159905, dt = 0.0015288400377988028
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1733.00 ns (0.5%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1212.00 ns (0.4%)
LB compute : 319.61 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.35 us (70.3%)
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 | 6.3368e+05 | 262144 | 1 | 4.137e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.304324955998151 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.547225163197704, dt = 0.0015286319590684726
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1793.00 ns (0.4%)
gen split merge : 952.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 882.00 ns (0.2%)
LB compute : 384.07 us (94.9%)
LB move op cnt : 0
LB apply : 3.85 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.44 us (71.6%)
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 | 6.2043e+05 | 262144 | 1 | 4.225e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.024368627363991 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.5487537951567725, dt = 0.0015284252027386262
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (0.2%)
patch tree reduce : 2.21 us (0.1%)
gen split merge : 992.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.0%)
LB compute : 3.25 ms (99.3%)
LB move op cnt : 0
LB apply : 3.93 us (0.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.01 us (76.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 | 6.1316e+05 | 262144 | 1 | 4.275e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12.870143690701848 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.5502822203595112, dt = 0.0015282198005503486
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (0.2%)
patch tree reduce : 1823.00 ns (0.0%)
gen split merge : 971.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 861.00 ns (0.0%)
LB compute : 4.44 ms (99.5%)
LB move op cnt : 0
LB apply : 4.29 us (0.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.98 us (76.8%)
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.2136e+05 | 262144 | 1 | 4.219e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.040368675484068 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.5518104401600614, dt = 0.0015280157600004503
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.25 us (0.5%)
patch tree reduce : 1734.00 ns (0.1%)
gen split merge : 951.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 882.00 ns (0.1%)
LB compute : 1418.55 us (98.5%)
LB move op cnt : 0
LB apply : 3.84 us (0.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.19 us (77.6%)
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 | 6.1604e+05 | 262144 | 1 | 4.255e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12.927059349935094 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.553338455920062, dt = 0.001527813124098036
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (0.4%)
patch tree reduce : 1803.00 ns (0.1%)
gen split merge : 971.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 1232.00 ns (0.1%)
LB compute : 1579.28 us (98.7%)
LB move op cnt : 0
LB apply : 3.70 us (0.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.22 us (76.6%)
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 | 6.3086e+05 | 262144 | 1 | 4.155e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.236181479715812 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.55486626904416, dt = 0.001527611963613796
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.36 us (0.1%)
patch tree reduce : 2.19 us (0.0%)
gen split merge : 1242.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 892.00 ns (0.0%)
LB compute : 5.85 ms (99.6%)
LB move op cnt : 0
LB apply : 3.70 us (0.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.34 us (76.4%)
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 | 6.1702e+05 | 262144 | 1 | 4.249e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12.944199878976168 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.5563938810077738, dt = 0.001527412463549615
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (0.4%)
patch tree reduce : 2.14 us (0.1%)
gen split merge : 1002.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 872.00 ns (0.1%)
LB compute : 1618.64 us (98.7%)
LB move op cnt : 0
LB apply : 4.04 us (0.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.39 us (74.9%)
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 | 6.2352e+05 | 262144 | 1 | 4.204e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.078819994912344 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.5579212934713236, dt = 0.0015272147911441956
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (0.1%)
patch tree reduce : 2.04 us (0.0%)
gen split merge : 941.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.0%)
LB compute : 4.69 ms (99.5%)
LB move op cnt : 0
LB apply : 4.10 us (0.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.99 us (77.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 | 6.1232e+05 | 262144 | 1 | 4.281e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12.842168546417914 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.559448508262468, dt = 0.0015270190816118194
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 2.05 us (0.5%)
gen split merge : 942.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1192.00 ns (0.3%)
LB compute : 371.16 us (94.4%)
LB move op cnt : 0
LB apply : 4.71 us (1.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.30 us (77.6%)
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 | 6.3228e+05 | 262144 | 1 | 4.146e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.259216337966006 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.5609755273440795, dt = 0.0015268254852540005
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 2.06 us (0.5%)
gen split merge : 1113.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 872.00 ns (0.2%)
LB compute : 374.96 us (91.0%)
LB move op cnt : 0
LB apply : 3.55 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.21 us (74.6%)
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 | 6.2821e+05 | 262144 | 1 | 4.173e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.172167128936001 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.5625023528293336, dt = 0.0015266344099158027
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.44 us (1.0%)
patch tree reduce : 1983.00 ns (0.3%)
gen split merge : 952.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 882.00 ns (0.1%)
LB compute : 697.48 us (96.8%)
LB move op cnt : 0
LB apply : 4.47 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.33 us (79.4%)
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 | 6.3247e+05 | 262144 | 1 | 4.145e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.259910661917697 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.5640289872392494, dt = 0.0015264462807982279
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.24 us (1.4%)
patch tree reduce : 1843.00 ns (0.4%)
gen split merge : 952.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 952.00 ns (0.2%)
LB compute : 481.87 us (95.8%)
LB move op cnt : 0
LB apply : 3.91 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.00 us (76.3%)
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 | 6.2702e+05 | 262144 | 1 | 4.181e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.14384855740975 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.5655554335200477, dt = 0.001526261198684421
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.05 us (1.9%)
patch tree reduce : 1764.00 ns (0.5%)
gen split merge : 1292.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 912.00 ns (0.2%)
LB compute : 357.74 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.65 us (75.5%)
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 | 6.2081e+05 | 262144 | 1 | 4.223e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.012200706544917 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.5670816947187323, dt = 0.0015260792558820142
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 2.26 us (0.6%)
gen split merge : 952.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1042.00 ns (0.3%)
LB compute : 383.00 us (94.6%)
LB move op cnt : 0
LB apply : 4.04 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.87 us (73.4%)
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 | 6.1959e+05 | 262144 | 1 | 4.231e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12.984969629238575 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.5686077739746143, dt = 0.0015259005539663229
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.32 us (1.7%)
patch tree reduce : 2.05 us (0.5%)
gen split merge : 1002.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1202.00 ns (0.3%)
LB compute : 421.06 us (94.9%)
LB move op cnt : 0
LB apply : 3.74 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.13 us (76.8%)
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 | 6.2401e+05 | 262144 | 1 | 4.201e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.076130661879128 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.5701336745285808, dt = 0.0015257252094116919
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.7%)
patch tree reduce : 1973.00 ns (0.5%)
gen split merge : 952.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.2%)
LB compute : 397.52 us (95.0%)
LB move op cnt : 0
LB apply : 3.55 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.06 us (75.3%)
Info: cfl dt = 0.0015255533554885663 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 6.2649e+05 | 262144 | 1 | 4.184e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.126575932876403 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.5716593997379924, dt = 0.0015255533554885663
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (0.3%)
patch tree reduce : 1823.00 ns (0.1%)
gen split merge : 972.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 1012.00 ns (0.0%)
LB compute : 2.46 ms (99.1%)
LB move op cnt : 0
LB apply : 3.92 us (0.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.64 us (77.6%)
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 | 6.2825e+05 | 262144 | 1 | 4.173e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.161983835825914 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.573184953093481, dt = 0.0015253850692563038
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.6%)
patch tree reduce : 1743.00 ns (0.4%)
gen split merge : 932.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 882.00 ns (0.2%)
LB compute : 378.29 us (94.9%)
LB move op cnt : 0
LB apply : 3.75 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.12 us (74.9%)
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 | 6.3400e+05 | 262144 | 1 | 4.135e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.28100338534793 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.5747103381627374, dt = 0.0015252203228414388
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.6%)
patch tree reduce : 2.20 us (0.5%)
gen split merge : 992.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 871.00 ns (0.2%)
LB compute : 387.24 us (94.8%)
LB move op cnt : 0
LB apply : 3.66 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.56 us (76.3%)
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 | 6.2654e+05 | 262144 | 1 | 4.184e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.123280067290615 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.5762355584855787, dt = 0.001525059373759957
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.11 us (0.6%)
gen split merge : 942.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 872.00 ns (0.2%)
LB compute : 359.70 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.26 us (75.1%)
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 | 6.3460e+05 | 262144 | 1 | 4.131e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.290817796931897 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.577760617859339, dt = 0.0015249026791034407
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.5%)
patch tree reduce : 1744.00 ns (0.4%)
gen split merge : 951.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 951.00 ns (0.2%)
LB compute : 435.74 us (95.4%)
LB move op cnt : 0
LB apply : 4.05 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.20 us (76.5%)
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 | 6.3678e+05 | 262144 | 1 | 4.117e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.334984624212355 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.579285520538442, dt = 0.0015247507240520512
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 2.06 us (0.5%)
gen split merge : 952.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.2%)
LB compute : 407.93 us (95.0%)
LB move op cnt : 0
LB apply : 4.30 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.06 us (74.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 | 6.2916e+05 | 262144 | 1 | 4.167e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.174061119476955 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.5808102712624943, dt = 0.0015246038706734379
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1994.00 ns (0.5%)
gen split merge : 961.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1022.00 ns (0.2%)
LB compute : 411.15 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.59 us (78.8%)
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 | 6.3416e+05 | 262144 | 1 | 4.134e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.277664998727278 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.5823348751331676, dt = 0.0015244623324785552
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (0.2%)
patch tree reduce : 1793.00 ns (0.0%)
gen split merge : 942.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.0%)
LB compute : 4.19 ms (99.5%)
LB move op cnt : 0
LB apply : 3.81 us (0.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.10 us (76.5%)
Info: cfl dt = 0.0015243261665922774 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 6.0994e+05 | 262144 | 1 | 4.298e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12.769371737187322 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.583859337465646, dt = 0.0015243261665922774
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.4%)
patch tree reduce : 2.00 us (0.4%)
gen split merge : 1172.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 961.00 ns (0.2%)
LB compute : 451.67 us (95.5%)
LB move op cnt : 0
LB apply : 3.81 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.67 us (73.6%)
Info: cfl dt = 0.0015241953159966463 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 6.0952e+05 | 262144 | 1 | 4.301e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12.759417539412274 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.5853836636322383, dt = 0.0015241953159966463
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.24 us (1.9%)
patch tree reduce : 1874.00 ns (0.5%)
gen split merge : 972.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.3%)
LB compute : 368.49 us (94.5%)
LB move op cnt : 0
LB apply : 3.94 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.73 us (73.9%)
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 | 6.2143e+05 | 262144 | 1 | 4.218e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.007511552330458 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.586907858948235, dt = 0.001524069582638697
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.3%)
patch tree reduce : 2.11 us (0.4%)
gen split merge : 991.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.2%)
LB compute : 545.26 us (96.2%)
LB move op cnt : 0
LB apply : 3.58 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.22 us (72.0%)
Info: cfl dt = 0.0015239486956632872 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 6.2732e+05 | 262144 | 1 | 4.179e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.129850783223613 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.5884319285308734, dt = 0.0015239486956632872
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (0.1%)
patch tree reduce : 1673.00 ns (0.0%)
gen split merge : 962.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 28.88 us (0.5%)
LB compute : 6.24 ms (99.2%)
LB move op cnt : 0
LB apply : 4.23 us (0.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.63 us (75.7%)
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 | 6.1554e+05 | 262144 | 1 | 4.259e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12.882137096926467 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.5899558772265365, dt = 0.001523832288821232
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (0.7%)
patch tree reduce : 1903.00 ns (0.2%)
gen split merge : 952.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.1%)
LB compute : 1001.13 us (97.9%)
LB move op cnt : 0
LB apply : 4.11 us (0.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.39 us (74.8%)
Info: cfl dt = 0.0015237198372224086 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 6.2954e+05 | 262144 | 1 | 4.164e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.174112292428363 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.5914797095153577, dt = 0.0015237198372224086
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (0.1%)
patch tree reduce : 1864.00 ns (0.0%)
gen split merge : 942.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.0%)
LB compute : 5.50 ms (99.6%)
LB move op cnt : 0
LB apply : 4.29 us (0.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.72 us (80.2%)
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 | 6.1514e+05 | 262144 | 1 | 4.262e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12.871953346266483 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.59300342935258, dt = 0.0015236112321207937
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.6%)
patch tree reduce : 1833.00 ns (0.4%)
gen split merge : 1273.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 932.00 ns (0.2%)
LB compute : 396.46 us (95.0%)
LB move op cnt : 0
LB apply : 3.50 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.13 us (75.9%)
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 | 6.2146e+05 | 262144 | 1 | 4.218e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.003112083367595 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.5945270405847007, dt = 0.0015235063595674956
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (0.2%)
patch tree reduce : 2.20 us (0.1%)
gen split merge : 872.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.0%)
LB compute : 2.76 ms (99.2%)
LB move op cnt : 0
LB apply : 4.24 us (0.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.98 us (75.2%)
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 | 6.1935e+05 | 262144 | 1 | 4.233e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12.95814322080042 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.596050546944268, dt = 0.0015234051011667478
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (0.1%)
patch tree reduce : 2.06 us (0.0%)
gen split merge : 961.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 922.00 ns (0.0%)
LB compute : 6.15 ms (99.7%)
LB move op cnt : 0
LB apply : 4.14 us (0.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.14 us (75.2%)
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 | 6.0894e+05 | 262144 | 1 | 4.305e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12.739485443252768 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.5975739520454346, dt = 0.0015233073534648195
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.6%)
patch tree reduce : 1673.00 ns (0.4%)
gen split merge : 1272.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 892.00 ns (0.2%)
LB compute : 429.42 us (95.3%)
LB move op cnt : 0
LB apply : 3.78 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.42 us (77.0%)
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 | 6.2397e+05 | 262144 | 1 | 4.201e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.053098598231706 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.5990972593988992, dt = 0.0015232130432429887
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (0.1%)
patch tree reduce : 1793.00 ns (0.0%)
gen split merge : 1182.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 1132.00 ns (0.0%)
LB compute : 6.18 ms (99.7%)
LB move op cnt : 0
LB apply : 4.10 us (0.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.98 us (74.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 | 6.1530e+05 | 262144 | 1 | 4.260e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12.87089589919242 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.6006204724421425, dt = 0.0015231221306644758
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (0.3%)
patch tree reduce : 1883.00 ns (0.1%)
gen split merge : 941.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 881.00 ns (0.0%)
LB compute : 2.41 ms (99.1%)
LB move op cnt : 0
LB apply : 4.06 us (0.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.81 us (73.3%)
Info: cfl dt = 0.0015230346010244166 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 6.1583e+05 | 262144 | 1 | 4.257e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12.881255174120616 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.602143594572807, dt = 0.0015230346010244166
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1864.00 ns (0.5%)
gen split merge : 942.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1333.00 ns (0.3%)
LB compute : 367.19 us (94.6%)
LB move op cnt : 0
LB apply : 3.85 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.32 us (77.4%)
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 | 6.2496e+05 | 262144 | 1 | 4.195e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.07150123650736 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.6036666291738313, dt = 0.0015229504570997351
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.1%)
patch tree reduce : 1844.00 ns (0.3%)
gen split merge : 961.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.2%)
LB compute : 560.38 us (96.4%)
LB move op cnt : 0
LB apply : 4.31 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.71 us (74.2%)
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 | 6.1586e+05 | 262144 | 1 | 4.257e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12.88037595184582 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.605189579630931, dt = 0.0015228696776598937
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.2%)
patch tree reduce : 1984.00 ns (0.3%)
gen split merge : 962.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.2%)
LB compute : 557.69 us (96.4%)
LB move op cnt : 0
LB apply : 3.90 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.88 us (74.4%)
Info: cfl dt = 0.0015227922249294278 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 6.2894e+05 | 262144 | 1 | 4.168e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.153357066126025 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.6067124493085907, dt = 0.0015227922249294278
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1814.00 ns (0.4%)
gen split merge : 1162.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.2%)
LB compute : 406.93 us (95.1%)
LB move op cnt : 0
LB apply : 3.83 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.27 us (77.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 | 6.2677e+05 | 262144 | 1 | 4.182e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.107331316441195 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.60823524153352, dt = 0.0015227180616253517
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.20 us (1.3%)
patch tree reduce : 2.20 us (0.4%)
gen split merge : 971.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 911.00 ns (0.2%)
LB compute : 539.04 us (96.2%)
LB move op cnt : 0
LB apply : 3.95 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.30 us (75.5%)
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 | 6.3227e+05 | 262144 | 1 | 4.146e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.22153864970898 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.6097579595951452, dt = 0.0015226471723875984
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (0.1%)
patch tree reduce : 1713.00 ns (0.0%)
gen split merge : 942.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 911.00 ns (0.0%)
LB compute : 6.16 ms (99.7%)
LB move op cnt : 0
LB apply : 3.69 us (0.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.83 us (73.1%)
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 | 6.1696e+05 | 262144 | 1 | 4.249e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12.900961923097118 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.611280606767533, dt = 0.0015225795784276472
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.8%)
patch tree reduce : 1824.00 ns (0.5%)
gen split merge : 961.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1012.00 ns (0.3%)
LB compute : 371.69 us (94.7%)
LB move op cnt : 0
LB apply : 3.63 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.40 us (74.2%)
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 | 6.3534e+05 | 262144 | 1 | 4.126e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.28462761945369 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.6128031863459604, dt = 0.0015225153440370605
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.7%)
patch tree reduce : 2.08 us (0.5%)
gen split merge : 952.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 942.00 ns (0.2%)
LB compute : 396.61 us (94.9%)
LB move op cnt : 0
LB apply : 3.66 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.46 us (74.8%)
Info: cfl dt = 0.0015224548189151203 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 6.2838e+05 | 262144 | 1 | 4.172e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.138570397174398 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.6143257016899977, dt = 0.0015224548189151203
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.5%)
patch tree reduce : 1974.00 ns (0.5%)
gen split merge : 991.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 901.00 ns (0.2%)
LB compute : 411.88 us (95.2%)
LB move op cnt : 0
LB apply : 3.65 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.94 us (76.4%)
Info: cfl dt = 0.001522398363792358 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 6.2843e+05 | 262144 | 1 | 4.171e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.13909853499554 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.6158481565089127, dt = 0.001522398363792358
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1743.00 ns (0.5%)
gen split merge : 942.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 912.00 ns (0.2%)
LB compute : 344.83 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.21 us (73.1%)
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 | 6.2880e+05 | 262144 | 1 | 4.169e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.146247550097597 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.617370554872705, dt = 0.0015223461999149211
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1884.00 ns (0.5%)
gen split merge : 961.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.3%)
LB compute : 360.37 us (94.5%)
LB move op cnt : 0
LB apply : 3.92 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.77 us (74.7%)
Info: cfl dt = 0.001522298405641283 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 6.3241e+05 | 262144 | 1 | 4.145e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.221396722401177 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.61889290107262, dt = 0.001522298405641283
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (0.9%)
patch tree reduce : 1884.00 ns (0.3%)
gen split merge : 942.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.1%)
LB compute : 695.41 us (97.1%)
LB move op cnt : 0
LB apply : 4.23 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.81 us (75.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 | 6.3081e+05 | 262144 | 1 | 4.156e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.187412119642195 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.620415199478261, dt = 0.0015222549829826063
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1813.00 ns (0.5%)
gen split merge : 1253.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 871.00 ns (0.2%)
LB compute : 376.56 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.87 us (76.7%)
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 | 6.3166e+05 | 262144 | 1 | 4.150e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.204877870248874 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.6219374544612437, dt = 0.0015222158879719609
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.69 us (2.0%)
patch tree reduce : 2.08 us (0.5%)
gen split merge : 931.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 881.00 ns (0.2%)
LB compute : 364.72 us (94.4%)
LB move op cnt : 0
LB apply : 3.44 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.48 us (71.4%)
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 | 6.2516e+05 | 262144 | 1 | 4.193e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.068568339270781 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.6234596703492157, dt = 0.0015221810130861245
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.6%)
patch tree reduce : 1773.00 ns (0.4%)
gen split merge : 1122.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 931.00 ns (0.2%)
LB compute : 403.24 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.67 us (74.1%)
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 | 6.3219e+05 | 262144 | 1 | 4.147e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.215362818689712 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.624981851362302, dt = 0.0015221505540052682
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1843.00 ns (0.5%)
gen split merge : 962.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 882.00 ns (0.2%)
LB compute : 356.09 us (94.5%)
LB move op cnt : 0
LB apply : 3.92 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.73 us (71.8%)
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 | 6.1472e+05 | 262144 | 1 | 4.264e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12.849780172983973 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.6265040019163073, dt = 0.0015221246909691835
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1733.00 ns (0.4%)
gen split merge : 962.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1212.00 ns (0.3%)
LB compute : 372.41 us (94.7%)
LB move op cnt : 0
LB apply : 3.94 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.22 us (72.8%)
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 | 6.3273e+05 | 262144 | 1 | 4.143e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.226000249859643 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.6280261266072764, dt = 0.001522103550366825
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (0.2%)
patch tree reduce : 2.12 us (0.0%)
gen split merge : 972.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 1183.00 ns (0.0%)
LB compute : 4.35 ms (99.5%)
LB move op cnt : 0
LB apply : 3.91 us (0.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.13 us (74.1%)
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 | 6.2015e+05 | 262144 | 1 | 4.227e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12.962961775357192 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.6295482301576434, dt = 0.0015220635640851206
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.3%)
patch tree reduce : 1754.00 ns (0.3%)
gen split merge : 922.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 871.00 ns (0.2%)
LB compute : 537.66 us (96.4%)
LB move op cnt : 0
LB apply : 3.46 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.02 us (73.2%)
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 | 6.2530e+05 | 262144 | 1 | 4.192e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.070338854960934 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.6310702937217285, dt = 0.001521992938839611
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.3%)
patch tree reduce : 1773.00 ns (0.4%)
gen split merge : 962.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.2%)
LB compute : 452.20 us (95.7%)
LB move op cnt : 0
LB apply : 4.11 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.20 us (76.5%)
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 | 6.3149e+05 | 262144 | 1 | 4.151e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.198998023505435 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.632592286660568, dt = 0.0015219275259207915
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1994.00 ns (0.5%)
gen split merge : 951.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 881.00 ns (0.2%)
LB compute : 407.40 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.29 us (74.4%)
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 | 6.3086e+05 | 262144 | 1 | 4.155e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.18526700274747 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.634114214186489, dt = 0.0015218672236035256
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.9%)
patch tree reduce : 1844.00 ns (0.5%)
gen split merge : 1212.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.3%)
LB compute : 346.55 us (94.5%)
LB move op cnt : 0
LB apply : 3.46 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.39 us (71.3%)
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 | 6.2802e+05 | 262144 | 1 | 4.174e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.125345170127016 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.6356360814100923, dt = 0.0015218118861542072
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1984.00 ns (0.5%)
gen split merge : 932.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 902.00 ns (0.2%)
LB compute : 367.86 us (94.7%)
LB move op cnt : 0
LB apply : 3.53 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.25 us (69.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 | 6.3370e+05 | 262144 | 1 | 4.137e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.2436409500608 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.6371578932962465, dt = 0.0015217613550831813
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 2.37 us (0.6%)
gen split merge : 942.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1062.00 ns (0.3%)
LB compute : 345.90 us (94.3%)
LB move op cnt : 0
LB apply : 3.64 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.81 us (75.7%)
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 | 6.3385e+05 | 262144 | 1 | 4.136e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.246347429825676 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.63867965465133, dt = 0.0015217154035062754
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (0.8%)
patch tree reduce : 1834.00 ns (0.2%)
gen split merge : 941.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 1022.00 ns (0.1%)
LB compute : 856.78 us (97.6%)
LB move op cnt : 0
LB apply : 3.69 us (0.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.03 us (72.6%)
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 | 6.2499e+05 | 262144 | 1 | 4.194e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.060860620784926 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.640201370054836, dt = 0.0015216737413997524
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.7%)
patch tree reduce : 1723.00 ns (0.4%)
gen split merge : 1162.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 971.00 ns (0.2%)
LB compute : 381.80 us (94.7%)
LB move op cnt : 0
LB apply : 3.64 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.19 us (76.4%)
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 | 6.2776e+05 | 262144 | 1 | 4.176e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.118410456250587 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.641723043796236, dt = 0.0015216360470863071
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 2.16 us (0.6%)
gen split merge : 942.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 952.00 ns (0.3%)
LB compute : 359.03 us (94.5%)
LB move op cnt : 0
LB apply : 3.94 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.69 us (72.3%)
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 | 6.3188e+05 | 262144 | 1 | 4.149e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.204032822026333 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.6432446798433222, dt = 0.0015216019955173162
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (0.4%)
patch tree reduce : 1794.00 ns (0.1%)
gen split merge : 952.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 872.00 ns (0.0%)
LB compute : 1849.96 us (98.9%)
LB move op cnt : 0
LB apply : 4.00 us (0.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.03 us (73.1%)
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 | 5.1379e+05 | 262144 | 1 | 5.102e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10.736244890972362 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.6447662818388396, dt = 0.0010670514944939313
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1784.00 ns (0.5%)
gen split merge : 962.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 902.00 ns (0.2%)
LB compute : 367.17 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.85 us (74.4%)
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 | 6.3377e+05 | 262144 | 1 | 4.136e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 9.287049562337124 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 732.9489125250001 (s) [Godunov][rank=0]
Info: dump to _to_trash/ramses_kh/periodic_0021.vtk [VTK Dump][rank=0]
- took 54.41 ms, bandwidth = 716.78 MB/s
amr::Godunov: t = 2.6458333333333335, dt = 0.0015215627922797817
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (0.5%)
patch tree reduce : 1793.00 ns (0.1%)
gen split merge : 1193.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 1002.00 ns (0.1%)
LB compute : 1430.65 us (98.5%)
LB move op cnt : 0
LB apply : 3.69 us (0.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 21.11 us (94.8%)
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.1041e+05 | 262144 | 1 | 4.295e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12.754850609190278 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.6473548961256133, dt = 0.0015215367630654838
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.4%)
patch tree reduce : 1743.00 ns (0.4%)
gen split merge : 952.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1302.00 ns (0.3%)
LB compute : 463.29 us (95.8%)
LB move op cnt : 0
LB apply : 3.47 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.77 us (73.7%)
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 | 6.3279e+05 | 262144 | 1 | 4.143e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.22218862303406 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.6488764328886787, dt = 0.0015215134756096653
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (0.2%)
patch tree reduce : 2.17 us (0.1%)
gen split merge : 992.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 891.00 ns (0.0%)
LB compute : 3.11 ms (99.3%)
LB move op cnt : 0
LB apply : 3.77 us (0.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.77 us (76.6%)
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 | 6.0845e+05 | 262144 | 1 | 4.308e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12.71338517949238 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.650397946364288, dt = 0.001521493007339403
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.16 us (1.7%)
patch tree reduce : 2.02 us (0.5%)
gen split merge : 1262.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 871.00 ns (0.2%)
LB compute : 402.04 us (95.0%)
LB move op cnt : 0
LB apply : 3.52 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.58 us (71.8%)
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.2633e+05 | 262144 | 1 | 4.185e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.086843514843597 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.6519194393716274, dt = 0.001521475702781611
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (0.8%)
patch tree reduce : 1824.00 ns (0.2%)
gen split merge : 941.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 981.00 ns (0.1%)
LB compute : 856.50 us (97.6%)
LB move op cnt : 0
LB apply : 3.80 us (0.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.72 us (73.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 | 6.2157e+05 | 262144 | 1 | 4.217e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12.98735571556051 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.653440915074409, dt = 0.0015214620352323686
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.37 us (1.3%)
patch tree reduce : 2.20 us (0.4%)
gen split merge : 962.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.2%)
LB compute : 552.96 us (96.2%)
LB move op cnt : 0
LB apply : 3.64 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.77 us (73.6%)
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 | 6.1651e+05 | 262144 | 1 | 4.252e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12.881452279786386 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.654962377109641, dt = 0.0015214526165728082
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1954.00 ns (0.4%)
gen split merge : 1232.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 952.00 ns (0.2%)
LB compute : 425.02 us (95.2%)
LB move op cnt : 0
LB apply : 4.10 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.99 us (75.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 | 6.2835e+05 | 262144 | 1 | 4.172e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.12881893492592 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.656483829726214, dt = 0.0015214483506929108
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.1%)
patch tree reduce : 2.33 us (0.3%)
gen split merge : 1012.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1032.00 ns (0.2%)
LB compute : 646.33 us (96.7%)
LB move op cnt : 0
LB apply : 3.75 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.03 us (71.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 | 6.1336e+05 | 262144 | 1 | 4.274e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12.815411492055459 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.658005278076907, dt = 0.0015214495068474087
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (0.3%)
patch tree reduce : 19.51 us (0.9%)
gen split merge : 982.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 1021.00 ns (0.0%)
LB compute : 2.05 ms (98.1%)
LB move op cnt : 0
LB apply : 4.42 us (0.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.29 us (76.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 | 6.2038e+05 | 262144 | 1 | 4.226e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12.962214519370606 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.6595267275837546, dt = 0.0015214547605531907
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (0.2%)
patch tree reduce : 1824.00 ns (0.1%)
gen split merge : 1142.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 892.00 ns (0.0%)
LB compute : 3.61 ms (99.4%)
LB move op cnt : 0
LB apply : 4.00 us (0.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.59 us (72.5%)
Info: cfl dt = 0.0015214652338746918 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 6.2242e+05 | 262144 | 1 | 4.212e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.004784796172158 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.6610481823443077, dt = 0.0015214652338746918
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (0.6%)
patch tree reduce : 1974.00 ns (0.2%)
gen split merge : 992.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.1%)
LB compute : 1055.73 us (98.1%)
LB move op cnt : 0
LB apply : 3.58 us (0.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.73 us (74.0%)
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 | 6.1955e+05 | 262144 | 1 | 4.231e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12.944938770271563 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.6625696475781826, dt = 0.0015214814636623894
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (0.1%)
patch tree reduce : 1973.00 ns (0.0%)
gen split merge : 942.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 862.00 ns (0.0%)
LB compute : 5.28 ms (99.6%)
LB move op cnt : 0
LB apply : 4.11 us (0.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.31 us (75.7%)
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 | 6.1846e+05 | 262144 | 1 | 4.239e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12.922415464622341 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.664091129041845, dt = 0.0015215037035484235
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (0.8%)
patch tree reduce : 1894.00 ns (0.2%)
gen split merge : 972.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.1%)
LB compute : 818.87 us (97.4%)
LB move op cnt : 0
LB apply : 3.96 us (0.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.92 us (73.7%)
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 | 6.2386e+05 | 262144 | 1 | 4.202e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.035407417804938 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.6656126327453937, dt = 0.0015215320327723965
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 2.24 us (0.5%)
gen split merge : 1232.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 961.00 ns (0.2%)
LB compute : 389.85 us (94.8%)
LB move op cnt : 0
LB apply : 3.74 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.33 us (76.9%)
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 | 6.2519e+05 | 262144 | 1 | 4.193e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.063459645812756 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.667134164778166, dt = 0.0015215664332649832
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.05 us (1.7%)
patch tree reduce : 1904.00 ns (0.5%)
gen split merge : 971.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 901.00 ns (0.2%)
LB compute : 393.92 us (94.6%)
LB move op cnt : 0
LB apply : 4.34 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.12 us (77.0%)
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 | 6.2539e+05 | 262144 | 1 | 4.192e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.067805390483048 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.668655731211431, dt = 0.0015216068296643461
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (1.6%)
patch tree reduce : 2.00 us (0.5%)
gen split merge : 1092.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 871.00 ns (0.2%)
LB compute : 422.81 us (95.2%)
LB move op cnt : 0
LB apply : 3.68 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.90 us (75.1%)
Info: cfl dt = 0.0015216531205595398 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 6.2903e+05 | 262144 | 1 | 4.167e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.144345722805426 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.6701773380410954, dt = 0.0015216531205595398
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1873.00 ns (0.5%)
gen split merge : 1223.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.3%)
LB compute : 343.03 us (94.2%)
LB move op cnt : 0
LB apply : 3.76 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.44 us (70.4%)
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 | 6.3164e+05 | 262144 | 1 | 4.150e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.199108769386289 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.671698991161655, dt = 0.0015217051989234796
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.15 us (1.8%)
patch tree reduce : 2.15 us (0.5%)
gen split merge : 1172.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 902.00 ns (0.2%)
LB compute : 385.61 us (94.8%)
LB move op cnt : 0
LB apply : 3.77 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.33 us (72.0%)
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 | 6.3325e+05 | 262144 | 1 | 4.140e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.233305274970458 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.6732206963605787, dt = 0.0015217629740179957
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (0.1%)
patch tree reduce : 1923.00 ns (0.0%)
gen split merge : 942.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 882.00 ns (0.0%)
LB compute : 4.36 ms (99.5%)
LB move op cnt : 0
LB apply : 4.12 us (0.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.91 us (81.2%)
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 | 6.1171e+05 | 262144 | 1 | 4.285e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12.783603209973796 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.6747424593345968, dt = 0.001521826407482079
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.4%)
patch tree reduce : 2.12 us (0.4%)
gen split merge : 1042.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 942.00 ns (0.2%)
LB compute : 451.94 us (95.5%)
LB move op cnt : 0
LB apply : 3.98 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.02 us (76.0%)
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 | 6.2466e+05 | 262144 | 1 | 4.197e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.054885104038764 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.6762642857420786, dt = 0.001521895515919894
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.4%)
patch tree reduce : 1634.00 ns (0.3%)
gen split merge : 951.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 901.00 ns (0.2%)
LB compute : 453.19 us (95.7%)
LB move op cnt : 0
LB apply : 4.03 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.87 us (74.3%)
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 | 6.2516e+05 | 262144 | 1 | 4.193e-01 | 0.0% | 0.3% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.065842706510656 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.6777861812579986, dt = 0.0015219704157906422
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (0.8%)
patch tree reduce : 2.19 us (0.2%)
gen split merge : 961.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 1022.00 ns (0.1%)
LB compute : 915.41 us (97.6%)
LB move op cnt : 0
LB apply : 4.02 us (0.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.30 us (70.3%)
Info: cfl dt = 0.0015220513070769324 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 6.2534e+05 | 262144 | 1 | 4.192e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.070235275502432 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.6793081516737893, dt = 0.0015220513070769324
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 2.04 us (0.5%)
gen split merge : 962.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.3%)
LB compute : 362.67 us (94.4%)
LB move op cnt : 0
LB apply : 3.74 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.88 us (75.0%)
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 | 6.2754e+05 | 262144 | 1 | 4.177e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.116889196723704 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.680830202980866, dt = 0.0015218822829526104
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.6%)
patch tree reduce : 1974.00 ns (0.5%)
gen split merge : 1242.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.2%)
LB compute : 391.92 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.71 us (71.5%)
Info: cfl dt = 0.0015216828730204412 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 6.2943e+05 | 262144 | 1 | 4.165e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.15503767972393 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.682352085263819, dt = 0.0015216828730204412
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (0.7%)
patch tree reduce : 1834.00 ns (0.2%)
gen split merge : 932.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 871.00 ns (0.1%)
LB compute : 949.03 us (97.9%)
LB move op cnt : 0
LB apply : 3.83 us (0.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.42 us (73.3%)
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 | 6.2640e+05 | 262144 | 1 | 4.185e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.089994088737251 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.683873768136839, dt = 0.0015214871711774092
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (1.6%)
patch tree reduce : 2.08 us (0.5%)
gen split merge : 941.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.2%)
LB compute : 429.75 us (95.1%)
LB move op cnt : 0
LB apply : 4.16 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.96 us (74.1%)
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 | 6.2352e+05 | 262144 | 1 | 4.204e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.028042414488743 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.6853952553080167, dt = 0.0015212952824021552
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.7%)
patch tree reduce : 1903.00 ns (0.5%)
gen split merge : 1292.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.2%)
LB compute : 367.93 us (90.6%)
LB move op cnt : 0
LB apply : 20.50 us (5.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.90 us (73.2%)
Info: cfl dt = 0.0015211072425463845 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 6.2819e+05 | 262144 | 1 | 4.173e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.124125786216357 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.6869165505904187, dt = 0.0015211072425463845
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.22 us (1.8%)
patch tree reduce : 2.05 us (0.5%)
gen split merge : 972.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1022.00 ns (0.2%)
LB compute : 387.42 us (94.6%)
LB move op cnt : 0
LB apply : 3.79 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.67 us (71.9%)
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 | 6.2483e+05 | 262144 | 1 | 4.195e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.052272740915681 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.688437657832965, dt = 0.0015209230906906208
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1914.00 ns (0.5%)
gen split merge : 1292.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 952.00 ns (0.2%)
LB compute : 379.04 us (94.7%)
LB move op cnt : 0
LB apply : 3.93 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.81 us (73.2%)
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 | 6.2687e+05 | 262144 | 1 | 4.182e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.093171768632068 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.6899585809236557, dt = 0.0015207427383924386
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.5%)
patch tree reduce : 2.18 us (0.5%)
gen split merge : 1112.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 952.00 ns (0.2%)
LB compute : 414.33 us (95.2%)
LB move op cnt : 0
LB apply : 3.64 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.71 us (72.8%)
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 | 6.3328e+05 | 262144 | 1 | 4.139e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.225575900611384 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.691479323662048, dt = 0.0015205660194272331
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 2.04 us (0.5%)
gen split merge : 962.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 921.00 ns (0.2%)
LB compute : 354.96 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.75 us (72.4%)
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 | 6.2665e+05 | 262144 | 1 | 4.183e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.08566570576781 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.692999889681475, dt = 0.0015203927357172946
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.4%)
patch tree reduce : 1643.00 ns (0.3%)
gen split merge : 1242.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1253.00 ns (0.3%)
LB compute : 462.98 us (95.6%)
LB move op cnt : 0
LB apply : 3.70 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.67 us (73.9%)
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.2601e+05 | 262144 | 1 | 4.188e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.070728732243392 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.6945202824171925, dt = 0.0015202226929284849
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (0.5%)
patch tree reduce : 1653.00 ns (0.1%)
gen split merge : 932.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 892.00 ns (0.1%)
LB compute : 1268.87 us (98.4%)
LB move op cnt : 0
LB apply : 3.80 us (0.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.77 us (73.9%)
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 | 6.2473e+05 | 262144 | 1 | 4.196e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.042520054846499 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.696040505110121, dt = 0.001520055731103431
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.25 us (1.7%)
patch tree reduce : 2.11 us (0.5%)
gen split merge : 992.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.2%)
LB compute : 408.89 us (95.0%)
LB move op cnt : 0
LB apply : 3.94 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.24 us (74.4%)
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 | 6.3403e+05 | 262144 | 1 | 4.135e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.235192765733649 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.6975605608412243, dt = 0.0015198917416670134
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1873.00 ns (0.3%)
gen split merge : 962.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 882.00 ns (0.1%)
LB compute : 690.65 us (97.1%)
LB move op cnt : 0
LB apply : 3.74 us (0.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.94 us (74.0%)
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 | 6.1522e+05 | 262144 | 1 | 4.261e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12.841153355986975 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.6990804525828915, dt = 0.001519730645435698
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.5%)
patch tree reduce : 1974.00 ns (0.5%)
gen split merge : 962.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.2%)
LB compute : 406.99 us (95.2%)
LB move op cnt : 0
LB apply : 3.37 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.71 us (71.9%)
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 | 6.3194e+05 | 262144 | 1 | 4.148e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.188741310939715 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.7006001832283273, dt = 0.0015195724187671324
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1663.00 ns (0.4%)
gen split merge : 1202.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 881.00 ns (0.2%)
LB compute : 370.47 us (94.7%)
LB move op cnt : 0
LB apply : 3.79 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.44 us (72.0%)
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 | 6.2303e+05 | 262144 | 1 | 4.208e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.001389255089615 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.7021197556470944, dt = 0.0015194170813446967
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1733.00 ns (0.4%)
gen split merge : 961.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 991.00 ns (0.3%)
LB compute : 374.69 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.10 us (75.4%)
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 | 6.3273e+05 | 262144 | 1 | 4.143e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.202612244073785 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.703639172728439, dt = 0.0015192646876158293
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.2%)
patch tree reduce : 1733.00 ns (0.3%)
gen split merge : 1132.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.2%)
LB compute : 563.72 us (96.4%)
LB move op cnt : 0
LB apply : 3.43 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 19.85 us (94.3%)
Info: cfl dt = 0.0015191153009374756 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 6.2198e+05 | 262144 | 1 | 4.215e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12.976919730890963 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.705158437416055, dt = 0.0015191153009374756
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.5%)
patch tree reduce : 1753.00 ns (0.4%)
gen split merge : 1062.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 871.00 ns (0.2%)
LB compute : 416.76 us (95.3%)
LB move op cnt : 0
LB apply : 3.71 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.40 us (71.9%)
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 | 6.2481e+05 | 262144 | 1 | 4.196e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.034729474526767 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.706677552716992, dt = 0.0015189689424582535
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 19.70 us (4.9%)
gen split merge : 1052.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.2%)
LB compute : 360.01 us (90.2%)
LB move op cnt : 0
LB apply : 3.94 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.67 us (72.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 | 6.2587e+05 | 262144 | 1 | 4.188e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.0555260767613 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.7081965216594504, dt = 0.0015188256124191658
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.39 us (0.3%)
patch tree reduce : 1813.00 ns (0.1%)
gen split merge : 962.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 912.00 ns (0.0%)
LB compute : 2.42 ms (99.1%)
LB move op cnt : 0
LB apply : 3.83 us (0.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.77 us (74.4%)
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 | 6.2409e+05 | 262144 | 1 | 4.200e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.017263619312248 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.7097153472718696, dt = 0.001518685341372921
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1773.00 ns (0.4%)
gen split merge : 942.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 961.00 ns (0.2%)
LB compute : 394.28 us (91.3%)
LB move op cnt : 0
LB apply : 20.94 us (4.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.73 us (73.2%)
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 | 6.2272e+05 | 262144 | 1 | 4.210e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12.987475703816852 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.7112340326132425, dt = 0.0015185482927300635
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.5%)
patch tree reduce : 1663.00 ns (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 : 419.21 us (95.3%)
LB move op cnt : 0
LB apply : 3.63 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.04 us (75.8%)
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 | 6.3283e+05 | 262144 | 1 | 4.142e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.196991260447549 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.7127525809059727, dt = 0.0015184146985223012
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (0.1%)
patch tree reduce : 2.04 us (0.0%)
gen split merge : 962.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 1002.00 ns (0.0%)
LB compute : 6.01 ms (99.7%)
LB move op cnt : 0
LB apply : 3.80 us (0.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.65 us (73.2%)
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 | 6.1519e+05 | 262144 | 1 | 4.261e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12.828134690018269 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.714270995604495, dt = 0.0015182847574566453
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 2.09 us (0.5%)
gen split merge : 992.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 902.00 ns (0.2%)
LB compute : 372.71 us (94.6%)
LB move op cnt : 0
LB apply : 4.06 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.52 us (68.8%)
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.2681e+05 | 262144 | 1 | 4.182e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.06919554854965 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.7157892803619514, dt = 0.0015181586388005445
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1733.00 ns (0.5%)
gen split merge : 1002.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 872.00 ns (0.2%)
LB compute : 355.40 us (94.4%)
LB move op cnt : 0
LB apply : 3.86 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.31 us (75.0%)
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 | 6.1508e+05 | 262144 | 1 | 4.262e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12.823539754173503 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.717307439000752, dt = 0.0015180364524598566
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 2.02 us (0.5%)
gen split merge : 962.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 952.00 ns (0.2%)
LB compute : 377.38 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.33 us (71.3%)
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 | 6.2563e+05 | 262144 | 1 | 4.190e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.042596481603233 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.718825475453212, dt = 0.0015179182188294793
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.1%)
patch tree reduce : 2.01 us (0.4%)
gen split merge : 972.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 952.00 ns (0.2%)
LB compute : 552.75 us (96.3%)
LB move op cnt : 0
LB apply : 3.92 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.77 us (73.8%)
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 | 6.0257e+05 | 262144 | 1 | 4.350e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12.560800898065027 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.720343393672042, dt = 0.001517803934898775
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.6%)
patch tree reduce : 1854.00 ns (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 : 401.55 us (95.0%)
LB move op cnt : 0
LB apply : 3.69 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.85 us (74.2%)
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 | 6.2798e+05 | 262144 | 1 | 4.174e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.089524081360535 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.7218611976069407, dt = 0.0015176935434418695
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.7%)
patch tree reduce : 2.03 us (0.5%)
gen split merge : 1082.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 922.00 ns (0.2%)
LB compute : 382.57 us (94.7%)
LB move op cnt : 0
LB apply : 3.66 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.14 us (78.1%)
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 | 6.0975e+05 | 262144 | 1 | 4.299e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12.708518599461316 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.7233788911503827, dt = 0.001517586901105193
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.2%)
patch tree reduce : 1733.00 ns (0.4%)
gen split merge : 952.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 961.00 ns (0.2%)
LB compute : 469.42 us (95.9%)
LB move op cnt : 0
LB apply : 3.87 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.38 us (72.6%)
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 | 6.1157e+05 | 262144 | 1 | 4.286e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12.745691461628324 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.724896478051488, dt = 0.0015174838995752856
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (0.2%)
patch tree reduce : 1913.00 ns (0.1%)
gen split merge : 1172.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 1032.00 ns (0.0%)
LB compute : 3.23 ms (99.4%)
LB move op cnt : 0
LB apply : 3.82 us (0.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.83 us (72.9%)
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.1321e+05 | 262144 | 1 | 4.275e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12.778942923259956 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.7264139619510632, dt = 0.0015173844601152004
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (1.3%)
patch tree reduce : 2.01 us (0.4%)
gen split merge : 932.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 882.00 ns (0.2%)
LB compute : 546.31 us (96.1%)
LB move op cnt : 0
LB apply : 3.98 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.75 us (74.5%)
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 | 6.1934e+05 | 262144 | 1 | 4.233e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12.905928424524003 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.7279313464111783, dt = 0.0015172885253066906
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 2.16 us (0.5%)
gen split merge : 932.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 892.00 ns (0.2%)
LB compute : 382.14 us (94.9%)
LB move op cnt : 0
LB apply : 3.49 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.83 us (75.7%)
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 | 6.1910e+05 | 262144 | 1 | 4.234e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12.900156865864037 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.729448634936485, dt = 0.0015171960734796377
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 2.07 us (0.6%)
gen split merge : 972.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.3%)
LB compute : 345.56 us (94.5%)
LB move op cnt : 0
LB apply : 3.46 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.42 us (70.9%)
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 | 6.2511e+05 | 262144 | 1 | 4.194e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.024575772399496 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.7309658310099643, dt = 0.001517107295658014
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 2.04 us (0.5%)
gen split merge : 962.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 941.00 ns (0.2%)
LB compute : 368.70 us (94.8%)
LB move op cnt : 0
LB apply : 3.58 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.50 us (72.2%)
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 | 6.1778e+05 | 262144 | 1 | 4.243e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12.871023732753255 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.732482938305622, dt = 0.0015170224528540228
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.7%)
patch tree reduce : 1783.00 ns (0.4%)
gen split merge : 952.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1243.00 ns (0.3%)
LB compute : 382.10 us (94.8%)
LB move op cnt : 0
LB apply : 3.69 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.86 us (68.4%)
Info: cfl dt = 0.0015169416171948854 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 6.2262e+05 | 262144 | 1 | 4.210e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12.971184707075315 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.733999960758476, dt = 0.0015169416171948854
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (0.7%)
patch tree reduce : 1834.00 ns (0.2%)
gen split merge : 1232.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 1022.00 ns (0.1%)
LB compute : 1008.60 us (97.9%)
LB move op cnt : 0
LB apply : 3.57 us (0.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.96 us (71.8%)
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 | 6.0457e+05 | 262144 | 1 | 4.336e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12.5945174561158 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.735516902375671, dt = 0.0015168647812692866
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (0.6%)
patch tree reduce : 1984.00 ns (0.2%)
gen split merge : 931.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.1%)
LB compute : 1075.59 us (98.1%)
LB move op cnt : 0
LB apply : 3.67 us (0.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.47 us (74.1%)
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 | 6.2106e+05 | 262144 | 1 | 4.221e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12.937338470248683 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.7370337671569405, dt = 0.0015167919479624732
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.6%)
patch tree reduce : 1863.00 ns (0.4%)
gen split merge : 912.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 882.00 ns (0.2%)
LB compute : 419.80 us (95.3%)
LB move op cnt : 0
LB apply : 3.86 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.83 us (74.6%)
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 | 6.1126e+05 | 262144 | 1 | 4.289e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12.732488423264682 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.738550559104903, dt = 0.0015167231894657924
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 2.05 us (0.5%)
gen split merge : 922.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 882.00 ns (0.2%)
LB compute : 378.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.73 us (69.3%)
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 | 6.1285e+05 | 262144 | 1 | 4.277e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12.764970710736694 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.7400672822943686, dt = 0.0015166586748958596
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.4%)
patch tree reduce : 1884.00 ns (0.4%)
gen split merge : 942.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.2%)
LB compute : 449.21 us (95.6%)
LB move op cnt : 0
LB apply : 3.60 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.87 us (73.7%)
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 | 6.2436e+05 | 262144 | 1 | 4.199e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.004285922323286 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.7415839409692646, dt = 0.0015165986996247278
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (0.5%)
patch tree reduce : 1883.00 ns (0.1%)
gen split merge : 1022.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.1%)
LB compute : 1307.10 us (98.4%)
LB move op cnt : 0
LB apply : 4.03 us (0.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.81 us (74.9%)
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 | 6.2151e+05 | 262144 | 1 | 4.218e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12.944411566125822 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.7431005396688892, dt = 0.0015165437461643627
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.1%)
patch tree reduce : 1673.00 ns (0.3%)
gen split merge : 952.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1022.00 ns (0.2%)
LB compute : 600.87 us (96.6%)
LB move op cnt : 0
LB apply : 4.42 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.61 us (71.9%)
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 | 6.1872e+05 | 262144 | 1 | 4.237e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12.885776389583778 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.7446170834150534, dt = 0.0015164942672715618
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1823.00 ns (0.5%)
gen split merge : 962.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 912.00 ns (0.2%)
LB compute : 373.25 us (94.7%)
LB move op cnt : 0
LB apply : 4.11 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.81 us (72.3%)
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 | 6.2514e+05 | 262144 | 1 | 4.193e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.019145112725091 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.746133577682325, dt = 0.001516450595324313
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.6%)
patch tree reduce : 1773.00 ns (0.4%)
gen split merge : 972.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 942.00 ns (0.2%)
LB compute : 422.77 us (95.1%)
LB move op cnt : 0
LB apply : 3.93 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.09 us (77.2%)
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 | 6.0547e+05 | 262144 | 1 | 4.330e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12.609002441930011 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.7476500282776493, dt = 0.0015164129746310182
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (0.2%)
patch tree reduce : 2.23 us (0.1%)
gen split merge : 1032.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 872.00 ns (0.0%)
LB compute : 4.06 ms (99.0%)
LB move op cnt : 0
LB apply : 4.42 us (0.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.26 us (78.1%)
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 | 6.1158e+05 | 262144 | 1 | 4.286e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12.735942853847108 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.7491664412522803, dt = 0.0015163815239267013
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.05 us (1.7%)
patch tree reduce : 1934.00 ns (0.5%)
gen split merge : 962.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.2%)
LB compute : 384.84 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.02 us (75.6%)
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 | 6.2692e+05 | 262144 | 1 | 4.181e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.05521002705487 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.750682822776207, dt = 0.0015163562176670798
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1754.00 ns (0.4%)
gen split merge : 922.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 872.00 ns (0.2%)
LB compute : 377.59 us (95.1%)
LB move op cnt : 0
LB apply : 3.47 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.09 us (70.2%)
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 | 6.3638e+05 | 262144 | 1 | 4.119e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.251871908752483 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.752199178993874, dt = 0.0015163369294719964
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.5%)
patch tree reduce : 1683.00 ns (0.4%)
gen split merge : 942.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.2%)
LB compute : 430.87 us (95.4%)
LB move op cnt : 0
LB apply : 4.13 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.01 us (76.9%)
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 | 6.1884e+05 | 262144 | 1 | 4.236e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12.886504107771623 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.753715515923346, dt = 0.0015163234734648816
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.5%)
patch tree reduce : 1713.00 ns (0.4%)
gen split merge : 1212.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1032.00 ns (0.2%)
LB compute : 424.06 us (95.2%)
LB move op cnt : 0
LB apply : 4.48 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.91 us (75.9%)
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 | 6.3447e+05 | 262144 | 1 | 4.132e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.211835797667433 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.755231839396811, dt = 0.0015163158747084737
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1733.00 ns (0.5%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 882.00 ns (0.2%)
LB compute : 359.20 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.62 us (72.7%)
Info: cfl dt = 0.001516313546854961 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 6.0729e+05 | 262144 | 1 | 4.317e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12.645930410823432 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.7567481552715196, dt = 0.001516313546854961
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1553.00 ns (0.4%)
gen split merge : 1322.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1183.00 ns (0.3%)
LB compute : 376.81 us (94.6%)
LB move op cnt : 0
LB apply : 3.89 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.65 us (78.1%)
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 | 6.3288e+05 | 262144 | 1 | 4.142e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.178681802021874 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.7582644688183744, dt = 0.001516316003748054
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (1.7%)
patch tree reduce : 1864.00 ns (0.5%)
gen split merge : 962.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.2%)
LB compute : 385.00 us (94.6%)
LB move op cnt : 0
LB apply : 4.07 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.69 us (73.3%)
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 | 6.2336e+05 | 262144 | 1 | 4.205e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12.980495551687314 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.7597807848221225, dt = 0.0015162903063132634
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1593.00 ns (0.4%)
gen split merge : 942.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 921.00 ns (0.2%)
LB compute : 381.39 us (94.7%)
LB move op cnt : 0
LB apply : 4.55 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.79 us (74.0%)
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 | 6.1946e+05 | 262144 | 1 | 4.232e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12.89911677587108 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.761297075128436, dt = 0.0015162647996006403
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.6%)
patch tree reduce : 2.17 us (0.5%)
gen split merge : 932.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 881.00 ns (0.2%)
LB compute : 394.93 us (95.0%)
LB move op cnt : 0
LB apply : 3.84 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.06 us (71.4%)
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 | 6.2939e+05 | 262144 | 1 | 4.165e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.105550513119264 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.7628133399280363, dt = 0.0015162427419989411
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (1.7%)
patch tree reduce : 1783.00 ns (0.4%)
gen split merge : 1062.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 881.00 ns (0.2%)
LB compute : 400.13 us (94.9%)
LB move op cnt : 0
LB apply : 4.39 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.58 us (71.8%)
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 | 6.2429e+05 | 262144 | 1 | 4.199e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12.999185759580406 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.7643295826700354, dt = 0.001516220003079443
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1703.00 ns (0.4%)
gen split merge : 1282.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 922.00 ns (0.2%)
LB compute : 406.65 us (95.2%)
LB move op cnt : 0
LB apply : 3.70 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.37 us (76.5%)
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 | 6.3360e+05 | 262144 | 1 | 4.137e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.19281969896499 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.7658458026731148, dt = 0.001516143584971755
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (0.5%)
patch tree reduce : 1744.00 ns (0.1%)
gen split merge : 931.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 973.00 ns (0.1%)
LB compute : 1419.50 us (98.5%)
LB move op cnt : 0
LB apply : 3.98 us (0.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.38 us (76.4%)
Info: cfl dt = 0.0015160710512218732 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 6.2378e+05 | 262144 | 1 | 4.203e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12.987721181438797 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.7673619462580863, dt = 0.0015160710512218732
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (0.4%)
patch tree reduce : 1703.00 ns (0.1%)
gen split merge : 952.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 882.00 ns (0.1%)
LB compute : 1634.16 us (98.8%)
LB move op cnt : 0
LB apply : 3.93 us (0.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.98 us (72.8%)
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 | 6.1634e+05 | 262144 | 1 | 4.253e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12.832243351616661 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.768878017309308, dt = 0.0015160025130583185
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.4%)
patch tree reduce : 1743.00 ns (0.4%)
gen split merge : 962.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 872.00 ns (0.2%)
LB compute : 406.86 us (95.3%)
LB move op cnt : 0
LB apply : 4.13 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.48 us (72.9%)
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 | 6.3482e+05 | 262144 | 1 | 4.129e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.216420114083181 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.7703940198223664, dt = 0.0015159376219887508
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (0.1%)
patch tree reduce : 1803.00 ns (0.0%)
gen split merge : 1233.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 881.00 ns (0.0%)
LB compute : 5.91 ms (99.6%)
LB move op cnt : 0
LB apply : 3.86 us (0.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.05 us (76.4%)
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 | 6.0954e+05 | 262144 | 1 | 4.301e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12.689537570697572 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.7719099574443553, dt = 0.0015158760882831095
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.4%)
patch tree reduce : 1923.00 ns (0.4%)
gen split merge : 922.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 952.00 ns (0.2%)
LB compute : 479.82 us (95.5%)
LB move op cnt : 0
LB apply : 4.57 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.51 us (78.3%)
Info: cfl dt = 0.0015158177607736908 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 6.3174e+05 | 262144 | 1 | 4.150e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.151252413291449 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.7734258335326385, dt = 0.0015158177607736908
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (1.9%)
patch tree reduce : 1863.00 ns (0.5%)
gen split merge : 922.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 872.00 ns (0.2%)
LB compute : 358.91 us (94.4%)
LB move op cnt : 0
LB apply : 4.01 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.57 us (79.5%)
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.3256e+05 | 262144 | 1 | 4.144e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.167688223740086 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.774941651293412, dt = 0.001515762492856966
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.5%)
patch tree reduce : 1684.00 ns (0.4%)
gen split merge : 1293.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 942.00 ns (0.2%)
LB compute : 413.90 us (95.2%)
LB move op cnt : 0
LB apply : 3.83 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.46 us (73.0%)
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 | 6.3342e+05 | 262144 | 1 | 4.139e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.185138755485431 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.776457413786269, dt = 0.001515710174146698
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.2%)
patch tree reduce : 1834.00 ns (0.1%)
gen split merge : 922.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 1232.00 ns (0.0%)
LB compute : 3.61 ms (99.4%)
LB move op cnt : 0
LB apply : 4.86 us (0.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.37 us (78.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 | 6.2223e+05 | 262144 | 1 | 4.213e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12.951852152314775 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.7779731239604155, dt = 0.0001518760395846641
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.5%)
patch tree reduce : 1954.00 ns (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 : 422.80 us (95.1%)
LB move op cnt : 0
LB apply : 4.69 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.96 us (73.7%)
Info: cfl dt = 0.001515654798420528 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 6.2587e+05 | 262144 | 1 | 4.188e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.3053727106639115 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 770.5261719690001 (s) [Godunov][rank=0]
Info: dump to _to_trash/ramses_kh/periodic_0022.vtk [VTK Dump][rank=0]
- took 57.30 ms, bandwidth = 680.64 MB/s
amr::Godunov: t = 2.778125, dt = 0.001515654798420528
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.27 us (1.1%)
patch tree reduce : 1693.00 ns (0.3%)
gen split merge : 1132.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.1%)
LB compute : 626.93 us (96.7%)
LB move op cnt : 0
LB apply : 4.24 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.00 us (72.4%)
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 | 6.2113e+05 | 262144 | 1 | 4.220e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12.928502999592803 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.7796406547984205, dt = 0.001515612485924598
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (0.1%)
patch tree reduce : 1834.00 ns (0.0%)
gen split merge : 961.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.0%)
LB compute : 5.51 ms (99.6%)
LB move op cnt : 0
LB apply : 4.19 us (0.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.52 us (71.2%)
Info: cfl dt = 0.0015155710893806562 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 6.1822e+05 | 262144 | 1 | 4.240e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12.867576028778368 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.781156267284345, dt = 0.0015155710893806562
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1713.00 ns (0.4%)
gen split merge : 952.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 882.00 ns (0.2%)
LB compute : 411.62 us (95.2%)
LB move op cnt : 0
LB apply : 3.93 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.71 us (78.4%)
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 | 6.2538e+05 | 262144 | 1 | 4.192e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.016090317749715 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.7826718383737257, dt = 0.0015155316666558966
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.2%)
patch tree reduce : 2.04 us (0.3%)
gen split merge : 1253.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 882.00 ns (0.1%)
LB compute : 615.74 us (96.6%)
LB move op cnt : 0
LB apply : 3.61 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.85 us (73.8%)
Info: cfl dt = 0.0015154954372760033 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 6.1183e+05 | 262144 | 1 | 4.285e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12.733791166307595 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.7841873700403816, dt = 0.0015154954372760033
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (0.2%)
patch tree reduce : 2.17 us (0.1%)
gen split merge : 982.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 872.00 ns (0.0%)
LB compute : 3.90 ms (99.5%)
LB move op cnt : 0
LB apply : 4.20 us (0.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.05 us (76.2%)
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 | 6.1394e+05 | 262144 | 1 | 4.270e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12.777497663730898 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.7857028654776577, dt = 0.0015154634694379218
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1893.00 ns (0.5%)
gen split merge : 932.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 931.00 ns (0.2%)
LB compute : 376.74 us (94.7%)
LB move op cnt : 0
LB apply : 3.75 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.85 us (72.1%)
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 | 6.2955e+05 | 262144 | 1 | 4.164e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.102010636449597 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.7872183289470955, dt = 0.0015154364686595725
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (0.8%)
patch tree reduce : 1783.00 ns (0.2%)
gen split merge : 1182.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 922.00 ns (0.1%)
LB compute : 859.65 us (97.6%)
LB move op cnt : 0
LB apply : 3.79 us (0.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.32 us (74.9%)
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 | 6.1227e+05 | 262144 | 1 | 4.282e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12.742076971052649 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.788733765415755, dt = 0.0015154172553927796
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.6%)
patch tree reduce : 1994.00 ns (0.5%)
gen split merge : 1262.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 872.00 ns (0.2%)
LB compute : 410.33 us (95.2%)
LB move op cnt : 0
LB apply : 3.87 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.37 us (74.5%)
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 | 6.2287e+05 | 262144 | 1 | 4.209e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12.962570242886315 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.7902491826711477, dt = 0.001515406187162554
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.4%)
patch tree reduce : 1794.00 ns (0.4%)
gen split merge : 961.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 951.00 ns (0.2%)
LB compute : 446.23 us (95.5%)
LB move op cnt : 0
LB apply : 4.23 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.47 us (77.1%)
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 | 6.1066e+05 | 262144 | 1 | 4.293e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12.708338196670203 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.7917645888583102, dt = 0.0015154020704280897
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1823.00 ns (0.4%)
gen split merge : 1262.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1002.00 ns (0.2%)
LB compute : 405.91 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.79 us (73.0%)
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 | 6.1674e+05 | 262144 | 1 | 4.250e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12.834860189503841 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.7932799909287382, dt = 0.0015154044362668028
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.4%)
patch tree reduce : 1814.00 ns (0.4%)
gen split merge : 962.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1042.00 ns (0.2%)
LB compute : 460.89 us (95.6%)
LB move op cnt : 0
LB apply : 4.11 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.09 us (73.4%)
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 | 6.1258e+05 | 262144 | 1 | 4.279e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12.748279140321953 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.794795395365005, dt = 0.0015154131569589267
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.6%)
patch tree reduce : 2.02 us (0.5%)
gen split merge : 1232.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.2%)
LB compute : 418.21 us (95.1%)
LB move op cnt : 0
LB apply : 3.63 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.83 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 | 6.2332e+05 | 262144 | 1 | 4.206e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12.971992441763621 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.7963108085219637, dt = 0.0015154282829658314
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (0.4%)
patch tree reduce : 1634.00 ns (0.1%)
gen split merge : 921.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 871.00 ns (0.0%)
LB compute : 1965.71 us (99.0%)
LB move op cnt : 0
LB apply : 3.72 us (0.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.98 us (72.6%)
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 | 6.1702e+05 | 262144 | 1 | 4.249e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12.840907973247347 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.7978262368049296, dt = 0.0015154498256837413
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (0.2%)
patch tree reduce : 1813.00 ns (0.0%)
gen split merge : 962.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 862.00 ns (0.0%)
LB compute : 4.01 ms (99.5%)
LB move op cnt : 0
LB apply : 3.66 us (0.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.13 us (76.8%)
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 | 6.1255e+05 | 262144 | 1 | 4.280e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12.748162533451291 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.7993416866306133, dt = 0.0015154776859089049
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1934.00 ns (0.5%)
gen split merge : 932.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 952.00 ns (0.3%)
LB compute : 345.12 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.66 us (75.9%)
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 | 6.3430e+05 | 262144 | 1 | 4.133e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.20105644189743 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.8008571643165223, dt = 0.0015155117294608509
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1744.00 ns (0.5%)
gen split merge : 981.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.3%)
LB compute : 348.86 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.60 us (69.6%)
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 | 6.2796e+05 | 262144 | 1 | 4.175e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.069358041970396 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.8023726760459833, dt = 0.0015155517915075266
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 2.07 us (0.5%)
gen split merge : 1062.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 872.00 ns (0.2%)
LB compute : 356.77 us (90.7%)
LB move op cnt : 0
LB apply : 3.65 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.01 us (75.8%)
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 | 6.2925e+05 | 262144 | 1 | 4.166e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.096494034940445 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.803888227837491, dt = 0.0015155976892007844
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (0.2%)
patch tree reduce : 2.25 us (0.1%)
gen split merge : 962.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 892.00 ns (0.0%)
LB compute : 3.35 ms (99.4%)
LB move op cnt : 0
LB apply : 4.28 us (0.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.57 us (77.7%)
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 | 6.1946e+05 | 262144 | 1 | 4.232e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12.893149960193206 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.8054038255266915, dt = 0.0015156492588003058
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (0.1%)
patch tree reduce : 1954.00 ns (0.0%)
gen split merge : 951.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 932.00 ns (0.0%)
LB compute : 4.92 ms (99.6%)
LB move op cnt : 0
LB apply : 3.89 us (0.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.22 us (74.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.1835e+05 | 262144 | 1 | 4.239e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12.870540089110102 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.806919474785492, dt = 0.0015157064004577725
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (0.1%)
patch tree reduce : 2.16 us (0.0%)
gen split merge : 932.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 952.00 ns (0.0%)
LB compute : 6.12 ms (99.7%)
LB move op cnt : 0
LB apply : 3.94 us (0.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.50 us (75.0%)
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 | 6.2184e+05 | 262144 | 1 | 4.216e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12.943728651981088 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.8084351811859496, dt = 0.0015157690833342307
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (0.1%)
patch tree reduce : 1994.00 ns (0.0%)
gen split merge : 1252.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 952.00 ns (0.0%)
LB compute : 5.99 ms (99.6%)
LB move op cnt : 0
LB apply : 3.95 us (0.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.92 us (73.9%)
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 | 6.2208e+05 | 262144 | 1 | 4.214e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12.949169784217654 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.809950950269284, dt = 0.0015158373365686067
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (0.1%)
patch tree reduce : 2.06 us (0.0%)
gen split merge : 1133.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 952.00 ns (0.0%)
LB compute : 6.10 ms (99.7%)
LB move op cnt : 0
LB apply : 3.89 us (0.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.18 us (43.1%)
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 | 6.1652e+05 | 262144 | 1 | 4.252e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12.83400159683294 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.8114667876058523, dt = 0.0015159112432552087
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (0.1%)
patch tree reduce : 1803.00 ns (0.0%)
gen split merge : 932.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 911.00 ns (0.0%)
LB compute : 4.75 ms (99.6%)
LB move op cnt : 0
LB apply : 3.84 us (0.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.44 us (77.2%)
Info: cfl dt = 0.0015159909236507922 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 6.2641e+05 | 262144 | 1 | 4.185e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.040555924471706 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.8129826988491073, dt = 0.0015159909236507922
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (0.1%)
patch tree reduce : 1834.00 ns (0.0%)
gen split merge : 932.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 892.00 ns (0.0%)
LB compute : 6.10 ms (99.7%)
LB move op cnt : 0
LB apply : 3.68 us (0.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.11 us (74.0%)
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 | 6.2087e+05 | 262144 | 1 | 4.222e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12.925786803347414 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.814498689772758, dt = 0.001516076527068507
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (0.1%)
patch tree reduce : 1883.00 ns (0.0%)
gen split merge : 1333.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 902.00 ns (0.0%)
LB compute : 4.92 ms (99.6%)
LB move op cnt : 0
LB apply : 3.84 us (0.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.73 us (73.0%)
Info: cfl dt = 0.0015161682837895984 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 6.1933e+05 | 262144 | 1 | 4.233e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12.894614711703763 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.8160147662998263, dt = 0.0015161682837895984
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.58 us (0.1%)
patch tree reduce : 1774.00 ns (0.0%)
gen split merge : 951.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 981.00 ns (0.0%)
LB compute : 6.11 ms (99.7%)
LB move op cnt : 0
LB apply : 3.78 us (0.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.13 us (75.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 | 6.2377e+05 | 262144 | 1 | 4.203e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12.987689972674684 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.817530934583616, dt = 0.0015162665352822283
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (0.1%)
patch tree reduce : 1754.00 ns (0.0%)
gen split merge : 951.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 922.00 ns (0.0%)
LB compute : 5.58 ms (99.6%)
LB move op cnt : 0
LB apply : 3.82 us (0.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.33 us (76.7%)
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 | 6.2268e+05 | 262144 | 1 | 4.210e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12.965862694120782 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.8190472011188983, dt = 0.001516371329525838
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (0.1%)
patch tree reduce : 2.10 us (0.0%)
gen split merge : 922.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 882.00 ns (0.0%)
LB compute : 5.40 ms (99.6%)
LB move op cnt : 0
LB apply : 4.02 us (0.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.21 us (76.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.0153e+05 | 262144 | 1 | 4.358e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12.526458373933922 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.820563572448424, dt = 0.0015164827831204094
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1763.00 ns (0.5%)
gen split merge : 1192.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 921.00 ns (0.2%)
LB compute : 360.04 us (94.5%)
LB move op cnt : 0
LB apply : 3.85 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.62 us (73.4%)
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 | 6.2560e+05 | 262144 | 1 | 4.190e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.028516688881883 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.8220800552315444, dt = 0.001516600703901376
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1733.00 ns (0.4%)
gen split merge : 1222.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1133.00 ns (0.3%)
LB compute : 403.54 us (95.0%)
LB move op cnt : 0
LB apply : 4.43 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.92 us (73.0%)
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 | 6.2903e+05 | 262144 | 1 | 4.167e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.101108188025055 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.8235966559354457, dt = 0.0015165923007979926
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.8%)
patch tree reduce : 1803.00 ns (0.5%)
gen split merge : 972.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 862.00 ns (0.2%)
LB compute : 365.57 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.82 us (74.4%)
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 | 6.1590e+05 | 262144 | 1 | 4.256e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12.827550067249904 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.8251132482362435, dt = 0.0015164531113504764
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1844.00 ns (0.5%)
gen split merge : 951.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1112.00 ns (0.3%)
LB compute : 386.23 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.00 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 | 6.1854e+05 | 262144 | 1 | 4.238e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12.881393498460806 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.826629701347594, dt = 0.0015163162704450856
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (0.3%)
patch tree reduce : 1803.00 ns (0.1%)
gen split merge : 952.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 882.00 ns (0.0%)
LB compute : 2.44 ms (99.2%)
LB move op cnt : 0
LB apply : 3.61 us (0.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.32 us (76.8%)
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 | 6.0306e+05 | 262144 | 1 | 4.347e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12.55786969737176 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.828146017618039, dt = 0.0015161815822398016
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.1%)
patch tree reduce : 1874.00 ns (0.3%)
gen split merge : 1062.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 872.00 ns (0.1%)
LB compute : 591.51 us (96.6%)
LB move op cnt : 0
LB apply : 3.89 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.79 us (73.6%)
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 | 6.2466e+05 | 262144 | 1 | 4.197e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.006503068563482 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.829662199200279, dt = 0.0015160489409107366
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1793.00 ns (0.4%)
gen split merge : 982.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1142.00 ns (0.3%)
LB compute : 394.79 us (94.9%)
LB move op cnt : 0
LB apply : 4.07 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.87 us (74.3%)
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 | 6.3441e+05 | 262144 | 1 | 4.132e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.208205663164135 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.83117824814119, dt = 0.0015159183217066012
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 2.00 us (0.6%)
gen split merge : 951.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 892.00 ns (0.2%)
LB compute : 337.90 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.98 us (72.1%)
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 | 6.3359e+05 | 262144 | 1 | 4.137e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.190096285624948 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.8326941664628964, dt = 0.0015157897719186757
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (0.2%)
patch tree reduce : 1753.00 ns (0.1%)
gen split merge : 941.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 932.00 ns (0.0%)
LB compute : 3.23 ms (99.4%)
LB move op cnt : 0
LB apply : 3.80 us (0.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.39 us (75.8%)
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 | 6.2674e+05 | 262144 | 1 | 4.183e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.04627956502562 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.834209956234815, dt = 0.0015156634206127252
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 2.02 us (0.5%)
gen split merge : 1011.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.2%)
LB compute : 369.65 us (94.6%)
LB move op cnt : 0
LB apply : 3.68 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.48 us (71.9%)
Info: cfl dt = 0.0015155395593065399 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 6.1705e+05 | 262144 | 1 | 4.248e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12.843467699467086 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.8357256196554275, dt = 0.0015155395593065399
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.2%)
patch tree reduce : 1823.00 ns (0.3%)
gen split merge : 972.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 991.00 ns (0.2%)
LB compute : 546.28 us (96.4%)
LB move op cnt : 0
LB apply : 3.67 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.10 us (75.6%)
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 | 6.2455e+05 | 262144 | 1 | 4.197e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12.998668038214248 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.837241159214734, dt = 0.0015154185088834657
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 2.13 us (0.6%)
gen split merge : 1282.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.3%)
LB compute : 359.18 us (94.5%)
LB move op cnt : 0
LB apply : 3.62 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.39 us (74.3%)
Info: cfl dt = 0.00151530060909324 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 6.2406e+05 | 262144 | 1 | 4.201e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12.987316640744341 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.8387565777236174, dt = 0.00151530060909324
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (0.1%)
patch tree reduce : 1923.00 ns (0.0%)
gen split merge : 1143.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.0%)
LB compute : 5.62 ms (99.6%)
LB move op cnt : 0
LB apply : 4.25 us (0.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.37 us (77.6%)
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 | 6.1229e+05 | 262144 | 1 | 4.281e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12.741407656365055 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.8402718783327106, dt = 0.0015151861934185747
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.1%)
patch tree reduce : 2.14 us (0.3%)
gen split merge : 1042.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 891.00 ns (0.1%)
LB compute : 613.41 us (96.7%)
LB move op cnt : 0
LB apply : 4.17 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.52 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 | 6.2743e+05 | 262144 | 1 | 4.178e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.055575564746755 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.841787064526129, dt = 0.001515075582154235
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (0.5%)
patch tree reduce : 2.11 us (0.2%)
gen split merge : 992.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.1%)
LB compute : 1313.00 us (98.3%)
LB move op cnt : 0
LB apply : 4.90 us (0.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.16 us (77.1%)
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.2811e+05 | 262144 | 1 | 4.174e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.068686362186224 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.843302140108283, dt = 0.0015149690623992111
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.2%)
patch tree reduce : 1993.00 ns (0.3%)
gen split merge : 961.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1212.00 ns (0.2%)
LB compute : 555.08 us (96.3%)
LB move op cnt : 0
LB apply : 3.49 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.39 us (74.6%)
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 | 6.3042e+05 | 262144 | 1 | 4.158e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.115787210454782 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.844817109170682, dt = 0.0015148668466845676
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1743.00 ns (0.5%)
gen split merge : 1202.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1172.00 ns (0.3%)
LB compute : 355.37 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.41 us (74.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 | 6.3263e+05 | 262144 | 1 | 4.144e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.160860409281451 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.8463319760173666, dt = 0.0015147690522014081
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (0.2%)
patch tree reduce : 1954.00 ns (0.1%)
gen split merge : 982.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.0%)
LB compute : 3.28 ms (99.4%)
LB move op cnt : 0
LB apply : 3.92 us (0.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.73 us (73.5%)
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 | 6.2175e+05 | 262144 | 1 | 4.216e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12.933717123554505 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.847846745069568, dt = 0.0015146756999455584
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (0.4%)
patch tree reduce : 1824.00 ns (0.1%)
gen split merge : 982.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.1%)
LB compute : 1823.50 us (98.8%)
LB move op cnt : 0
LB apply : 4.28 us (0.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.98 us (73.7%)
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 | 6.2515e+05 | 262144 | 1 | 4.193e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.00365474924479 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.8493614207695135, dt = 0.0015145867305857757
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (0.6%)
patch tree reduce : 1873.00 ns (0.2%)
gen split merge : 962.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 882.00 ns (0.1%)
LB compute : 966.00 us (97.9%)
LB move op cnt : 0
LB apply : 3.78 us (0.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.19 us (74.3%)
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 | 6.2788e+05 | 262144 | 1 | 4.175e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.05975234695389 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.850876007500099, dt = 0.0015145020634624315
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (0.2%)
patch tree reduce : 1954.00 ns (0.1%)
gen split merge : 952.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 842.00 ns (0.0%)
LB compute : 3.38 ms (99.4%)
LB move op cnt : 0
LB apply : 3.83 us (0.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.77 us (74.6%)
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 | 6.1395e+05 | 262144 | 1 | 4.270e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12.769315487854188 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.8523905095635618, dt = 0.00151442159614864
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.15 us (1.8%)
patch tree reduce : 1844.00 ns (0.5%)
gen split merge : 1272.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 872.00 ns (0.2%)
LB compute : 368.17 us (94.4%)
LB move op cnt : 0
LB apply : 3.43 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.91 us (74.2%)
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 | 6.3232e+05 | 262144 | 1 | 4.146e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.150720964987023 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.8539049311597102, dt = 0.0015143452461225705
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.7%)
patch tree reduce : 1884.00 ns (0.4%)
gen split merge : 1222.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 971.00 ns (0.2%)
LB compute : 404.06 us (95.0%)
LB move op cnt : 0
LB apply : 3.89 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.40 us (70.4%)
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 | 5.6696e+05 | 262144 | 1 | 4.624e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 11.79068722728952 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.855419276405833, dt = 0.001514272915143187
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.5%)
patch tree reduce : 1934.00 ns (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 : 438.09 us (95.4%)
LB move op cnt : 0
LB apply : 3.93 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.09 us (74.9%)
Info: cfl dt = 0.0015142045189706036 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 6.2555e+05 | 262144 | 1 | 4.191e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.008575406047989 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.856933549320976, dt = 0.0015142045189706036
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1813.00 ns (0.4%)
gen split merge : 951.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.2%)
LB compute : 401.57 us (95.1%)
LB move op cnt : 0
LB apply : 3.65 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.69 us (73.4%)
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 | 6.2576e+05 | 262144 | 1 | 4.189e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.012303975935465 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.8584477538399464, dt = 0.0015141400280183868
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 2.21 us (0.5%)
gen split merge : 972.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 882.00 ns (0.2%)
LB compute : 383.00 us (94.8%)
LB move op cnt : 0
LB apply : 3.74 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.18 us (71.2%)
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 | 6.3444e+05 | 262144 | 1 | 4.132e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.192358552517744 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.8599618938679647, dt = 0.0015140794981288535
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1793.00 ns (0.5%)
gen split merge : 962.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1182.00 ns (0.3%)
LB compute : 352.06 us (94.4%)
LB move op cnt : 0
LB apply : 3.74 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.81 us (74.5%)
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 | 6.2539e+05 | 262144 | 1 | 4.192e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.003614803330144 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.8614759733660935, dt = 0.001514023034559368
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (0.7%)
patch tree reduce : 1924.00 ns (0.2%)
gen split merge : 962.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.1%)
LB compute : 944.16 us (97.8%)
LB move op cnt : 0
LB apply : 3.75 us (0.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.02 us (76.8%)
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 | 6.3296e+05 | 262144 | 1 | 4.142e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.160402052794758 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.862989996400653, dt = 0.0015139707561729894
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.9%)
patch tree reduce : 2.24 us (0.6%)
gen split merge : 942.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 892.00 ns (0.2%)
LB compute : 346.25 us (94.4%)
LB move op cnt : 0
LB apply : 3.65 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.00 us (74.0%)
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 | 6.2497e+05 | 262144 | 1 | 4.195e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12.993793222613132 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.8645039671568258, dt = 0.001513922771154085
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (1.7%)
patch tree reduce : 1774.00 ns (0.4%)
gen split merge : 1152.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.2%)
LB compute : 389.21 us (94.8%)
LB move op cnt : 0
LB apply : 3.77 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.88 us (74.3%)
Info: cfl dt = 0.0015138791660746398 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 6.3170e+05 | 262144 | 1 | 4.150e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.133471566545612 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.86601788992798, dt = 0.0015138791660746398
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.25 us (0.6%)
patch tree reduce : 1773.00 ns (0.2%)
gen split merge : 1012.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.1%)
LB compute : 1129.72 us (98.1%)
LB move op cnt : 0
LB apply : 3.82 us (0.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.06 us (76.9%)
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 | 6.1894e+05 | 262144 | 1 | 4.235e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12.867833023991876 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.8675317690940547, dt = 0.0015138400045259285
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.8%)
patch tree reduce : 2.05 us (0.5%)
gen split merge : 1232.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.2%)
LB compute : 385.80 us (94.8%)
LB move op cnt : 0
LB apply : 3.75 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.26 us (70.2%)
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 | 6.2915e+05 | 262144 | 1 | 4.167e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.079635921961689 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.8690456090985808, dt = 0.0015138053330645185
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.6%)
patch tree reduce : 2.19 us (0.5%)
gen split merge : 992.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1162.00 ns (0.3%)
LB compute : 392.11 us (94.9%)
LB move op cnt : 0
LB apply : 3.88 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.88 us (73.8%)
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 | 6.3348e+05 | 262144 | 1 | 4.138e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.169414258243394 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.870559414431645, dt = 0.0015137751903305779
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.9%)
patch tree reduce : 1713.00 ns (0.5%)
gen split merge : 1253.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1092.00 ns (0.3%)
LB compute : 345.00 us (94.3%)
LB move op cnt : 0
LB apply : 3.72 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.44 us (77.8%)
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.3213e+05 | 262144 | 1 | 4.147e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.140973338893179 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.8720731896219758, dt = 0.001513749610190356
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1964.00 ns (0.5%)
gen split merge : 1031.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.3%)
LB compute : 351.26 us (94.5%)
LB move op cnt : 0
LB apply : 3.47 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.31 us (75.0%)
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 | 6.3516e+05 | 262144 | 1 | 4.127e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.203794909221303 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.8735869392321662, dt = 0.0015137286328372654
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1993.00 ns (0.5%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 882.00 ns (0.2%)
LB compute : 355.76 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.10 us (73.1%)
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 | 6.3392e+05 | 262144 | 1 | 4.135e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.177829983503564 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.8751006678650035, dt = 0.0015137123003179525
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1673.00 ns (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 : 364.46 us (94.8%)
LB move op cnt : 0
LB apply : 3.65 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.76 us (76.7%)
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 | 6.3198e+05 | 262144 | 1 | 4.148e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.137341292756965 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.8766143801653214, dt = 0.0015137006515755283
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 2.16 us (0.6%)
gen split merge : 982.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.3%)
LB compute : 362.50 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.92 us (75.0%)
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 | 6.3400e+05 | 262144 | 1 | 4.135e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.179384268482917 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.878128080816897, dt = 0.0015136937202307778
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (0.3%)
patch tree reduce : 1944.00 ns (0.1%)
gen split merge : 952.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 882.00 ns (0.0%)
LB compute : 2.35 ms (99.1%)
LB move op cnt : 0
LB apply : 4.06 us (0.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.41 us (75.9%)
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 | 6.2431e+05 | 262144 | 1 | 4.199e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12.977847315904082 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.8796417745371277, dt = 0.0015136915316584026
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (0.5%)
patch tree reduce : 1884.00 ns (0.1%)
gen split merge : 942.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 882.00 ns (0.1%)
LB compute : 1389.71 us (98.5%)
LB move op cnt : 0
LB apply : 4.31 us (0.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.71 us (78.7%)
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 | 6.2449e+05 | 262144 | 1 | 4.198e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12.981427741659742 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.881155466068786, dt = 0.0015136940950797359
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.3%)
patch tree reduce : 1833.00 ns (0.4%)
gen split merge : 982.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.2%)
LB compute : 498.65 us (96.0%)
LB move op cnt : 0
LB apply : 4.18 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.06 us (72.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 | 6.2415e+05 | 262144 | 1 | 4.200e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12.974432557936264 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.8826691601638657, dt = 0.0015137013934479256
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.3%)
patch tree reduce : 2.09 us (0.4%)
gen split merge : 962.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1303.00 ns (0.3%)
LB compute : 477.56 us (95.6%)
LB move op cnt : 0
LB apply : 4.24 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.12 us (72.3%)
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 | 6.2700e+05 | 262144 | 1 | 4.181e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.033874124439498 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.8841828615573135, dt = 0.0015137133743153997
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1773.00 ns (0.4%)
gen split merge : 932.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1143.00 ns (0.3%)
LB compute : 404.05 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.22 us (75.9%)
Info: cfl dt = 0.001513729999412867 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 6.3317e+05 | 262144 | 1 | 4.140e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.1622320144102 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.885696574931629, dt = 0.001513729999412867
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 2.25 us (0.6%)
gen split merge : 962.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1011.00 ns (0.3%)
LB compute : 345.01 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.87 us (74.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 | 6.3277e+05 | 262144 | 1 | 4.143e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.154060311339856 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.887210304931042, dt = 0.0015137511905417163
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (0.9%)
patch tree reduce : 1763.00 ns (0.2%)
gen split merge : 1032.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 1152.00 ns (0.1%)
LB compute : 748.38 us (97.2%)
LB move op cnt : 0
LB apply : 4.27 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.49 us (70.7%)
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 | 6.1878e+05 | 262144 | 1 | 4.236e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12.86331011987094 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.8887240561215837, dt = 0.0015137768389180083
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 2.26 us (0.5%)
gen split merge : 922.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 882.00 ns (0.2%)
LB compute : 403.17 us (95.0%)
LB move op cnt : 0
LB apply : 4.05 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.04 us (76.3%)
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 | 6.1076e+05 | 262144 | 1 | 4.292e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12.696804896796552 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.890237832960502, dt = 0.0015137627307265594
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1784.00 ns (0.5%)
gen split merge : 951.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.3%)
LB compute : 341.27 us (94.1%)
LB move op cnt : 0
LB apply : 4.67 us (1.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.02 us (77.6%)
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 | 6.3372e+05 | 262144 | 1 | 4.137e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.17395692036911 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.8917515956912285, dt = 0.001513748561952707
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.8%)
patch tree reduce : 2.25 us (0.6%)
gen split merge : 951.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 971.00 ns (0.2%)
LB compute : 375.20 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.81 us (74.3%)
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 | 6.3930e+05 | 262144 | 1 | 4.100e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.289878173903071 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.893265344253181, dt = 0.0015137384226942847
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.6%)
patch tree reduce : 1874.00 ns (0.5%)
gen split merge : 991.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.2%)
LB compute : 388.78 us (94.9%)
LB move op cnt : 0
LB apply : 4.16 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.02 us (75.5%)
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 | 6.3425e+05 | 262144 | 1 | 4.133e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.184860758045613 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.8947790826758752, dt = 0.0015137322163847082
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (0.1%)
patch tree reduce : 1864.00 ns (0.0%)
gen split merge : 1302.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 1332.00 ns (0.0%)
LB compute : 4.85 ms (99.6%)
LB move op cnt : 0
LB apply : 4.29 us (0.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.31 us (77.1%)
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 | 6.2673e+05 | 262144 | 1 | 4.183e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.028462359353291 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.8962928148922598, dt = 0.001513729871140335
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (0.6%)
patch tree reduce : 2.07 us (0.2%)
gen split merge : 1232.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 872.00 ns (0.1%)
LB compute : 1105.24 us (98.1%)
LB move op cnt : 0
LB apply : 4.09 us (0.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.95 us (75.2%)
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 | 6.2467e+05 | 262144 | 1 | 4.196e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12.985687521064236 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.8978065447634003, dt = 0.0015137314541135028
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.4%)
patch tree reduce : 1773.00 ns (0.4%)
gen split merge : 982.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 902.00 ns (0.2%)
LB compute : 477.14 us (95.8%)
LB move op cnt : 0
LB apply : 3.60 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.67 us (72.5%)
Info: cfl dt = 0.0015137365014985733 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 6.2642e+05 | 262144 | 1 | 4.185e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.0219808228704 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.8993202762175136, dt = 0.0015137365014985733
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.1%)
patch tree reduce : 2.12 us (0.4%)
gen split merge : 942.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 971.00 ns (0.2%)
LB compute : 561.37 us (96.4%)
LB move op cnt : 0
LB apply : 3.92 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.81 us (74.3%)
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 | 6.2531e+05 | 262144 | 1 | 4.192e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12.998906711458865 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.900834012719012, dt = 0.001513745499904561
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (0.2%)
patch tree reduce : 2.08 us (0.1%)
gen split merge : 1313.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.0%)
LB compute : 3.54 ms (99.4%)
LB move op cnt : 0
LB apply : 4.52 us (0.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.01 us (75.4%)
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 | 6.2451e+05 | 262144 | 1 | 4.198e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12.982373868665764 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.9023477582189168, dt = 0.0015137588155089644
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1753.00 ns (0.4%)
gen split merge : 982.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1122.00 ns (0.3%)
LB compute : 395.72 us (95.0%)
LB move op cnt : 0
LB apply : 4.04 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.75 us (72.9%)
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 | 6.3214e+05 | 262144 | 1 | 4.147e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.141114988652003 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.9038615170344255, dt = 0.001513776587949398
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (0.1%)
patch tree reduce : 1733.00 ns (0.0%)
gen split merge : 952.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.0%)
LB compute : 5.75 ms (99.6%)
LB move op cnt : 0
LB apply : 3.91 us (0.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.91 us (75.5%)
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 | 6.1571e+05 | 262144 | 1 | 4.258e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12.799747683502051 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.905375293622375, dt = 0.0015137987917873716
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.1%)
patch tree reduce : 1793.00 ns (0.3%)
gen split merge : 962.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1002.00 ns (0.2%)
LB compute : 551.99 us (96.4%)
LB move op cnt : 0
LB apply : 3.59 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.92 us (75.1%)
Info: cfl dt = 0.0015138253851566198 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 6.2348e+05 | 262144 | 1 | 4.205e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12.961528548745145 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.9068890924141626, dt = 0.0015138253851566198
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.5%)
patch tree reduce : 1733.00 ns (0.4%)
gen split merge : 1342.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1031.00 ns (0.2%)
LB compute : 398.26 us (95.1%)
LB move op cnt : 0
LB apply : 3.68 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.14 us (76.0%)
Info: cfl dt = 0.001513856260233836 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 6.3317e+05 | 262144 | 1 | 4.140e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.163153080254693 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.9084029177993194, dt = 0.001513856260233836
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.14 us (2.0%)
patch tree reduce : 1843.00 ns (0.5%)
gen split merge : 982.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.3%)
LB compute : 342.65 us (94.3%)
LB move op cnt : 0
LB apply : 3.70 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.46 us (72.3%)
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 | 6.3585e+05 | 262144 | 1 | 4.123e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.219148901565127 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.9099167740595533, dt = 0.0004998926071135834
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.8%)
patch tree reduce : 1923.00 ns (0.5%)
gen split merge : 1243.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1022.00 ns (0.2%)
LB compute : 390.68 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.00 us (75.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 | 6.3456e+05 | 262144 | 1 | 4.131e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 4.356223919787835 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 808.0414023330001 (s) [Godunov][rank=0]
Info: dump to _to_trash/ramses_kh/periodic_0023.vtk [VTK Dump][rank=0]
- took 52.30 ms, bandwidth = 745.63 MB/s
amr::Godunov: t = 2.910416666666667, dt = 0.0015139181142524397
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.3%)
patch tree reduce : 1733.00 ns (0.3%)
gen split merge : 952.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1042.00 ns (0.2%)
LB compute : 544.28 us (96.3%)
LB move op cnt : 0
LB apply : 3.92 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.79 us (71.6%)
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.1861e+05 | 262144 | 1 | 4.238e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12.861221035924272 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.911930584780919, dt = 0.0015139538468101474
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.2%)
patch tree reduce : 1964.00 ns (0.4%)
gen split merge : 932.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.2%)
LB compute : 533.34 us (96.3%)
LB move op cnt : 0
LB apply : 3.76 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.87 us (70.8%)
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 | 6.2631e+05 | 262144 | 1 | 4.186e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.021598386799097 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.9134445386277292, dt = 0.0015139931391419466
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.2%)
patch tree reduce : 1784.00 ns (0.3%)
gen split merge : 942.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.2%)
LB compute : 493.45 us (96.1%)
LB move op cnt : 0
LB apply : 4.11 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.39 us (74.6%)
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 | 6.0813e+05 | 262144 | 1 | 4.311e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12.643972630117709 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.9149585317668714, dt = 0.0015140361469536182
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.6%)
patch tree reduce : 1793.00 ns (0.4%)
gen split merge : 1273.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1002.00 ns (0.2%)
LB compute : 399.50 us (94.9%)
LB move op cnt : 0
LB apply : 4.29 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.58 us (78.3%)
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.3299e+05 | 262144 | 1 | 4.141e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.161110755660792 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.916472567913825, dt = 0.0015140829034040663
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.7%)
patch tree reduce : 2.13 us (0.5%)
gen split merge : 942.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.2%)
LB compute : 394.42 us (94.9%)
LB move op cnt : 0
LB apply : 3.76 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.73 us (73.8%)
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 | 6.1846e+05 | 262144 | 1 | 4.239e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12.859490360736466 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.917986650817229, dt = 0.001514133351716558
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1764.00 ns (0.4%)
gen split merge : 1172.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.2%)
LB compute : 384.13 us (94.9%)
LB move op cnt : 0
LB apply : 3.51 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.59 us (74.9%)
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 | 6.3364e+05 | 262144 | 1 | 4.137e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.175576738343217 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.9195007841689455, dt = 0.0015141873541170585
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1633.00 ns (0.4%)
gen split merge : 962.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 891.00 ns (0.2%)
LB compute : 378.35 us (95.0%)
LB move op cnt : 0
LB apply : 3.62 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.65 us (70.3%)
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 | 6.0976e+05 | 262144 | 1 | 4.299e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12.679536798684445 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.9210149715230624, dt = 0.0015142447597728222
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1863.00 ns (0.5%)
gen split merge : 1263.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 882.00 ns (0.2%)
LB compute : 363.23 us (94.6%)
LB move op cnt : 0
LB apply : 3.93 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.17 us (74.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 | 6.3347e+05 | 262144 | 1 | 4.138e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.173064533569356 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.922529216282835, dt = 0.0015143054200442497
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1753.00 ns (0.4%)
gen split merge : 952.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.3%)
LB compute : 375.18 us (94.8%)
LB move op cnt : 0
LB apply : 3.86 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.12 us (75.5%)
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 | 6.1160e+05 | 262144 | 1 | 4.286e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12.718678642765845 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.9240435217028793, dt = 0.001514369197344292
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 2.04 us (0.5%)
gen split merge : 1073.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 871.00 ns (0.2%)
LB compute : 389.86 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.60 us (73.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 | 6.3443e+05 | 262144 | 1 | 4.132e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.193954886884883 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.925557890900224, dt = 0.0015144359727453222
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1763.00 ns (0.4%)
gen split merge : 1062.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 981.00 ns (0.2%)
LB compute : 383.28 us (94.9%)
LB move op cnt : 0
LB apply : 3.61 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.36 us (72.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 | 6.1512e+05 | 262144 | 1 | 4.262e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12.793058478338745 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.927072326872969, dt = 0.001514505655922173
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.78 us (1.8%)
patch tree reduce : 1873.00 ns (0.4%)
gen split merge : 1263.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1042.00 ns (0.2%)
LB compute : 404.10 us (94.7%)
LB move op cnt : 0
LB apply : 3.78 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.38 us (71.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 | 6.3531e+05 | 262144 | 1 | 4.126e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.213586502268367 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.9285868325288913, dt = 0.0015145781904667012
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 23.96 us (6.0%)
patch tree reduce : 1734.00 ns (0.4%)
gen split merge : 962.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 882.00 ns (0.2%)
LB compute : 359.90 us (90.5%)
LB move op cnt : 0
LB apply : 3.69 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.83 us (74.4%)
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 | 6.1552e+05 | 262144 | 1 | 4.259e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12.802584532037246 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.930101410719358, dt = 0.0015146535560271132
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1743.00 ns (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 : 385.66 us (94.9%)
LB move op cnt : 0
LB apply : 3.68 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.79 us (74.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 | 6.3225e+05 | 262144 | 1 | 4.146e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.151278366906016 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.9316160642753855, dt = 0.0015147321452182209
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.7%)
patch tree reduce : 1804.00 ns (0.4%)
gen split merge : 1162.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.2%)
LB compute : 382.05 us (94.9%)
LB move op cnt : 0
LB apply : 3.44 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.67 us (72.4%)
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 | 6.1625e+05 | 262144 | 1 | 4.254e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12.818970770440615 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.9331307964206035, dt = 0.0015148140411841418
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.1%)
patch tree reduce : 2.07 us (0.4%)
gen split merge : 18.77 us (3.3%)
split / merge op : 0/0
apply split merge : 1002.00 ns (0.2%)
LB compute : 528.09 us (93.2%)
LB move op cnt : 0
LB apply : 3.45 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.12 us (76.8%)
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 | 6.2516e+05 | 262144 | 1 | 4.193e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.004987722807355 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.9346456104617875, dt = 0.0015148992385352268
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.6%)
patch tree reduce : 1903.00 ns (0.5%)
gen split merge : 1091.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1002.00 ns (0.2%)
LB compute : 396.79 us (94.9%)
LB move op cnt : 0
LB apply : 3.86 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.98 us (75.8%)
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 | 6.2065e+05 | 262144 | 1 | 4.224e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12.91198637087028 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.936160509700323, dt = 0.0015149877942888155
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1883.00 ns (0.5%)
gen split merge : 1263.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 902.00 ns (0.3%)
LB compute : 334.54 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.77 us (75.0%)
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 | 6.3185e+05 | 262144 | 1 | 4.149e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.14579889322939 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.9376754974946118, dt = 0.00151507978928987
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (0.2%)
patch tree reduce : 1783.00 ns (0.1%)
gen split merge : 1152.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 871.00 ns (0.0%)
LB compute : 3.12 ms (99.3%)
LB move op cnt : 0
LB apply : 4.18 us (0.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.06 us (76.1%)
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 | 6.0993e+05 | 262144 | 1 | 4.298e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12.690501387364815 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.9391905772839015, dt = 0.0015151753049182644
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1844.00 ns (0.5%)
gen split merge : 961.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 892.00 ns (0.2%)
LB compute : 377.90 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.02 us (74.5%)
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 | 6.2934e+05 | 262144 | 1 | 4.165e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.095259179261966 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.9407057525888196, dt = 0.0015152744181629663
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (0.8%)
patch tree reduce : 2.05 us (0.2%)
gen split merge : 982.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 1072.00 ns (0.1%)
LB compute : 820.95 us (97.5%)
LB move op cnt : 0
LB apply : 4.00 us (0.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.79 us (75.1%)
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 | 6.1330e+05 | 262144 | 1 | 4.274e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12.762185541651862 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.9422210270069824, dt = 0.0015153261504207989
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (0.1%)
patch tree reduce : 1954.00 ns (0.0%)
gen split merge : 1092.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 902.00 ns (0.0%)
LB compute : 6.02 ms (99.6%)
LB move op cnt : 0
LB apply : 3.91 us (0.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.06 us (75.5%)
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 | 6.2245e+05 | 262144 | 1 | 4.211e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12.953047162431343 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.9437363531574032, dt = 0.0015153658068953304
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 19.28 us (4.8%)
gen split merge : 981.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 932.00 ns (0.2%)
LB compute : 361.30 us (90.4%)
LB move op cnt : 0
LB apply : 3.83 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.35 us (76.1%)
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 | 6.1304e+05 | 262144 | 1 | 4.276e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12.757684658437455 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.9452517189642986, dt = 0.0015154101903143299
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1893.00 ns (0.5%)
gen split merge : 1313.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 882.00 ns (0.2%)
LB compute : 375.23 us (94.7%)
LB move op cnt : 0
LB apply : 3.64 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.73 us (73.3%)
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 | 6.2918e+05 | 262144 | 1 | 4.166e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.09388655148415 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.946767129154613, dt = 0.0015154591761117155
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.7%)
patch tree reduce : 1673.00 ns (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 : 392.01 us (94.9%)
LB move op cnt : 0
LB apply : 3.86 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.73 us (72.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 | 6.1595e+05 | 262144 | 1 | 4.256e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12.818883025521574 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.948282588330725, dt = 0.001515512758515192
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1884.00 ns (0.5%)
gen split merge : 972.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.2%)
LB compute : 373.30 us (94.8%)
LB move op cnt : 0
LB apply : 3.64 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.75 us (72.6%)
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 | 6.3340e+05 | 262144 | 1 | 4.139e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.182509847595275 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.94979810108924, dt = 0.0015155711235613609
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.4%)
patch tree reduce : 1853.00 ns (0.4%)
gen split merge : 942.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 892.00 ns (0.2%)
LB compute : 459.01 us (95.8%)
LB move op cnt : 0
LB apply : 3.93 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.71 us (74.2%)
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 | 6.0950e+05 | 262144 | 1 | 4.301e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12.685670339162044 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.9513136722128013, dt = 0.0015156345699963358
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.25 us (1.8%)
patch tree reduce : 1683.00 ns (0.4%)
gen split merge : 1162.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 882.00 ns (0.2%)
LB compute : 374.08 us (94.6%)
LB move op cnt : 0
LB apply : 3.74 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.02 us (73.6%)
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 | 6.3181e+05 | 262144 | 1 | 4.149e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.150608562424386 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.9528293067827978, dt = 0.0015157032495444146
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1994.00 ns (0.5%)
gen split merge : 981.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 871.00 ns (0.2%)
LB compute : 369.37 us (94.5%)
LB move op cnt : 0
LB apply : 4.08 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.83 us (74.3%)
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 | 6.3266e+05 | 262144 | 1 | 4.144e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.168879782287817 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.954345010032342, dt = 0.0015157771281056741
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (0.3%)
patch tree reduce : 1803.00 ns (0.1%)
gen split merge : 932.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 872.00 ns (0.0%)
LB compute : 2.36 ms (99.1%)
LB move op cnt : 0
LB apply : 3.92 us (0.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.36 us (74.4%)
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 | 6.2896e+05 | 262144 | 1 | 4.168e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.092503106808618 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.955860787160448, dt = 0.0015158560585658858
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1853.00 ns (0.5%)
gen split merge : 941.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1002.00 ns (0.3%)
LB compute : 356.25 us (94.4%)
LB move op cnt : 0
LB apply : 3.90 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.18 us (77.5%)
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 | 6.1056e+05 | 262144 | 1 | 4.294e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12.710020414584143 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.9573766432190136, dt = 0.0015159398838577162
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1783.00 ns (0.5%)
gen split merge : 932.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 892.00 ns (0.2%)
LB compute : 371.48 us (94.9%)
LB move op cnt : 0
LB apply : 3.30 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.50 us (70.6%)
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 | 6.3342e+05 | 262144 | 1 | 4.139e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.186651585811806 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.9588925831028714, dt = 0.0015160286088810536
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (0.1%)
patch tree reduce : 2.23 us (0.0%)
gen split merge : 951.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 1252.00 ns (0.0%)
LB compute : 5.16 ms (99.6%)
LB move op cnt : 0
LB apply : 4.24 us (0.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.98 us (75.7%)
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 | 6.0332e+05 | 262144 | 1 | 4.345e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12.560774868572734 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.9604086117117525, dt = 0.0015161221929970955
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 2.06 us (0.5%)
gen split merge : 952.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 902.00 ns (0.2%)
LB compute : 381.43 us (94.8%)
LB move op cnt : 0
LB apply : 3.54 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.69 us (76.4%)
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 | 6.3056e+05 | 262144 | 1 | 4.157e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.128664359608718 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.9619247339047496, dt = 0.0015162206667123776
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (0.7%)
patch tree reduce : 1863.00 ns (0.2%)
gen split merge : 952.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 881.00 ns (0.1%)
LB compute : 898.63 us (97.7%)
LB move op cnt : 0
LB apply : 4.20 us (0.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.69 us (71.9%)
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 | 6.0730e+05 | 262144 | 1 | 4.317e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12.645324251880195 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.963440954571462, dt = 0.0015163241583407213
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (0.3%)
patch tree reduce : 2.06 us (0.1%)
gen split merge : 991.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 871.00 ns (0.0%)
LB compute : 2.61 ms (99.2%)
LB move op cnt : 0
LB apply : 3.91 us (0.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.26 us (77.9%)
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 | 6.2252e+05 | 262144 | 1 | 4.211e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12.96317569525827 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.964957278729803, dt = 0.0015164328513112427
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (0.9%)
patch tree reduce : 2.04 us (0.3%)
gen split merge : 931.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 1203.00 ns (0.2%)
LB compute : 740.22 us (97.1%)
LB move op cnt : 0
LB apply : 3.90 us (0.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.41 us (77.8%)
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 | 6.2988e+05 | 262144 | 1 | 4.162e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.11721813912268 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.966473711581114, dt = 0.0015165470045095122
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.4%)
patch tree reduce : 1914.00 ns (0.4%)
gen split merge : 972.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 892.00 ns (0.2%)
LB compute : 495.08 us (95.8%)
LB move op cnt : 0
LB apply : 4.26 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.08 us (75.6%)
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 | 6.2791e+05 | 262144 | 1 | 4.175e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.077146673801451 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.9679902585856235, dt = 0.0015166668289555375
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (0.1%)
patch tree reduce : 1783.00 ns (0.0%)
gen split merge : 952.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.0%)
LB compute : 6.09 ms (99.6%)
LB move op cnt : 0
LB apply : 3.82 us (0.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.31 us (76.9%)
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 | 6.0338e+05 | 262144 | 1 | 4.345e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12.567264687119993 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.969506925414579, dt = 0.0015167924267402307
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1923.00 ns (0.5%)
gen split merge : 1232.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 902.00 ns (0.2%)
LB compute : 386.83 us (94.8%)
LB move op cnt : 0
LB apply : 3.92 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.73 us (73.6%)
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 | 6.3374e+05 | 262144 | 1 | 4.136e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.200727634043194 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.9710237178413195, dt = 0.0015168697167079774
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (0.4%)
patch tree reduce : 2.14 us (0.1%)
gen split merge : 962.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 1173.00 ns (0.1%)
LB compute : 1944.87 us (98.9%)
LB move op cnt : 0
LB apply : 4.05 us (0.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.92 us (74.4%)
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 | 6.1036e+05 | 262144 | 1 | 4.295e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12.714499274658587 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.9725405875580275, dt = 0.0015167805799889949
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1723.00 ns (0.5%)
gen split merge : 1092.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1302.00 ns (0.4%)
LB compute : 342.63 us (94.3%)
LB move op cnt : 0
LB apply : 3.70 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.50 us (73.0%)
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 | 6.2901e+05 | 262144 | 1 | 4.168e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.102139359308396 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.9740573681380167, dt = 0.0015166937676758265
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 2.03 us (0.5%)
gen split merge : 952.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 902.00 ns (0.2%)
LB compute : 369.27 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.23 us (66.9%)
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 | 6.1959e+05 | 262144 | 1 | 4.231e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12.905178800463403 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.9755740619056925, dt = 0.0015166092689664378
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1833.00 ns (0.3%)
gen split merge : 952.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1233.00 ns (0.2%)
LB compute : 534.09 us (96.1%)
LB move op cnt : 0
LB apply : 4.22 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.90 us (74.7%)
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 | 6.2648e+05 | 262144 | 1 | 4.184e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.04790421871503 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.977090671174659, dt = 0.0015165271292119965
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1954.00 ns (0.5%)
gen split merge : 982.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 892.00 ns (0.2%)
LB compute : 376.26 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.90 us (71.2%)
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 | 6.1417e+05 | 262144 | 1 | 4.268e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12.790930422993 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.978607198303871, dt = 0.00151644744508862
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (0.2%)
patch tree reduce : 2.04 us (0.1%)
gen split merge : 951.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 1242.00 ns (0.0%)
LB compute : 3.64 ms (99.4%)
LB move op cnt : 0
LB apply : 3.93 us (0.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.70 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 | 6.2261e+05 | 262144 | 1 | 4.210e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12.966079706549147 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.9801236457489595, dt = 0.0015163703532176092
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.24 us (1.7%)
patch tree reduce : 2.07 us (0.5%)
gen split merge : 1252.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 882.00 ns (0.2%)
LB compute : 394.65 us (94.9%)
LB move op cnt : 0
LB apply : 3.65 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.00 us (75.3%)
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 | 5.9648e+05 | 262144 | 1 | 4.395e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12.421302688434842 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.981640016102177, dt = 0.0015162959964158172
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (0.3%)
patch tree reduce : 2.09 us (0.1%)
gen split merge : 952.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.0%)
LB compute : 2.49 ms (99.2%)
LB move op cnt : 0
LB apply : 3.74 us (0.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.10 us (76.1%)
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 | 6.1455e+05 | 262144 | 1 | 4.266e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12.796852206049541 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.983156312098593, dt = 0.001516224535963824
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (0.3%)
patch tree reduce : 1883.00 ns (0.1%)
gen split merge : 942.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 891.00 ns (0.0%)
LB compute : 2.45 ms (99.2%)
LB move op cnt : 0
LB apply : 4.01 us (0.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.55 us (73.3%)
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 | 6.0760e+05 | 262144 | 1 | 4.314e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12.65155762961193 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.9846725366345566, dt = 0.0015161561115093257
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.6%)
patch tree reduce : 2.14 us (0.5%)
gen split merge : 931.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.2%)
LB compute : 396.62 us (91.3%)
LB move op cnt : 0
LB apply : 3.48 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.16 us (74.8%)
Info: cfl dt = 0.0015160908162935285 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 6.2690e+05 | 262144 | 1 | 4.182e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.052796990597352 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.9861886927460657, dt = 0.0015160908162935285
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (0.2%)
patch tree reduce : 2.23 us (0.1%)
gen split merge : 941.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 862.00 ns (0.0%)
LB compute : 3.15 ms (99.3%)
LB move op cnt : 0
LB apply : 3.70 us (0.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.04 us (76.3%)
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 | 6.2589e+05 | 262144 | 1 | 4.188e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.031315335251126 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.9877047835623594, dt = 0.0015160287098673958
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1923.00 ns (0.5%)
gen split merge : 1162.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 901.00 ns (0.2%)
LB compute : 378.31 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.65 us (72.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 | 6.2940e+05 | 262144 | 1 | 4.165e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.103786490699093 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.989220812272227, dt = 0.0015159698121613562
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.16 us (0.1%)
patch tree reduce : 1873.00 ns (0.0%)
gen split merge : 952.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 882.00 ns (0.0%)
LB compute : 5.87 ms (99.6%)
LB move op cnt : 0
LB apply : 3.93 us (0.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.75 us (73.1%)
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 | 6.1976e+05 | 262144 | 1 | 4.230e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12.902522425939743 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.990736782084388, dt = 0.0015159140978895074
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 2.13 us (0.6%)
gen split merge : 962.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 882.00 ns (0.2%)
LB compute : 355.23 us (94.6%)
LB move op cnt : 0
LB apply : 3.44 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.00 us (72.1%)
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 | 6.3326e+05 | 262144 | 1 | 4.140e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.183089340247518 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.9922526961822773, dt = 0.00151586150586323
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 2.20 us (0.6%)
gen split merge : 1292.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 862.00 ns (0.2%)
LB compute : 363.54 us (94.4%)
LB move op cnt : 0
LB apply : 4.11 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.10 us (76.9%)
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 | 6.1169e+05 | 262144 | 1 | 4.286e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12.73376857272113 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.9937685576881403, dt = 0.0015158119342900196
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.2%)
patch tree reduce : 1994.00 ns (0.4%)
gen split merge : 1222.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 881.00 ns (0.2%)
LB compute : 527.75 us (96.1%)
LB move op cnt : 0
LB apply : 3.99 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.58 us (73.9%)
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 | 6.2302e+05 | 262144 | 1 | 4.208e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12.96913563679304 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.9952843696224303, dt = 0.0015157652695703308
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 2.20 us (0.6%)
gen split merge : 962.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 881.00 ns (0.2%)
LB compute : 355.56 us (94.6%)
LB move op cnt : 0
LB apply : 3.68 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.85 us (74.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 | 6.1713e+05 | 262144 | 1 | 4.248e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12.846073736245863 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.9968001348920006, dt = 0.0015157213859561688
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.6%)
patch tree reduce : 1763.00 ns (0.4%)
gen split merge : 991.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1082.00 ns (0.3%)
LB compute : 396.94 us (94.9%)
LB move op cnt : 0
LB apply : 4.14 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.79 us (72.7%)
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 | 6.2929e+05 | 262144 | 1 | 4.166e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.098741156273677 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.998315856277957, dt = 0.0015156801812625782
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1743.00 ns (0.4%)
gen split merge : 932.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 952.00 ns (0.2%)
LB compute : 402.43 us (95.1%)
LB move op cnt : 0
LB apply : 3.89 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.52 us (78.3%)
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 | 6.1173e+05 | 262144 | 1 | 4.285e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12.7329598247133 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 2.999831536459219, dt = 0.0015156415719529508
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 2.04 us (0.5%)
gen split merge : 1082.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 881.00 ns (0.2%)
LB compute : 363.08 us (94.3%)
LB move op cnt : 0
LB apply : 4.37 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.06 us (74.0%)
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 | 6.3189e+05 | 262144 | 1 | 4.149e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.15234510849433 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 3.001347178031172, dt = 0.0015156054850431545
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1873.00 ns (0.5%)
gen split merge : 922.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 902.00 ns (0.2%)
LB compute : 358.72 us (94.5%)
LB move op cnt : 0
LB apply : 3.84 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.98 us (74.8%)
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 | 6.1010e+05 | 262144 | 1 | 4.297e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12.69851087647682 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 3.0028627835162154, dt = 0.001515571851890059
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1803.00 ns (0.4%)
gen split merge : 952.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1012.00 ns (0.2%)
LB compute : 393.02 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.21 us (76.0%)
Info: cfl dt = 0.0015155406034392217 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 6.3033e+05 | 262144 | 1 | 4.159e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.119118955423634 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 3.0043783553681056, dt = 0.0015155406034392217
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (0.8%)
patch tree reduce : 1753.00 ns (0.2%)
gen split merge : 1243.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.1%)
LB compute : 907.38 us (97.7%)
LB move op cnt : 0
LB apply : 4.36 us (0.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.83 us (73.6%)
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 | 5.9664e+05 | 262144 | 1 | 4.394e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12.417799032065801 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 3.005893895971545, dt = 0.0015155117262914545
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1854.00 ns (0.4%)
gen split merge : 1132.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1172.00 ns (0.3%)
LB compute : 404.70 us (95.0%)
LB move op cnt : 0
LB apply : 3.85 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.14 us (77.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 | 6.3457e+05 | 262144 | 1 | 4.131e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.206867915773717 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 3.0074094076978364, dt = 0.0015154852770668096
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 2.22 us (0.6%)
gen split merge : 972.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 981.00 ns (0.3%)
LB compute : 344.51 us (94.3%)
LB move op cnt : 0
LB apply : 3.89 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.60 us (71.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 | 6.1155e+05 | 262144 | 1 | 4.287e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12.727490525536094 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 3.0089248929749033, dt = 0.001515461347178684
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.9%)
patch tree reduce : 1774.00 ns (0.5%)
gen split merge : 932.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 891.00 ns (0.3%)
LB compute : 333.96 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.63 us (72.3%)
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 | 6.0587e+05 | 262144 | 1 | 4.327e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12.609156704270335 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 3.010440354322082, dt = 0.0015154400519389322
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.5%)
patch tree reduce : 1994.00 ns (0.4%)
gen split merge : 1001.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.2%)
LB compute : 424.92 us (95.2%)
LB move op cnt : 0
LB apply : 3.99 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.22 us (73.4%)
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 | 6.1056e+05 | 262144 | 1 | 4.293e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12.706678072944362 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 3.0119557943740207, dt = 0.0015154215237168313
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.7%)
patch tree reduce : 1913.00 ns (0.5%)
gen split merge : 1313.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1172.00 ns (0.3%)
LB compute : 383.38 us (94.7%)
LB move op cnt : 0
LB apply : 3.49 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.75 us (73.1%)
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 | 6.1996e+05 | 262144 | 1 | 4.228e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12.902078362147316 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 3.0134712158977375, dt = 0.0015154059066079205
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.3%)
patch tree reduce : 1803.00 ns (0.3%)
gen split merge : 1203.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 892.00 ns (0.2%)
LB compute : 523.73 us (96.2%)
LB move op cnt : 0
LB apply : 3.62 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.04 us (73.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 | 6.0363e+05 | 262144 | 1 | 4.343e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12.56200685909675 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 3.0149866218043453, dt = 0.0015153933497477634
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (0.7%)
patch tree reduce : 2.25 us (0.2%)
gen split merge : 952.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 871.00 ns (0.1%)
LB compute : 1002.46 us (97.9%)
LB move op cnt : 0
LB apply : 4.18 us (0.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.56 us (72.1%)
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 | 6.2709e+05 | 262144 | 1 | 4.180e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.050170502705036 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 3.016502015154093, dt = 0.0015153840124235262
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.2%)
patch tree reduce : 1853.00 ns (0.3%)
gen split merge : 971.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 902.00 ns (0.2%)
LB compute : 518.10 us (96.2%)
LB move op cnt : 0
LB apply : 3.53 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.83 us (72.9%)
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 | 6.3341e+05 | 262144 | 1 | 4.139e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.181726554751386 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 3.0180173991665167, dt = 0.0015153780617198158
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 2.12 us (0.6%)
gen split merge : 952.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.3%)
LB compute : 356.72 us (94.4%)
LB move op cnt : 0
LB apply : 3.91 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.97 us (74.0%)
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 | 6.3325e+05 | 262144 | 1 | 4.140e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.178281155748822 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 3.0195327772282363, dt = 0.0015153756456894494
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.6%)
patch tree reduce : 1743.00 ns (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 : 394.54 us (95.1%)
LB move op cnt : 0
LB apply : 3.53 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.94 us (75.1%)
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 | 6.2030e+05 | 262144 | 1 | 4.226e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12.9088112353053 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 3.021048152873926, dt = 0.001515376914254306
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1764.00 ns (0.4%)
gen split merge : 941.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 891.00 ns (0.2%)
LB compute : 393.29 us (95.2%)
LB move op cnt : 0
LB apply : 3.50 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.37 us (71.2%)
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 | 6.3484e+05 | 262144 | 1 | 4.129e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.211445027459437 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 3.0225635297881803, dt = 0.0015153820124678256
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.7%)
patch tree reduce : 2.10 us (0.5%)
gen split merge : 941.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.2%)
LB compute : 381.16 us (94.9%)
LB move op cnt : 0
LB apply : 3.48 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.52 us (71.6%)
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 | 6.1667e+05 | 262144 | 1 | 4.251e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12.8332557146513 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 3.024078911800648, dt = 0.0015153910871337378
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.5%)
patch tree reduce : 1934.00 ns (0.4%)
gen split merge : 952.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 911.00 ns (0.2%)
LB compute : 421.23 us (95.3%)
LB move op cnt : 0
LB apply : 3.54 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.38 us (71.7%)
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 | 6.3261e+05 | 262144 | 1 | 4.144e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.164976659859082 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 3.025594302887782, dt = 0.001515404324355273
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.7%)
patch tree reduce : 2.18 us (0.5%)
gen split merge : 952.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1022.00 ns (0.3%)
LB compute : 384.96 us (94.9%)
LB move op cnt : 0
LB apply : 3.60 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.85 us (74.8%)
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 | 6.1698e+05 | 262144 | 1 | 4.249e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12.839825513549917 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 3.027109707212137, dt = 0.0015154218966057418
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1873.00 ns (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 : 371.62 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.00 us (71.4%)
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 | 6.2933e+05 | 262144 | 1 | 4.165e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.097143357556265 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 3.0286251291087427, dt = 0.0015154429042071658
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.1%)
patch tree reduce : 1854.00 ns (0.3%)
gen split merge : 962.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 882.00 ns (0.2%)
LB compute : 548.66 us (96.3%)
LB move op cnt : 0
LB apply : 4.03 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.65 us (72.6%)
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 | 6.2980e+05 | 262144 | 1 | 4.162e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.10714552213928 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 3.0301405720129497, dt = 0.001515425174250915
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (1.7%)
patch tree reduce : 1864.00 ns (0.4%)
gen split merge : 1162.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1223.00 ns (0.3%)
LB compute : 394.63 us (94.9%)
LB move op cnt : 0
LB apply : 3.50 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.67 us (72.9%)
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 | 6.3070e+05 | 262144 | 1 | 4.156e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.125675527133104 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 3.0316559971872006, dt = 0.0015154111382894928
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1813.00 ns (0.5%)
gen split merge : 1012.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1022.00 ns (0.3%)
LB compute : 374.92 us (94.9%)
LB move op cnt : 0
LB apply : 3.69 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.48 us (72.7%)
Info: cfl dt = 0.0015154007715633753 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 6.3503e+05 | 262144 | 1 | 4.128e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.21557000511046 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 3.03317140832549, dt = 0.0015154007715633753
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.9%)
patch tree reduce : 1803.00 ns (0.5%)
gen split merge : 1202.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.3%)
LB compute : 339.36 us (94.3%)
LB move op cnt : 0
LB apply : 3.46 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.56 us (72.6%)
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 | 6.3423e+05 | 262144 | 1 | 4.133e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.198821677812788 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 3.0346868090970536, dt = 0.0015153940071035783
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.7%)
patch tree reduce : 2.10 us (0.5%)
gen split merge : 1182.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.2%)
LB compute : 398.29 us (94.9%)
LB move op cnt : 0
LB apply : 3.63 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.73 us (71.1%)
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 | 6.3490e+05 | 262144 | 1 | 4.129e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.21275070451712 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 3.0362022031041573, dt = 0.0015153907730331483
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1794.00 ns (0.5%)
gen split merge : 921.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.3%)
LB compute : 347.27 us (94.5%)
LB move op cnt : 0
LB apply : 3.60 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.01 us (77.3%)
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 | 6.3307e+05 | 262144 | 1 | 4.141e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.174591789556338 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 3.0377175938771903, dt = 0.0015153907753273053
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 2.11 us (0.6%)
gen split merge : 1392.00 ns (0.4%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.3%)
LB compute : 346.16 us (94.2%)
LB move op cnt : 0
LB apply : 3.54 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.03 us (71.6%)
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 | 6.1732e+05 | 262144 | 1 | 4.246e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12.846920444307388 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 3.0392329846525175, dt = 0.0015153939144565602
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.4%)
patch tree reduce : 1813.00 ns (0.4%)
gen split merge : 1172.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 872.00 ns (0.2%)
LB compute : 486.17 us (95.8%)
LB move op cnt : 0
LB apply : 3.85 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.04 us (75.4%)
Info: cfl dt = 0.001515400137354644 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 6.3499e+05 | 262144 | 1 | 4.128e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.214666467804488 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 3.040748378566974, dt = 0.001515400137354644
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.32 us (1.4%)
patch tree reduce : 1703.00 ns (0.3%)
gen split merge : 1182.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 922.00 ns (0.2%)
LB compute : 519.44 us (96.0%)
LB move op cnt : 0
LB apply : 3.88 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.60 us (70.7%)
Info: cfl dt = 0.0015154094092094715 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 6.1554e+05 | 262144 | 1 | 4.259e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12.810002643993467 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 3.0422637787043287, dt = 0.0004445546290048341
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.18 us (2.0%)
patch tree reduce : 1913.00 ns (0.5%)
gen split merge : 1123.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 901.00 ns (0.2%)
LB compute : 345.15 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.65 us (72.9%)
Info: cfl dt = 0.00151541288628109 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 6.3312e+05 | 262144 | 1 | 4.140e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 3.865230988504896 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 845.6456891690001 (s) [Godunov][rank=0]
Info: dump to _to_trash/ramses_kh/periodic_0024.vtk [VTK Dump][rank=0]
- took 51.14 ms, bandwidth = 762.56 MB/s
amr::Godunov: t = 3.0427083333333336, dt = 0.00151541288628109
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.1%)
patch tree reduce : 1823.00 ns (0.3%)
gen split merge : 932.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.2%)
LB compute : 606.15 us (96.6%)
LB move op cnt : 0
LB apply : 3.82 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.46 us (70.2%)
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.0889e+05 | 262144 | 1 | 4.305e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12.671539411111654 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 3.0442237462196147, dt = 0.0015154300826208877
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.5%)
patch tree reduce : 1753.00 ns (0.4%)
gen split merge : 1051.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1172.00 ns (0.3%)
LB compute : 418.02 us (95.3%)
LB move op cnt : 0
LB apply : 3.90 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.03 us (74.9%)
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 | 6.0576e+05 | 262144 | 1 | 4.327e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12.606718922704747 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 3.0457391763022357, dt = 0.001515448127612928
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.3%)
patch tree reduce : 2.05 us (0.4%)
gen split merge : 981.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1132.00 ns (0.2%)
LB compute : 482.56 us (95.9%)
LB move op cnt : 0
LB apply : 3.87 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.07 us (78.3%)
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 | 6.1309e+05 | 262144 | 1 | 4.276e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12.759245857729859 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 3.0472546244298484, dt = 0.0015154674465765168
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1833.00 ns (0.4%)
gen split merge : 932.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 922.00 ns (0.2%)
LB compute : 401.28 us (95.2%)
LB move op cnt : 0
LB apply : 3.59 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.85 us (75.1%)
Info: cfl dt = 0.0015154887370203722 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 6.1024e+05 | 262144 | 1 | 4.296e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12.700278893191683 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 3.048770091876425, dt = 0.0015154887370203722
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (0.4%)
patch tree reduce : 1774.00 ns (0.1%)
gen split merge : 931.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 871.00 ns (0.1%)
LB compute : 1695.83 us (98.8%)
LB move op cnt : 0
LB apply : 3.84 us (0.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.83 us (73.7%)
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 | 6.2257e+05 | 262144 | 1 | 4.211e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12.956974758772374 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 3.0502855806134455, dt = 0.0015155126799600222
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (0.6%)
patch tree reduce : 1893.00 ns (0.2%)
gen split merge : 942.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 882.00 ns (0.1%)
LB compute : 1078.13 us (98.1%)
LB move op cnt : 0
LB apply : 3.79 us (0.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.92 us (74.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 | 6.0267e+05 | 262144 | 1 | 4.350e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12.542941242778006 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 3.0518010932934057, dt = 0.0015155397887503838
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (0.2%)
patch tree reduce : 1844.00 ns (0.1%)
gen split merge : 942.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 1172.00 ns (0.0%)
LB compute : 3.00 ms (99.3%)
LB move op cnt : 0
LB apply : 4.20 us (0.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.71 us (74.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 | 6.1969e+05 | 262144 | 1 | 4.230e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12.897524990506252 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 3.053316633082156, dt = 0.001515570370582603
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (0.3%)
patch tree reduce : 1884.00 ns (0.1%)
gen split merge : 982.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 881.00 ns (0.0%)
LB compute : 2.56 ms (99.2%)
LB move op cnt : 0
LB apply : 3.62 us (0.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.99 us (75.6%)
Info: cfl dt = 0.0015156045490808813 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 6.2988e+05 | 262144 | 1 | 4.162e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.109770018262434 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 3.054832203452739, dt = 0.0015156045490808813
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (0.1%)
patch tree reduce : 1723.00 ns (0.0%)
gen split merge : 942.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 892.00 ns (0.0%)
LB compute : 6.13 ms (99.6%)
LB move op cnt : 0
LB apply : 10.21 us (0.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.79 us (74.8%)
Info: cfl dt = 0.0015156423110062969 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 6.1621e+05 | 262144 | 1 | 4.254e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12.825569595882639 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 3.05634780800182, dt = 0.0015156423110062969
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 8.11 us (1.9%)
patch tree reduce : 1794.00 ns (0.4%)
gen split merge : 1262.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 952.00 ns (0.2%)
LB compute : 402.72 us (94.7%)
LB move op cnt : 0
LB apply : 3.54 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.65 us (72.3%)
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 | 6.2508e+05 | 262144 | 1 | 4.194e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.010516418005606 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 3.057863450312826, dt = 0.0015156862371648158
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (0.2%)
patch tree reduce : 1913.00 ns (0.0%)
gen split merge : 1102.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 17.77 us (0.4%)
LB compute : 4.23 ms (99.1%)
LB move op cnt : 0
LB apply : 3.92 us (0.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.90 us (76.5%)
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 | 6.2058e+05 | 262144 | 1 | 4.224e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12.917315174621852 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 3.0593791365499907, dt = 0.001515734872975682
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.6%)
patch tree reduce : 2.00 us (0.5%)
gen split merge : 952.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.2%)
LB compute : 422.16 us (95.3%)
LB move op cnt : 0
LB apply : 3.77 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.00 us (75.7%)
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 | 6.2150e+05 | 262144 | 1 | 4.218e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12.93675188992204 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 3.0608948714229665, dt = 0.001515787377940388
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (0.1%)
patch tree reduce : 1764.00 ns (0.0%)
gen split merge : 971.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.0%)
LB compute : 5.00 ms (99.6%)
LB move op cnt : 0
LB apply : 4.06 us (0.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.28 us (70.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 | 6.1106e+05 | 262144 | 1 | 4.290e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12.719844950588142 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 3.062410658800907, dt = 0.001515843479157141
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1733.00 ns (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.53 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.26 us (77.9%)
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 | 6.3542e+05 | 262144 | 1 | 4.126e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.227440454890663 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 3.063926502280064, dt = 0.0015159032245213697
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1753.00 ns (0.4%)
gen split merge : 1173.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1172.00 ns (0.3%)
LB compute : 392.62 us (94.8%)
LB move op cnt : 0
LB apply : 3.77 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.94 us (73.8%)
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 | 5.1776e+05 | 262144 | 1 | 5.063e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 10.77868184425684 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 3.0654424055045855, dt = 0.0015159667828851446
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (0.9%)
patch tree reduce : 1883.00 ns (0.2%)
gen split merge : 952.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 981.00 ns (0.1%)
LB compute : 769.92 us (97.4%)
LB move op cnt : 0
LB apply : 3.92 us (0.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.71 us (74.2%)
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 | 6.3098e+05 | 262144 | 1 | 4.155e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.136136874580853 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 3.0669583722874707, dt = 0.0015160343226325345
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 2.01 us (0.5%)
gen split merge : 992.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 882.00 ns (0.2%)
LB compute : 387.00 us (94.9%)
LB move op cnt : 0
LB apply : 3.71 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.01 us (75.8%)
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.3119e+05 | 262144 | 1 | 4.153e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.141086534200431 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 3.068474406610103, dt = 0.0015161059439542158
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (0.9%)
patch tree reduce : 2.14 us (0.3%)
gen split merge : 972.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 882.00 ns (0.1%)
LB compute : 714.81 us (97.1%)
LB move op cnt : 0
LB apply : 4.34 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.22 us (77.0%)
Info: cfl dt = 0.0015161818132272207 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 6.2809e+05 | 262144 | 1 | 4.174e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.077260684062377 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 3.069990512554057, dt = 0.0015161818132272207
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.41 us (2.1%)
patch tree reduce : 1774.00 ns (0.5%)
gen split merge : 911.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 882.00 ns (0.2%)
LB compute : 333.71 us (94.0%)
LB move op cnt : 0
LB apply : 3.76 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.10 us (76.8%)
Info: cfl dt = 0.0015162619563372926 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 6.3224e+05 | 262144 | 1 | 4.146e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.164169395197412 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 3.0715066943672844, dt = 0.0015162619563372926
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1934.00 ns (0.5%)
gen split merge : 1172.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.3%)
LB compute : 370.27 us (94.6%)
LB move op cnt : 0
LB apply : 3.87 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.05 us (76.4%)
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 | 6.2868e+05 | 262144 | 1 | 4.170e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.090865012007775 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 3.0730229563236215, dt = 0.0015163462513685779
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.1%)
patch tree reduce : 2.15 us (0.3%)
gen split merge : 962.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 981.00 ns (0.2%)
LB compute : 598.85 us (96.5%)
LB move op cnt : 0
LB apply : 3.80 us (0.6%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.11 us (76.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 | 6.2960e+05 | 262144 | 1 | 4.164e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.110665585284256 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 3.07453930257499, dt = 0.0015164345170216097
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.16 us (0.3%)
patch tree reduce : 1933.00 ns (0.1%)
gen split merge : 1072.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.0%)
LB compute : 2.71 ms (99.2%)
LB move op cnt : 0
LB apply : 4.03 us (0.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.36 us (74.9%)
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 | 6.2231e+05 | 262144 | 1 | 4.212e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12.959546212740097 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 3.0760557370920116, dt = 0.0015165265390396183
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.5%)
patch tree reduce : 1773.00 ns (0.4%)
gen split merge : 1062.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1182.00 ns (0.3%)
LB compute : 427.02 us (95.3%)
LB move op cnt : 0
LB apply : 3.94 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.41 us (78.7%)
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 | 6.3308e+05 | 262144 | 1 | 4.141e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.184763847229243 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 3.077572263631051, dt = 0.0015166220925487708
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 6.95 us (2.0%)
patch tree reduce : 1844.00 ns (0.5%)
gen split merge : 962.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.3%)
LB compute : 333.97 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.67 us (72.7%)
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 | 6.3129e+05 | 262144 | 1 | 4.153e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.14823541503408 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 3.0790888857236, dt = 0.00151672114130779
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 2.03 us (0.5%)
gen split merge : 1183.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 892.00 ns (0.2%)
LB compute : 379.12 us (94.6%)
LB move op cnt : 0
LB apply : 4.08 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.99 us (76.2%)
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 | 6.2687e+05 | 262144 | 1 | 4.182e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.057115407219786 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 3.0806056068649075, dt = 0.001516823836544423
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1983.00 ns (0.5%)
gen split merge : 932.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 892.00 ns (0.2%)
LB compute : 362.86 us (94.5%)
LB move op cnt : 0
LB apply : 3.82 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.15 us (76.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 | 6.3540e+05 | 262144 | 1 | 4.126e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.235555492998667 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 3.082122430701452, dt = 0.0015169301594636642
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.9%)
patch tree reduce : 1884.00 ns (0.5%)
gen split merge : 1022.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1022.00 ns (0.3%)
LB compute : 339.50 us (94.2%)
LB move op cnt : 0
LB apply : 3.70 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.79 us (75.6%)
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 | 6.3442e+05 | 262144 | 1 | 4.132e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.21607602283098 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 3.0836393608609156, dt = 0.0015170399187086636
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1793.00 ns (0.5%)
gen split merge : 962.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 942.00 ns (0.2%)
LB compute : 367.42 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.13 us (75.9%)
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 | 6.3566e+05 | 262144 | 1 | 4.124e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.242861002765398 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 3.085156400779624, dt = 0.0015171528169255649
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1934.00 ns (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 : 331.92 us (87.6%)
LB move op cnt : 0
LB apply : 4.00 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.04 us (73.9%)
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.3344e+05 | 262144 | 1 | 4.138e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.1977709489971 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 3.0866735535965497, dt = 0.0015172685845092576
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (0.7%)
patch tree reduce : 2.10 us (0.2%)
gen split merge : 982.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 882.00 ns (0.1%)
LB compute : 940.03 us (97.7%)
LB move op cnt : 0
LB apply : 4.20 us (0.4%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.08 us (76.2%)
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 | 6.2295e+05 | 262144 | 1 | 4.208e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12.980114258047836 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 3.088190822181059, dt = 0.0015173870381570904
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.2%)
patch tree reduce : 2.21 us (0.4%)
gen split merge : 982.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 902.00 ns (0.2%)
LB compute : 569.92 us (96.3%)
LB move op cnt : 0
LB apply : 4.33 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.38 us (69.6%)
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 | 6.2834e+05 | 262144 | 1 | 4.172e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.093377786999547 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 3.089708209219216, dt = 0.001517508532836976
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1863.00 ns (0.5%)
gen split merge : 961.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.3%)
LB compute : 369.06 us (94.7%)
LB move op cnt : 0
LB apply : 3.81 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.62 us (75.0%)
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 | 6.3082e+05 | 262144 | 1 | 4.156e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.146186682701686 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 3.091225717752053, dt = 0.001517632949150745
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 2.13 us (0.5%)
gen split merge : 972.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.2%)
LB compute : 378.91 us (95.0%)
LB move op cnt : 0
LB apply : 3.42 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.13 us (71.4%)
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 | 6.3115e+05 | 262144 | 1 | 4.153e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.154077866996499 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 3.0927433507012037, dt = 0.0015177601599644613
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.8%)
patch tree reduce : 2.01 us (0.5%)
gen split merge : 1152.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.3%)
LB compute : 361.02 us (94.5%)
LB move op cnt : 0
LB apply : 3.58 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.58 us (72.0%)
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.2813e+05 | 262144 | 1 | 4.173e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.092226236477686 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 3.094261110861168, dt = 0.0015178901241101452
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 2.14 us (0.5%)
gen split merge : 1262.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 971.00 ns (0.2%)
LB compute : 377.01 us (94.6%)
LB move op cnt : 0
LB apply : 3.87 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.29 us (77.7%)
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 | 6.3504e+05 | 262144 | 1 | 4.128e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.237532138602349 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 3.0957790009852784, dt = 0.0015180228541349585
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.1%)
patch tree reduce : 2.19 us (0.3%)
gen split merge : 1162.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 952.00 ns (0.1%)
LB compute : 643.88 us (96.9%)
LB move op cnt : 0
LB apply : 3.47 us (0.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.96 us (75.6%)
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 | 6.2866e+05 | 262144 | 1 | 4.170e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.105575746630121 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 3.0972970238394133, dt = 0.0015181584061698822
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 2.03 us (0.6%)
gen split merge : 982.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.3%)
LB compute : 331.05 us (94.1%)
LB move op cnt : 0
LB apply : 3.86 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.44 us (71.9%)
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 | 6.2608e+05 | 262144 | 1 | 4.187e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.052927478139734 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 3.098815182245583, dt = 0.0015182968578862069
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1903.00 ns (0.5%)
gen split merge : 1052.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.2%)
LB compute : 380.93 us (94.7%)
LB move op cnt : 0
LB apply : 3.89 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.12 us (71.0%)
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 | 6.3047e+05 | 262144 | 1 | 4.158e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.14567691285208 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 3.1003334791034693, dt = 0.0015184382977082864
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.2%)
patch tree reduce : 1774.00 ns (0.0%)
gen split merge : 972.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 1272.00 ns (0.0%)
LB compute : 3.63 ms (99.4%)
LB move op cnt : 0
LB apply : 3.56 us (0.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.04 us (74.3%)
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 | 6.2617e+05 | 262144 | 1 | 4.186e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.057259567723538 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 3.1018519174011776, dt = 0.00151858282522369
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (0.2%)
patch tree reduce : 1663.00 ns (0.0%)
gen split merge : 1303.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 891.00 ns (0.0%)
LB compute : 4.38 ms (99.5%)
LB move op cnt : 0
LB apply : 3.78 us (0.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.12 us (70.5%)
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 | 6.2043e+05 | 262144 | 1 | 4.225e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12.938693505454795 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 3.103370500226401, dt = 0.0015187305475160159
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (0.1%)
patch tree reduce : 2.04 us (0.0%)
gen split merge : 972.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.0%)
LB compute : 4.97 ms (99.6%)
LB move op cnt : 0
LB apply : 4.04 us (0.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.07 us (75.2%)
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 | 6.1973e+05 | 262144 | 1 | 4.230e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12.92537592600549 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 3.1048892307739173, dt = 0.0015188815698566173
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.48 us (0.1%)
patch tree reduce : 1753.00 ns (0.0%)
gen split merge : 1051.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 872.00 ns (0.0%)
LB compute : 5.86 ms (99.6%)
LB move op cnt : 0
LB apply : 4.08 us (0.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.09 us (76.3%)
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 | 6.2008e+05 | 262144 | 1 | 4.228e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12.933986849468294 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 3.106408112343774, dt = 0.0015190360293930356
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (0.1%)
patch tree reduce : 2.09 us (0.0%)
gen split merge : 951.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 1032.00 ns (0.0%)
LB compute : 10.54 ms (99.8%)
LB move op cnt : 0
LB apply : 4.45 us (0.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.39 us (78.6%)
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 | 6.1465e+05 | 262144 | 1 | 4.265e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12.822009275700688 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 3.1079271483731667, dt = 0.001519194045362695
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.6%)
patch tree reduce : 1893.00 ns (0.5%)
gen split merge : 951.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 871.00 ns (0.2%)
LB compute : 386.60 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.83 us (74.8%)
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 | 6.3437e+05 | 262144 | 1 | 4.132e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.234902386115763 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 3.1094463424185292, dt = 0.0015193556812159621
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (0.2%)
patch tree reduce : 1864.00 ns (0.1%)
gen split merge : 982.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 961.00 ns (0.0%)
LB compute : 3.25 ms (99.4%)
LB move op cnt : 0
LB apply : 3.70 us (0.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.20 us (77.4%)
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 | 6.2636e+05 | 262144 | 1 | 4.185e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.069027182953208 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 3.1109656980997453, dt = 0.0015195205374633246
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.46 us (1.9%)
patch tree reduce : 2.25 us (0.6%)
gen split merge : 942.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 872.00 ns (0.2%)
LB compute : 377.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 : 2.79 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 | 6.2780e+05 | 262144 | 1 | 4.176e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.100602482505876 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 3.1124852186372087, dt = 0.0015196893681854585
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.7%)
patch tree reduce : 2.06 us (0.5%)
gen split merge : 942.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 892.00 ns (0.2%)
LB compute : 385.29 us (94.8%)
LB move op cnt : 0
LB apply : 3.93 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.15 us (76.2%)
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 | 6.2720e+05 | 262144 | 1 | 4.180e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.089611646842371 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 3.114004908005394, dt = 0.001519862331722133
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.20 us (1.9%)
patch tree reduce : 2.08 us (0.6%)
gen split merge : 1313.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1032.00 ns (0.3%)
LB compute : 353.89 us (94.2%)
LB move op cnt : 0
LB apply : 3.95 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.01 us (72.3%)
Info: cfl dt = 0.0015200393040285044 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 6.3521e+05 | 262144 | 1 | 4.127e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.258179544974453 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 3.115524770337116, dt = 0.0015200393040285044
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 2.06 us (0.5%)
gen split merge : 1242.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 892.00 ns (0.2%)
LB compute : 391.93 us (94.8%)
LB move op cnt : 0
LB apply : 4.15 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.21 us (73.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 | 5.9968e+05 | 262144 | 1 | 4.371e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12.518107853248111 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 3.1170448096411447, dt = 0.0015202201936814225
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (0.5%)
patch tree reduce : 1803.00 ns (0.1%)
gen split merge : 1272.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 881.00 ns (0.1%)
LB compute : 1476.41 us (98.6%)
LB move op cnt : 0
LB apply : 3.80 us (0.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.32 us (76.6%)
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 | 6.1491e+05 | 262144 | 1 | 4.263e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12.837467379014575 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 3.118565029834826, dt = 0.0015204042886740893
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1753.00 ns (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 : 415.36 us (95.2%)
LB move op cnt : 0
LB apply : 3.91 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.16 us (76.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 | 6.1700e+05 | 262144 | 1 | 4.249e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12.882655862662142 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 3.1200854341235003, dt = 0.0015204616254958867
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1893.00 ns (0.5%)
gen split merge : 941.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 911.00 ns (0.2%)
LB compute : 384.10 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.73 us (73.3%)
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 | 6.3455e+05 | 262144 | 1 | 4.131e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.249699211637987 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 3.121605895748996, dt = 0.001520407634848765
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1854.00 ns (0.5%)
gen split merge : 931.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 891.00 ns (0.2%)
LB compute : 355.63 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.40 us (71.9%)
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 | 6.2849e+05 | 262144 | 1 | 4.171e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.122608786421084 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 3.123126303383845, dt = 0.0015203548056675201
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (0.9%)
patch tree reduce : 1854.00 ns (0.2%)
gen split merge : 962.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 1132.00 ns (0.1%)
LB compute : 735.25 us (97.2%)
LB move op cnt : 0
LB apply : 3.63 us (0.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.85 us (74.7%)
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 | 6.2540e+05 | 262144 | 1 | 4.192e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.057583843376937 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 3.1246466581895125, dt = 0.0015203031301114812
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1873.00 ns (0.5%)
gen split merge : 1203.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 921.00 ns (0.2%)
LB compute : 351.10 us (94.4%)
LB move op cnt : 0
LB apply : 3.41 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.51 us (71.9%)
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.3482e+05 | 262144 | 1 | 4.129e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.253935363069576 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 3.126166961319624, dt = 0.0015202526192163396
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1874.00 ns (0.5%)
gen split merge : 962.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1042.00 ns (0.3%)
LB compute : 344.48 us (94.5%)
LB move op cnt : 0
LB apply : 3.46 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.49 us (75.0%)
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 | 6.2821e+05 | 262144 | 1 | 4.173e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.115485600308459 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 3.1276872139388403, dt = 0.0015202033093761995
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1883.00 ns (0.5%)
gen split merge : 982.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 982.00 ns (0.3%)
LB compute : 368.07 us (94.8%)
LB move op cnt : 0
LB apply : 3.55 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.60 us (74.1%)
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 | 6.3522e+05 | 262144 | 1 | 4.127e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.261301642595086 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 3.1292074172482165, dt = 0.0015201552674344952
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.3%)
patch tree reduce : 2.25 us (0.4%)
gen split merge : 1213.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 862.00 ns (0.2%)
LB compute : 515.01 us (96.0%)
LB move op cnt : 0
LB apply : 3.57 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.21 us (73.4%)
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 | 6.2503e+05 | 262144 | 1 | 4.194e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.048126952947513 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 3.130727572515651, dt = 0.0015201086739841981
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 2.07 us (0.5%)
gen split merge : 962.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.2%)
LB compute : 377.07 us (94.8%)
LB move op cnt : 0
LB apply : 3.59 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.95 us (75.8%)
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 | 6.3073e+05 | 262144 | 1 | 4.156e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.166837359773552 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 3.1322476811896354, dt = 0.0015200637173200602
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1754.00 ns (0.5%)
gen split merge : 1242.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 862.00 ns (0.2%)
LB compute : 336.93 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.54 us (73.4%)
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 | 6.3383e+05 | 262144 | 1 | 4.136e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.231117840669121 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 3.1337677449069554, dt = 0.0015200205926460028
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 2.17 us (0.6%)
gen split merge : 1012.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 882.00 ns (0.3%)
LB compute : 329.72 us (94.2%)
LB move op cnt : 0
LB apply : 3.59 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.62 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 | 6.2556e+05 | 262144 | 1 | 4.191e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.058137108886642 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 3.1352877654996014, dt = 0.0015199794934892521
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1884.00 ns (0.5%)
gen split merge : 1222.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1173.00 ns (0.3%)
LB compute : 374.70 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.08 us (71.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 | 6.2768e+05 | 262144 | 1 | 4.176e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.102117091151952 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 3.1368077449930905, dt = 0.0015199406004063503
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1844.00 ns (0.5%)
gen split merge : 972.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 952.00 ns (0.3%)
LB compute : 328.23 us (94.1%)
LB move op cnt : 0
LB apply : 3.80 us (1.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 20.33 us (94.9%)
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 | 6.3262e+05 | 262144 | 1 | 4.144e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.2047705725952 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 3.138327685593497, dt = 0.0015199040851215694
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [LoadBalance][rank=0]
npatch = 1
min = 32768
max = 32768
avg = 32768
efficiency = 100.00%
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 7.15 us (0.2%)
patch tree reduce : 2.25 us (0.1%)
gen split merge : 1192.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 871.00 ns (0.0%)
LB compute : 3.15 ms (99.3%)
LB move op cnt : 0
LB apply : 4.64 us (0.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.45 us (77.0%)
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.1546e+05 | 262144 | 1 | 4.259e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12.846267510665351 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 3.1398475896786184, dt = 0.0015198700980280219
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (0.1%)
patch tree reduce : 1864.00 ns (0.0%)
gen split merge : 951.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 891.00 ns (0.0%)
LB compute : 5.35 ms (99.6%)
LB move op cnt : 0
LB apply : 4.19 us (0.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.78 us (77.2%)
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 | 6.1110e+05 | 262144 | 1 | 4.290e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12.755116386702852 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 3.1413674597766463, dt = 0.0015198387258634296
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.9%)
patch tree reduce : 1953.00 ns (0.3%)
gen split merge : 1172.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 992.00 ns (0.1%)
LB compute : 723.18 us (97.2%)
LB move op cnt : 0
LB apply : 4.01 us (0.5%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.80 us (74.4%)
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 | 6.2612e+05 | 262144 | 1 | 4.187e-01 | 0.0% | 0.2% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.068225547315203 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 3.14288729850251, dt = 0.0015198100206017795
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.1%)
patch tree reduce : 1843.00 ns (0.0%)
gen split merge : 952.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.0%)
LB compute : 5.99 ms (99.7%)
LB move op cnt : 0
LB apply : 3.85 us (0.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.74 us (75.5%)
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 | 6.1611e+05 | 262144 | 1 | 4.255e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12.8590567502551 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 3.1444071085231116, dt = 0.0015197843381165655
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (0.3%)
patch tree reduce : 1864.00 ns (0.1%)
gen split merge : 972.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 952.00 ns (0.0%)
LB compute : 2.35 ms (99.1%)
LB move op cnt : 0
LB apply : 3.82 us (0.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.12 us (77.6%)
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 | 6.1714e+05 | 262144 | 1 | 4.248e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12.880364572869398 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 3.1459268928612283, dt = 0.0015197620964468262
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.5%)
patch tree reduce : 1693.00 ns (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 : 421.15 us (95.3%)
LB move op cnt : 0
LB apply : 4.02 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.06 us (74.5%)
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 | 6.1049e+05 | 262144 | 1 | 4.294e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12.741352215639667 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 3.147446654957675, dt = 0.0015197431995498045
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1854.00 ns (0.5%)
gen split merge : 962.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.2%)
LB compute : 372.85 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.35 us (77.7%)
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 | 6.2859e+05 | 262144 | 1 | 4.170e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.118984471150128 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 3.148966398157225, dt = 0.0015197274918203965
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.9%)
patch tree reduce : 2.06 us (0.5%)
gen split merge : 1172.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 862.00 ns (0.2%)
LB compute : 371.12 us (94.5%)
LB move op cnt : 0
LB apply : 3.94 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.55 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 | 6.3447e+05 | 262144 | 1 | 4.132e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.241670177403657 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 3.1504861256490457, dt = 0.0015197147924704692
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (0.2%)
patch tree reduce : 1683.00 ns (0.0%)
gen split merge : 952.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 872.00 ns (0.0%)
LB compute : 4.04 ms (99.5%)
LB move op cnt : 0
LB apply : 3.91 us (0.1%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.16 us (74.5%)
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 | 6.2288e+05 | 262144 | 1 | 4.209e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12.999675671579666 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 3.1520058404415163, dt = 0.0015197049210970133
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 2.13 us (0.5%)
gen split merge : 922.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 881.00 ns (0.2%)
LB compute : 393.02 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.86 us (74.0%)
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 | 6.3277e+05 | 262144 | 1 | 4.143e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.2059668127868 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 3.1535255453626134, dt = 0.0015196977131684674
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.8%)
patch tree reduce : 1693.00 ns (0.4%)
gen split merge : 941.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 871.00 ns (0.2%)
LB compute : 384.36 us (95.0%)
LB move op cnt : 0
LB apply : 3.52 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.12 us (71.3%)
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 | 6.3505e+05 | 262144 | 1 | 4.128e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.253486882828675 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 3.155045243075782, dt = 0.0015196930289473947
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1773.00 ns (0.4%)
gen split merge : 1373.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1002.00 ns (0.2%)
LB compute : 367.96 us (90.8%)
LB move op cnt : 0
LB apply : 20.32 us (5.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.01 us (74.1%)
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 | 6.3657e+05 | 262144 | 1 | 4.118e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.28501941436266 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 3.1565649361047297, dt = 0.0015196907566968362
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.1%)
patch tree reduce : 1754.00 ns (0.3%)
gen split merge : 961.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 952.00 ns (0.2%)
LB compute : 560.64 us (96.5%)
LB move op cnt : 0
LB apply : 4.02 us (0.7%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.29 us (77.4%)
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 | 6.0920e+05 | 262144 | 1 | 4.303e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12.713970666332596 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 3.1580846268614264, dt = 0.0015196908104934041
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1964.00 ns (0.5%)
gen split merge : 932.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1172.00 ns (0.3%)
LB compute : 371.27 us (94.7%)
LB move op cnt : 0
LB apply : 3.56 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.14 us (75.4%)
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 | 6.2949e+05 | 262144 | 1 | 4.164e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.137286227102525 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 3.1596043176719197, dt = 0.0015196931254368975
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1663.00 ns (0.4%)
gen split merge : 1042.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 1172.00 ns (0.3%)
LB compute : 349.88 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.98 us (75.8%)
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 | 6.3187e+05 | 262144 | 1 | 4.149e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.186907532935164 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 3.161124010797357, dt = 0.0015196976530024548
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 2.12 us (0.6%)
gen split merge : 1113.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 952.00 ns (0.3%)
LB compute : 347.31 us (94.3%)
LB move op cnt : 0
LB apply : 3.67 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.24 us (71.0%)
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 | 6.3311e+05 | 262144 | 1 | 4.141e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.21285734642057 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 3.1626437084503594, dt = 0.001519704357321424
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.4%)
patch tree reduce : 2.09 us (0.4%)
gen split merge : 912.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 842.00 ns (0.2%)
LB compute : 466.59 us (95.5%)
LB move op cnt : 0
LB apply : 3.86 us (0.8%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.73 us (73.0%)
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 | 6.2626e+05 | 262144 | 1 | 4.186e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.070003970492486 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 3.1641634128076808, dt = 0.0015197132147939405
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.2%)
patch tree reduce : 2.03 us (0.1%)
gen split merge : 952.00 ns (0.0%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.0%)
LB compute : 2.73 ms (99.2%)
LB move op cnt : 0
LB apply : 5.54 us (0.2%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 4.93 us (76.5%)
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.2530e+05 | 262144 | 1 | 4.192e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.050148442700253 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 3.1656831260224747, dt = 0.0015197242258609346
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 (0.5%)
patch tree reduce : 1763.00 ns (0.1%)
gen split merge : 942.00 ns (0.1%)
split / merge op : 0/0
apply split merge : 842.00 ns (0.1%)
LB compute : 1475.16 us (98.6%)
LB move op cnt : 0
LB apply : 3.97 us (0.3%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.58 us (76.1%)
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 | 5.9780e+05 | 262144 | 1 | 4.385e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 12.47630002253271 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 3.167202850248336, dt = 0.0015197374033955016
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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.8%)
patch tree reduce : 2.13 us (0.6%)
gen split merge : 1142.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 952.00 ns (0.2%)
LB compute : 365.66 us (94.5%)
LB move op cnt : 0
LB apply : 3.38 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.07 us (73.7%)
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 | 6.3569e+05 | 262144 | 1 | 4.124e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.267168802828783 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 3.168722587651731, dt = 0.0015197527885220832
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1803.00 ns (0.5%)
gen split merge : 1222.00 ns (0.3%)
split / merge op : 0/0
apply split merge : 962.00 ns (0.2%)
LB compute : 369.20 us (94.6%)
LB move op cnt : 0
LB apply : 3.66 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.60 us (72.4%)
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.3393e+05 | 262144 | 1 | 4.135e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.230573861079256 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 3.1702423404402533, dt = 0.0015197704287912123
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1783.00 ns (0.4%)
gen split merge : 952.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 942.00 ns (0.2%)
LB compute : 398.21 us (95.2%)
LB move op cnt : 0
LB apply : 3.78 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.81 us (74.9%)
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 | 6.3085e+05 | 262144 | 1 | 4.155e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.16638770255455 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 3.1717621108690444, dt = 0.0015197903739150246
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1733.00 ns (0.4%)
gen split merge : 972.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 972.00 ns (0.2%)
LB compute : 396.94 us (95.1%)
LB move op cnt : 0
LB apply : 4.04 us (1.0%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 3.13 us (75.9%)
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 | 6.3368e+05 | 262144 | 1 | 4.137e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.225543851248984 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 3.173281901242959, dt = 0.0015198126785642275
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1733.00 ns (0.4%)
gen split merge : 982.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 872.00 ns (0.2%)
LB compute : 385.70 us (94.9%)
LB move op cnt : 0
LB apply : 3.64 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.90 us (75.6%)
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 | 6.3618e+05 | 262144 | 1 | 4.121e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 13.277994296857752 (tsim/hr) [amr::RAMSES][rank=0]
amr::Godunov: t = 3.174801713921523, dt = 0.00019828607847660606
Info: summary : [LoadBalance][rank=0]
Info: - strategy "psweep" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: - strategy "round robin" : max = 32768 min = 32768 [LoadBalance][rank=0]
Info: Loadbalance stats : [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 : 1743.00 ns (0.4%)
gen split merge : 972.00 ns (0.2%)
split / merge op : 0/0
apply split merge : 1142.00 ns (0.3%)
LB compute : 375.97 us (94.8%)
LB move op cnt : 0
LB apply : 3.58 us (0.9%)
Info: Scheduler step timings : [Scheduler][rank=0]
metadata sync : 2.88 us (71.2%)
Info: cfl dt = 0.001519840925056047 [amr::basegodunov][rank=0]
Info: Timestep perf report: [amr::RAMSES][rank=0]
+======+============+========+========+===========+======+=============+=============+=============+
| rank | rate (N/s) | Nobj | Npatch | tstep | MPI | alloc d% h% | mem (max) d | mem (max) h |
+======+============+========+========+===========+======+=============+=============+=============+
| 0 | 6.3398e+05 | 262144 | 1 | 4.135e-01 | 0.0% | 0.1% 0.0% | 2.00 GB | 2.00 GB |
+------+------------+--------+--------+-----------+------+-------------+-------------+-------------+
Info: estimated rate : 1.7263522216916618 (tsim/hr) [amr::RAMSES][rank=0]
Info: time since start : 883.1393853650001 (s) [Godunov][rank=0]
Total running time of the script: (14 minutes 46.777 seconds)
Estimated memory usage: 1168 MB